Line 91... |
Line 91... |
91 |
<?php echo wpsg_drawForm_Text(__('Letzte Ausführung', 'wpsg'), (($this->view['profil']['cron_lastrun'] == '0000-00-00')?__('Noch nie', 'wpsg'):wpsg_formatTimestamp($this->view['profil']['cron_lastrun'], true)), false, array('noP' => false)); ?>
|
91 |
<?php echo wpsg_drawForm_Text(__('Letzte Ausführung', 'wpsg'), (($this->view['profil']['cron_lastrun'] == '0000-00-00')?__('Noch nie', 'wpsg'):wpsg_formatTimestamp($this->view['profil']['cron_lastrun'], true)), false, array('noP' => false)); ?>
|
92 |
|
92 |
|
93 |
<fieldset id="wpsg_mod_export_cron_url" style="display:<?php echo (($this->view['profil']['cron_interval'] !== wpsg_mod_export::CRON_ORDER)?'block':'none'); ?>;">
|
93 |
<fieldset id="wpsg_mod_export_cron_url" style="display:<?php echo (($this->view['profil']['cron_interval'] !== wpsg_mod_export::CRON_ORDER)?'block':'none'); ?>;">
|
94 |
<?php echo wpsg_drawForm_Text(__('Cron URL', 'wpsg'), '<a href="'.site_url().'/?wpsg_cron=1">'.site_url().'/?wpsg_cron=1</a>', false, array('noP' => false)); ?>
|
94 |
<?php echo wpsg_drawForm_Text(__('Cron URL', 'wpsg'), '<a href="'.site_url().'/?wpsg_cron=1">'.site_url().'/?wpsg_cron=1</a>', false, array('noP' => false)); ?>
|
95 |
</fieldset>
|
95 |
</fieldset>
|
96 |
|
96 |
|
- |
|
97 |
<?php echo wpsg_drawForm_Checkbox('wp_cron', __('Stündlich mit Wordpress Cron ausführen', 'wpsg'), ($this->view['profil']['wp_cron']??'0') === '1'); ?>
|
- |
|
98 |
|
- |
|
99 |
<script>
|
- |
|
100 |
|
- |
|
101 |
document.getElementById('wp_cron').addEventListener('change', (event) => {
|
- |
|
102 |
|
- |
|
103 |
jQuery.ajax({
|
- |
|
104 |
url: '<?php echo $inlineEdit_url; ?>',
|
- |
|
105 |
data: {
|
- |
|
106 |
name: 'wp_cron',
|
- |
|
107 |
value: ((event.target.checked === true)?'1':'0')
|
- |
|
108 |
}
|
- |
|
109 |
})
|
- |
|
110 |
|
- |
|
111 |
// console.log('<?php echo $inlineEdit_url; ?>');
|
- |
|
112 |
|
- |
|
113 |
});
|
- |
|
114 |
|
- |
|
115 |
</script>
|
- |
|
116 |
|
97 |
<?php if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_ORDER) { ?>
|
117 |
<?php if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_ORDER) { ?>
|
98 |
<fieldset id="wpsg_mod_export_orderfilter" style="display:<?php echo (($this->view['profil']['cron_interval'] !== wpsg_mod_export::CRON_ORDER)?'block':'none'); ?>;">
|
118 |
<fieldset id="wpsg_mod_export_orderfilter" style="display:<?php echo (($this->view['profil']['cron_interval'] !== wpsg_mod_export::CRON_ORDER)?'block':'none'); ?>;">
|
99 |
|
119 |
|
100 |
<legend><div class="col-sm-offset-6"><?php echo __('Bestellfilter', 'wpsg'); ?></div></legend>
|
120 |
<legend><div class="col-sm-offset-6"><?php echo __('Bestellfilter', 'wpsg'); ?></div></legend>
|
101 |
|
121 |
|
Line 106... |
Line 126... |
106 |
|
126 |
|
107 |
<?php $arOrderStatus = wpsg_array_merge(array('-1' => __('Alle', 'wpsg')), $this->arStatus); ?>
|
127 |
<?php $arOrderStatus = wpsg_array_merge(array('-1' => __('Alle', 'wpsg')), $this->arStatus); ?>
|
108 |
<?php echo wpsg_drawForm_Text(__('Bestellstatus', 'wpsg'), $arOrderStatus[wpsg_getStr($this->view['profil']['orderfilter']['status'], '-1')], 'orderfilter_status', array('inlineEdit' => true, 'inlineEdit_type' => 'select', 'inlineEdit_url' => $inlineEdit_url, 'inlineEdit_source' => $arOrderStatus)); ?>
|
128 |
<?php echo wpsg_drawForm_Text(__('Bestellstatus', 'wpsg'), $arOrderStatus[wpsg_getStr($this->view['profil']['orderfilter']['status'], '-1')], 'orderfilter_status', array('inlineEdit' => true, 'inlineEdit_type' => 'select', 'inlineEdit_url' => $inlineEdit_url, 'inlineEdit_source' => $arOrderStatus)); ?>
|
109 |
|
129 |
|
110 |
<?php $arMonth = array('-1' => __('Alle', 'wpsg')); ?>
|
130 |
<?php $arMonth = array('-1' => __('Alle', 'wpsg')); ?>
|
111 |
<?php for ($i = 1; $i <= 12; $i ++) { $arMonth[str_pad($i, 2, '0', STR_PAD_LEFT)] = strftime("%B", mktime(0, 0, 0, $i, 1, 2000)); } ?>
|
131 |
<?php for ($i = 1; $i <= 12; $i ++) { $arMonth[str_pad($i, 2, '0', STR_PAD_LEFT)] = wpsg_strftime("%B", mktime(0, 0, 0, $i, 1, 2000)); } ?>
|
112 |
|
132 |
|
113 |
<?php $arYearCdate = array('-1' => __('Alle', 'wpsg')); ?>
|
133 |
<?php $arYearCdate = array('-1' => __('Alle', 'wpsg')); ?>
|
114 |
<?php foreach ($this->view['cdate_years'] as $y) { $arYearCdate[$y] = $y; } ?>
|
134 |
<?php foreach ($this->view['cdate_years'] as $y) { $arYearCdate[$y] = $y; } ?>
|
115 |
|
135 |
|
116 |
<?php $arYearInvoice = array('-1' => __('Alle', 'wpsg')); ?>
|
136 |
<?php $arYearInvoice = array('-1' => __('Alle', 'wpsg')); ?>
|