1379 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen des PDFDownload Moduls
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
5825 |
daniel |
8 |
|
|
|
9 |
<div>
|
|
|
10 |
<ul class="nav nav-tabs" role="tablist">
|
|
|
11 |
<li role="presentation" class="active"><a href="#tab1" role="tab" data-toggle="tab"><?php echo __('Einstellungen', 'wpsg'); ?></a></li>
|
|
|
12 |
<li role="presentation"><a href="#tab2" role="tab" data-toggle="tab"><?php echo __('Textfelder', 'wpsg'); ?></a></li>
|
|
|
13 |
<li role="presentation"><a href="#tab3" role="tab" data-toggle="tab"><?php echo __('Erweitert', 'wpsg'); ?></a></li>
|
|
|
14 |
<li role="presentation" style="float:right;"><a href="#tab4" role="tab" data-toggle="tab"><?php echo __('Info / Hilfe', 'wpsg'); ?></a></li>
|
|
|
15 |
</ul>
|
|
|
16 |
<div class="tab-content">
|
|
|
17 |
|
|
|
18 |
<div role="tabpanel" class="tab-pane active" id="tab1">
|
|
|
19 |
|
|
|
20 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_filename', __('Personalisierter Dateiname', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_filename'), array('help' => 'mod_pdfdownload_einstellungen_filename')); ?>
|
1598 |
daniel |
21 |
<?php echo wpsg_drawForm_Select('wpsg_mod_downloadplus_indiv_mode', __('Individualisierung planen', 'wpsg'), array(0 => __('Manuell', 'wpsg'), 1 => __('Nach Zahlung', 'wpsg'), 2 => __('Nach Bestellung', 'wpsg')), $this->get_option('wpsg_mod_downloadplus_indiv_mode'), array('help' => 'mod_pdfdownload_einstellungen_individualisierungsmodus')); ?>
|
1528 |
daniel |
22 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_autosend', __('PDFs nach Individualisierung sofort senden', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_autosend'), array('help' => 'mod_pdfdownload_einstellungen_autosend')); ?>
|
4929 |
thomas |
23 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_shipping', __('Versandart "Versand per Mail" aktiv', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_shipping'), array('help' => 'wpsg_mod_downloadplus_shipping')); ?>
|
|
|
24 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_einsplusx', __(' Mehr als ein Produkt im Warenkorb zulassen', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_einsplusx'), array('help' => 'wpsg_mod_downloadplus_einsplusx')); ?>
|
5825 |
daniel |
25 |
<?php echo wpsg_drawForm_Select('wpsg_mod_downloadplus_accepted', __('Gültigkeit von Links', 'wpsg'), array(0 => __('Unbegrenzt', 'wpsg'), 1 => __('Nach Downloads', 'wpsg'), 2 => __('Nach Tagen', 'wpsg')), $this->get_option('wpsg_mod_downloadplus_accepted'), array('field_class' => 'wpsg_change', 'help' => 'mod_pdfdownload_einstellungen_accepted')); ?>
|
|
|
26 |
|
|
|
27 |
<div class="wpsg_mod_downloadplus_accepted wpsg_mod_downloadplus_accepted_2">
|
|
|
28 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_days', __('Gültigkeit in Tagen', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_days'), array('help' => 'wpsg_mod_downloadplus_days')); ?>
|
|
|
29 |
</div>
|
|
|
30 |
|
|
|
31 |
<div class="wpsg_mod_downloadplus_accepted wpsg_mod_downloadplus_accepted_1">
|
|
|
32 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_downloads', __('Anzahl an möglichen Downloads', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_downloads'), array('help' => 'wpsg_mod_downloadplus_downloads')); ?>
|
|
|
33 |
</div>
|
|
|
34 |
|
|
|
35 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_cleanraiddownloads', __('Abgelaufene Downloads bereinigen', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_cleanraiddownloads'), array('help' => 'wpsg_mod_downloadplus_cleanraiddownloads')); ?>
|
|
|
36 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_cleanolddownloads', __('Downloads nach X Tagen löschen', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_cleanolddownloads'), array('help' => 'wpsg_mod_downloadplus_cleanolddownloads')); ?>
|
6848 |
thomas |
37 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_pdfpath', __('Pfad für die PDFs der Produkte', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_pdfpath'), array('hint' => __('Standard: uploads/wpsg/wpsg_pdfprodukte/', 'wpsg'), 'help' => 'wpsg_mod_downloadplus_pdfpath')); ?>
|
|
|
38 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_pdfindivpath', __('Pfad für die Individualisierten PDFs', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_pdfindivpath'), array('hint' => __('Standard: uploads/wpsg/wpsg_pdfprodukte_order/', 'wpsg'), 'help' => 'wpsg_mod_downloadplus_pdfindivpath')); ?>
|
4929 |
thomas |
39 |
<?php echo wpsg_drawForm_Select('wpsg_mod_downloadplus_format', __('Auslieferungsformat', 'wpsg'), array(0 => __('Direkt', 'wpsg'), 1 => __('Gezippt (intern)', 'wpsg')), $this->get_option('wpsg_mod_downloadplus_format'), array('help' => 'wpsg_mod_downloadplus_format')); ?>
|
5825 |
daniel |
40 |
<?php echo wpsg_drawForm_Select('wpsg_mod_downloadplus_range', __('Anpassung', 'wpsg'), array(0 => __('Gesamtes Dokument', 'wpsg'), 1 => __('Bereich', 'wpsg')), $this->get_option('wpsg_mod_downloadplus_range'), array ('field_class' => 'wpsg_change', 'help' => 'wpsg_mod_downloadplus_range')); ?>
|
|
|
41 |
|
|
|
42 |
<div class="wpsg_mod_downloadplus_range wpsg_mod_downloadplus_range_1">
|
|
|
43 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_range_von', __('Anpassung ab Seite', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_range_von'), array()); ?>
|
|
|
44 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_range_bis', __('Anpassung bis Seite', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_range_bis'), array()); ?>
|
|
|
45 |
</div>
|
|
|
46 |
|
|
|
47 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_masterpass', __('Passwort (Um Schutz aufzuheben)', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_masterpass'), array('help' => 'wpsg_mod_downloadplus_masterpass')); ?>
|
4934 |
thomas |
48 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_openpass', __('Passwort (Um Dokument öffnen zu können)', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_openpass'), array('help' => 'wpsg_mod_downloadplus_openpass')); ?>
|
5825 |
daniel |
49 |
|
|
|
50 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_securitysave', __('Speichern erlauben', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_securitysave'), array('label' => __('Dokumentenberechtigung', 'wpsg'))); ?>
|
|
|
51 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_securityprint', __('Drucken erlauben', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_securityprint')); ?>
|
|
|
52 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_securitymod', __('Modifizieren erlauben', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_securitymod')); ?>
|
|
|
53 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_securitynote', __('Bemerkungen erlauben', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_securitynote')); ?>
|
|
|
54 |
|
|
|
55 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
6006 |
hartmut |
56 |
<?php echo wpsg_translate(__('Kann <a href="#1#">hier</a> konfiguriert werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=emailconf#pdfdownloadcronmail'); ?>
|
|
|
57 |
<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_individualisierungsbericht" class="glyphicon glyphicon-question-sign" data-wpsg-tip="mod_pdfdownload_individualisierungsbericht" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_individualisierungsbericht"></a>
|
5825 |
daniel |
58 |
<?php echo wpsg_drawForm_TextEnd(__('Mail für Individualisierungsbericht', 'wpsg'), array('noP' => true)); ?>
|
|
|
59 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
6006 |
hartmut |
60 |
<?php echo wpsg_translate(__('Kann <a href="#1#">hier</a> konfiguriert werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=emailconf#pdfdownloadfiles'); ?>
|
|
|
61 |
<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_kundenmail" class="glyphicon glyphicon-question-sign" data-wpsg-tip="mod_pdfdownload_kundenmail" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_kundenmail"></a>
|
5825 |
daniel |
62 |
<?php echo wpsg_drawForm_TextEnd(__('Mail für Downloads an Kunden', 'wpsg'), array('noP' => true)); ?>
|
|
|
63 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
6006 |
hartmut |
64 |
<?php echo (($this->get_option('wpsg_lastCron') > 0)?wpsg_formatTimestamp($this->get_option('wpsg_lastCron')):__('Noch nicht ausgeführt', 'wpsg')); ?>
|
|
|
65 |
<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_einstellungen_cron" class="glyphicon glyphicon-question-sign" data-wpsg-tip="mod_pdfdownload_einstellungen_cron" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_einstellungen_cron"></a>
|
5825 |
daniel |
66 |
<?php echo wpsg_drawForm_TextEnd(__('Letzte Ausführung des Crons', 'wpsg'), array('noP' => true)); ?>
|
|
|
67 |
|
|
|
68 |
</div>
|
|
|
69 |
|
|
|
70 |
<div role="tabpanel" class="tab-pane" id="tab2">
|
|
|
71 |
|
|
|
72 |
<table class="table table-body-striped wpsg_mod_downloadplus_fieldtable">
|
|
|
73 |
<thead>
|
|
|
74 |
<tr>
|
|
|
75 |
<th class="col_bezeichnung"></th>
|
|
|
76 |
<th class="col_x"><?php echo __('X', 'wpsg'); ?></th>
|
|
|
77 |
<th class="col_y"><?php echo __('Y', 'wpsg'); ?></th>
|
|
|
78 |
<th class="col_align"><?php echo __('Zentriert', 'wpsg'); ?></th>
|
|
|
79 |
<th class="col_bg"><?php echo __('Hintergrund', 'wpsg'); ?></th>
|
|
|
80 |
<th class="col_color"><?php echo __('Farbe', 'wpsg'); ?></th>
|
6007 |
thomas |
81 |
<th class="col_alpha"><?php echo __('Deckkraft', 'wpsg'); ?></th>
|
5825 |
daniel |
82 |
<th class="col_angle"><?php echo __('Winkel', 'wpsg'); ?></th>
|
|
|
83 |
<th class="col_groesse"><?php echo __('Größe', 'wpsg'); ?></th>
|
|
|
84 |
<th class="col_action"></th>
|
|
|
85 |
</tr>
|
|
|
86 |
</thead>
|
3262 |
daniel |
87 |
<?php for ($i = 0; $i < 10; $i ++) { ?>
|
5825 |
daniel |
88 |
<tbody>
|
|
|
89 |
<tr>
|
|
|
90 |
<td><?php echo '#'.($i + 1); ?></td>
|
|
|
91 |
<td>
|
|
|
92 |
<input type="text" style="width:100%;" name="text[<?php echo $i; ?>][x]" value="<?php echo wpsg_hspc($this->view['arTexte'][$i]['x']); ?>" />
|
|
|
93 |
</td>
|
|
|
94 |
<td>
|
|
|
95 |
<input type="text" style="width:100%;" name="text[<?php echo $i; ?>][y]" value="<?php echo wpsg_hspc($this->view['arTexte'][$i]['y']); ?>" />
|
|
|
96 |
</td>
|
|
|
97 |
<td class="col_align">
|
|
|
98 |
<input type="hidden" name="text[<?php echo $i; ?>][align]" value="0" />
|
|
|
99 |
<input class="wpsg_hideBarcode" type="checkbox" name="text[<?php echo $i; ?>][align]" value="1" <?php echo (($this->view['arTexte'][$i]['align'] == '1')?'checked="checked"':''); ?> />
|
|
|
100 |
</td>
|
|
|
101 |
<td class="col_bg">
|
|
|
102 |
<input type="hidden" name="text[<?php echo $i; ?>][bg]" value="0" />
|
|
|
103 |
<input class="wpsg_hideBarcode" type="checkbox" name="text[<?php echo $i; ?>][bg]" value="1" <?php echo (($this->view['arTexte'][$i]['bg'] == '1')?'checked="checked"':''); ?> />
|
|
|
104 |
</td>
|
|
|
105 |
<td>
|
|
|
106 |
<input class="wpsg_hideBarcode" type="text" style="width:100%;" name="text[<?php echo $i; ?>][color]" value="<?php echo wpsg_hspc($this->view['arTexte'][$i]['color']); ?>" />
|
|
|
107 |
</td>
|
|
|
108 |
<td>
|
|
|
109 |
<input class="wpsg_hideBarcode" type="text" style="width:100%;" name="text[<?php echo $i; ?>][alpha]" value="<?php echo wpsg_hspc($this->view['arTexte'][$i]['alpha']); ?>" />
|
|
|
110 |
</td>
|
|
|
111 |
<td>
|
|
|
112 |
<input class="wpsg_hideBarcode" type="text" style="width:100%;" name="text[<?php echo $i; ?>][angle]" value="<?php echo wpsg_hspc($this->view['arTexte'][$i]['angle']); ?>" />
|
|
|
113 |
</td>
|
|
|
114 |
<td>
|
|
|
115 |
<select name="text[<?php echo $i; ?>][fontsize]" style="width:100%;">
|
|
|
116 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "4")?'selected="selected"':''); ?> value="4">4</option>
|
|
|
117 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "5")?'selected="selected"':''); ?> value="5">5</option>
|
|
|
118 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "6")?'selected="selected"':''); ?> value="6">6</option>
|
|
|
119 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "7")?'selected="selected"':''); ?> value="7">7</option>
|
|
|
120 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "8")?'selected="selected"':''); ?> value="8">8</option>
|
|
|
121 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "9")?'selected="selected"':''); ?> value="9">9</option>
|
|
|
122 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "10")?'selected="selected"':''); ?> value="10">10</option>
|
|
|
123 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "11")?'selected="selected"':''); ?> value="11">11</option>
|
|
|
124 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "12")?'selected="selected"':''); ?> value="12">12</option>
|
|
|
125 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "13")?'selected="selected"':''); ?> value="13">13</option>
|
|
|
126 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "14")?'selected="selected"':''); ?> value="14">14</option>
|
|
|
127 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "16")?'selected="selected"':''); ?> value="16">16</option>
|
|
|
128 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "18")?'selected="selected"':''); ?> value="18">18</option>
|
|
|
129 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "20")?'selected="selected"':''); ?> value="20">20</option>
|
|
|
130 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "22")?'selected="selected"':''); ?> value="22">22</option>
|
|
|
131 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "24")?'selected="selected"':''); ?> value="24">24</option>
|
|
|
132 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "26")?'selected="selected"':''); ?> value="26">26</option>
|
|
|
133 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "28")?'selected="selected"':''); ?> value="28">28</option>
|
|
|
134 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "30")?'selected="selected"':''); ?> value="30">30</option>
|
|
|
135 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "32")?'selected="selected"':''); ?> value="32">32</option>
|
|
|
136 |
<option <?php echo (($this->view['arTexte'][$i]['fontsize'] == "34")?'selected="selected"':''); ?> value="34">34</option>
|
|
|
137 |
</select>
|
|
|
138 |
</td>
|
|
|
139 |
<td>
|
7352 |
daniel |
140 |
<input type="checkbox" title="<?php echo __('Hier können Sie die Zeile deaktivieren/aktivieren.', 'wpsg'); ?>" value="1" name="text[<?php echo $i; ?>][aktiv]" <?php echo ((@$this->view['arTexte'][$i]['aktiv'] == 1)?'checked="checked"':''); ?> /> 
|
5825 |
daniel |
141 |
</td>
|
|
|
142 |
</tr>
|
|
|
143 |
<tr>
|
|
|
144 |
<td></td>
|
|
|
145 |
<td class="col_freitext_label"><?php echo __('Freitext', 'wpsg'); ?>:</td>
|
|
|
146 |
<td colspan="6" class="col_freitext">
|
|
|
147 |
<input type="text" style="width:100%;" name="text[<?php echo $i; ?>][text]" value="<?php echo wpsg_hspc($this->view['arTexte'][$i]['text']); ?>" />
|
|
|
148 |
</td>
|
|
|
149 |
<td colspan="2">
|
|
|
150 |
<select class="fontselect" name="text[<?php echo $i; ?>][font]" style="width:100%;">
|
|
|
151 |
<?php foreach ($this->view['wpsg_mod_downloadplus']['arFonts'] as $k => $v) { ?>
|
|
|
152 |
<option value="<?php echo wpsg_hspc($k); ?>" <?php echo (($k == $this->view['arTexte'][$i]['font'])?'selected="selected"':''); ?>><?php echo wpsg_hspc($v); ?></option>
|
|
|
153 |
<?php } ?>
|
|
|
154 |
</select>
|
|
|
155 |
</td>
|
|
|
156 |
</tr>
|
|
|
157 |
</tbody>
|
1379 |
daniel |
158 |
<?php } ?>
|
|
|
159 |
</table>
|
5825 |
daniel |
160 |
|
|
|
161 |
</div>
|
|
|
162 |
|
|
|
163 |
<div role="tabpanel" class="tab-pane" id="tab3">
|
|
|
164 |
|
|
|
165 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_memorylimit', __('Versuche Speicherlimit hochzusetzen', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_memorylimit'), array('help' => 'wpsg_mod_downloadplus_memorylimit')); ?>
|
3258 |
daniel |
166 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_timelimit', __('Versuche die Ausführungszeit hochzusetzen', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_timelimit'), array('help' => 'wpsg_mod_downloadplus_timelimit')); ?>
|
3261 |
daniel |
167 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_numberformat', __('Format der Downloadnummer', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_numberformat'), array('help' => 'wpsg_mod_downloadplus_numberformat')); ?>
|
|
|
168 |
<?php echo wpsg_drawForm_Input('wpsg_mod_downloadplus_startnumber', __('Downloadnummer Startnummer', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_startnumber'), array('help' => 'wpsg_mod_downloadplus_startnumber')); ?>
|
3268 |
daniel |
169 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_downloadplus_attachement', __('Angepasste Dokumente als Anhang versenden', 'wpsg'), $this->get_option('wpsg_mod_downloadplus_attachement'), array('help' => 'wpsg_mod_downloadplus_attachement')); ?>
|
5825 |
daniel |
170 |
|
|
|
171 |
</div>
|
|
|
172 |
|
|
|
173 |
<div role="tabpanel" class="tab-pane" id="tab4">
|
|
|
174 |
|
|
|
175 |
<p>
|
|
|
176 |
<?php echo __('Das Downloadplus Modul ist eine erweiterung des Downloadprodukt Moduls und ermöglicht das Individualisieren von PDF Dokumenten.', 'wpsg'); ?>
|
1528 |
daniel |
177 |
</p>
|
1537 |
daniel |
178 |
<p>
|
|
|
179 |
<?php echo __('Weitere Informationen erhalten Sie auf der <a href="http://wpshopgermany.de/?p=1426">Hilfe Seite</a> oder in unserem <a href="http://forum.maennchen1.de">Support Forum</a>.', 'wpsg'); ?>
|
|
|
180 |
</p>
|
5825 |
daniel |
181 |
|
1537 |
daniel |
182 |
<p>
|
|
|
183 |
<?php echo __('Eintrag in der Crontab:', 'wpsg'); ?>:<br /><br />
|
|
|
184 |
<span style="font-weight:bold; font-family:monospace;">
|
7575 |
daniel |
185 |
*/5 * * * * wget -q --spider <?php echo site_url().'/?wpsg_cron=1'; ?>
|
1537 |
daniel |
186 |
</span>
|
|
|
187 |
</p>
|
|
|
188 |
<p>
|
|
|
189 |
<?php echo __('HTTP Aufruf des Cron Scriptes:', 'wpsg'); ?><br /><br />
|
7400 |
daniel |
190 |
<a href="<?php echo site_url(); ?>/?wpsg_cron=1" target="_blank"><?php echo site_url(); ?>/?wpsg_cron=1</a>
|
5825 |
daniel |
191 |
</p>
|
|
|
192 |
|
|
|
193 |
</div>
|
|
|
194 |
|
|
|
195 |
</div>
|
1379 |
daniel |
196 |
</div>
|
|
|
197 |
|
3349 |
daniel |
198 |
<script type="text/javascript">/* <![CDATA[ */
|
1379 |
daniel |
199 |
|
5825 |
daniel |
200 |
jQuery(document).ready(function() {
|
1379 |
daniel |
201 |
|
5825 |
daniel |
202 |
jQuery('.wpsg_change').on('change', function() {
|
1379 |
daniel |
203 |
|
5825 |
daniel |
204 |
jQuery('.' + jQuery(this).attr("id")).hide();
|
|
|
205 |
jQuery('.' + jQuery(this).attr("id") + '_' + jQuery(this).val()).show();
|
3349 |
daniel |
206 |
|
5825 |
daniel |
207 |
} ).change();
|
3349 |
daniel |
208 |
|
5825 |
daniel |
209 |
} );
|
1379 |
daniel |
210 |
|
5825 |
daniel |
211 |
/* ]]> */</script>
|