Subversion Repositories wpShopGermany4

Rev

Rev 8317 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1197 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Einstellungen eines Profils
5
	 */
6
 
5911 daniel 7
	$inlineEdit_url = WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_export&do=inlinedit&noheader=1&profil_id='.$this->view['profil']['id'];
5896 daniel 8
	$upload_url = WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_export&do=musterupload&noheader=1&profil_id='.$this->view['profil']['id'];
6428 daniel 9
    $download_url = WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_export&do=save&noheader=1&profil_id='.$this->view['profil']['id'];
5896 daniel 10
 
1197 daniel 11
?>
12
 
5896 daniel 13
<div id="wpsg_mod_export_profil_tab">
14
    <ul class="nav nav-tabs" role="tablist">
15
        <li role="presentation" class="active"><a href="#tab1" aria-controls="home" role="tab" data-toggle="tab"><?php echo __('Profiloptionen', 'wpsg'); ?></a></li>
16
        <li role="presentation"><a href="#tab2" aria-controls="profile" role="tab" data-toggle="tab"><?php echo __('Feldkonfiguration', 'wpsg'); ?></a></li>
5911 daniel 17
        <li role="presentation"><a href="#tab3" aria-controls="cron" role="tab" data-toggle="tab"><?php echo __('Automatische Ausführung', 'wpsg'); ?></a></li>
5896 daniel 18
    </ul>
19
	<div class="tab-content">
5911 daniel 20
		<div id="tab1" role="tabpanel" class="tab-pane active">
5896 daniel 21
 
22
            <?php echo wpsg_drawForm_Text(__('Profilname', 'wpsg'), $this->view['profil']['name'], 'name', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
23
            <?php echo wpsg_drawForm_Text(__('Dateiname', 'wpsg'), $this->view['profil']['filename'], 'filename', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
24
            <?php echo wpsg_drawForm_Text(__('Encoding', 'wpsg'), $this->view['arFileEncoding'][$this->view['profil']['file_encoding']], 'file_encoding', array('inlineEdit' => true, 'inlineEdit_type' => 'select', 'inlineEdit_source' => $this->view['arFileEncoding'], 'inlineEdit_url' => $inlineEdit_url)); ?>
25
            <?php echo wpsg_drawForm_Text(__('Dateiformat', 'wpsg'), $this->view['arExportFormats'][$this->view['profil']['format']], 'format', array('inlineEdit' => true, 'inlineEdit_type' => 'select', 'inlineEdit_source' => $this->view['arExportFormats'], 'inlineEdit_url' => $inlineEdit_url)); ?>
26
 
27
            <?php /* CSV */ ?>
28
            <div class="wpsg_mod_export_format wpsg_mod_export_format_<?php echo wpsg_mod_export::FORMAT_CSV; ?>" style="display:<?php echo (($this->view['profil']['format'] == wpsg_mod_export::FORMAT_CSV)?'block':'none'); ?>;">
29
 
30
                <?php echo wpsg_drawForm_Text('Feld-Trennzeichen', $this->view['profil']['field_delimiter'], 'field_delimiter', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
6052 hartmut 31
                <?php echo wpsg_drawForm_Text('Feld-Begrenzung', $this->view['profil']['field_enclosure'], 'field_enclosure', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
5896 daniel 32
                <?php echo wpsg_drawForm_Text('Maskierungs-Zeichen', $this->view['profil']['field_escape'], 'field_escape', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
33
 
34
            </div>
35
 
5911 daniel 36
            <?php /* XML */ ?>
37
            <div class="wpsg_mod_export_format wpsg_mod_export_format_<?php echo wpsg_mod_export::FORMAT_XML; ?>" style="display:<?php echo (($this->view['profil']['format'] == wpsg_mod_export::FORMAT_XML)?'block':'none'); ?>;">
38
 
39
                <?php echo wpsg_drawForm_Text('Root-Tagname', $this->view['profil']['xml_roottag'], 'xml_roottag', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
6425 daniel 40
 
41
                <?php if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_ORDER) { ?>
42
                    <?php echo wpsg_drawForm_Text('Bestellung-Tagname', $this->view['profil']['xml_ordertag'], 'xml_ordertag', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
43
                    <?php echo wpsg_drawForm_Text('Produkt-Root-Tagname', $this->view['profil']['xml_productroottag'], 'xml_productroottag', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
44
                <?php } ?>
45
 
6447 daniel 46
                <?php if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_CUSTOMER) { ?>
47
                    <?php echo wpsg_drawForm_Text('Kunden-Tagname', $this->view['profil']['xml_customertag'], 'xml_customertag', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
48
                <?php } else { ?>
49
                    <?php echo wpsg_drawForm_Text('Produkt-Tagname', $this->view['profil']['xml_producttag'], 'xml_producttag', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
50
                <?php } ?>
5911 daniel 51
 
52
            </div>
53
 
5896 daniel 54
            <div class="wpsg_mod_export_format wpsg_mod_export_format_<?php echo wpsg_mod_export::FORMAT_CSV; ?>" style="display:<?php echo (($this->view['profil']['format'] == wpsg_mod_export::FORMAT_CSV)?'block':'none'); ?>">
5911 daniel 55
                <?php echo wpsg_drawForm_Upload('samplefile', __('Muster Vorlage', 'wpsg'), false, '50', '100000', array('ajax_upload' => true, 'ajax_upload_url' => $upload_url, 'ajax_success' => 'samplefile_success')); ?>
5896 daniel 56
            </div>
5911 daniel 57
 
58
            <br />
59
 
6425 daniel 60
            <?php if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_ORDER) { ?>
5896 daniel 61
 
6425 daniel 62
                <?php echo wpsg_drawForm_Checkbox('order_onetime', __('Bestellungen nur einmalig exportieren', 'wpsg'), $this->view['profil']['order_onetime'], array('label' => __('Optionen', 'wpsg'), 'inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
63
 
64
                <div class="wpsg_mod_export_format wpsg_mod_export_format_<?php echo wpsg_mod_export::FORMAT_CSV; ?>" style="display:<?php echo (($this->view['profil']['format'] == wpsg_mod_export::FORMAT_CSV)?'block':'none'); ?>">
65
                <?php echo wpsg_drawForm_Checkbox('order_online', __('Eine Zeile pro Bestellung', 'wpsg'), $this->view['profil']['order_online'], array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
66
                </div>
67
 
68
            <?php } ?>
8317 karl 69
 
70
            <?php if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_PRODUCT) { ?>
71
 
72
                <div class="wpsg_mod_export_format wpsg_mod_export_format_<?php echo wpsg_mod_export::FORMAT_CSV; ?>" style="display:<?php echo (($this->view['profil']['format'] == wpsg_mod_export::FORMAT_CSV)?'block':'none'); ?>">
73
 
8318 karl 74
                    <?php echo wpsg_drawForm_Checkbox('csv_pvariants_separated', __('Produkte variantengetrennt exportieren', 'wpsg'), $this->view['profil']['csv_pvariants_separated'], array('label' => __('Optionen', 'wpsg'), 'help' =>'csv_pvariants_separated', 'inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
8317 karl 75
 
76
                </div>
77
 
78
            <?php } ?>
6425 daniel 79
 
5911 daniel 80
            <div class="wpsg_mod_export_format wpsg_mod_export_format_<?php echo wpsg_mod_export::FORMAT_CSV; ?>" style="display:<?php echo (($this->view['profil']['format'] == wpsg_mod_export::FORMAT_CSV)?'block':'none'); ?>">
81
 
6052 hartmut 82
                <?php echo wpsg_drawForm_Checkbox('csv_fieldnames', __('Spaltennamen in erster Zeile', 'wpsg'), $this->view['profil']['csv_fieldnames'], array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
5896 daniel 83
 
84
            </div>
8317 karl 85
 
5896 daniel 86
        </div>
87
 
5911 daniel 88
        <div id="tab2" role="tabpanel" class="tab-pane">
5896 daniel 89
 
90
            <div id="wpsg_mod_export_fields"><?php echo $this->view['strFields']; ?></div>
91
 
92
        </div>
5911 daniel 93
 
94
        <div id="tab3" role="tabpanel" class="tab-pane">
95
 
96
            <?php echo wpsg_drawForm_Text(__('Automatische Ausführung aktivieren', 'wpsg'), $this->view['arCronTypes'][$this->view['profil']['cron_interval']], 'cron_interval', array('inlineEdit' => true, 'inlineEdit_callback' => 'switchCronType', 'inlineEdit_url' => $inlineEdit_url, 'inlineEdit_type' => 'select', 'inlineEdit_source' => wpsg_prepare_for_inlineEdit($this->view['arCronTypes']))); ?>
97
 
98
            <div class="cron_interval cron_interval_1" style="<?php echo (($this->view['profil']['cron_interval'] == '0')?'display:none;':''); ?>">
99
 
100
                <?php echo wpsg_drawForm_Text(__('Pfad', 'wpsg'), $this->view['profil']['cron_path'], 'cron_path', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
5912 daniel 101
                <?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)); ?>
8131 daniel 102
 
103
                <fieldset id="wpsg_mod_export_cron_url" style="display:<?php echo (($this->view['profil']['cron_interval'] !== wpsg_mod_export::CRON_ORDER)?'block':'none'); ?>;">
104
                    <?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)); ?>
105
                </fieldset>
8212 daniel 106
 
107
                <?php echo wpsg_drawForm_Checkbox('wp_cron', __('Stündlich mit Wordpress Cron ausführen', 'wpsg'), ($this->view['profil']['wp_cron']??'0') === '1'); ?>
108
 
109
                <script>
110
 
111
                    document.getElementById('wp_cron').addEventListener('change', (event) => {
112
 
113
                        jQuery.ajax({
114
                            url: '<?php echo $inlineEdit_url; ?>',
115
                            data: {
116
                                name: 'wp_cron',
117
                                value: ((event.target.checked === true)?'1':'0')
118
                            }
119
                        })
120
 
121
                       // console.log('<?php echo $inlineEdit_url; ?>');
122
 
123
                    });
124
 
125
                </script>
126
 
6425 daniel 127
                <?php if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_ORDER) { ?>
8131 daniel 128
                <fieldset id="wpsg_mod_export_orderfilter" style="display:<?php echo (($this->view['profil']['cron_interval'] !== wpsg_mod_export::CRON_ORDER)?'block':'none'); ?>;">
5911 daniel 129
 
5912 daniel 130
                    <legend><div class="col-sm-offset-6"><?php echo __('Bestellfilter', 'wpsg'); ?></div></legend>
131
 
5911 daniel 132
                    <form id="wpsg_mod_export_searchfilter">
133
 
134
                        <?php echo wpsg_drawForm_Text(__('Suchfeld', 'wpsg'), wpsg_getStr($this->view['profil']['orderfilter']['s']), 'orderfilter_s', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
135
                        <?php echo wpsg_drawForm_Text(__('Kunde (ID)', 'wpsg'), wpsg_getStr($this->view['profil']['orderfilter']['k_id']), 'orderfilter_k_id', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
136
 
137
                        <?php $arOrderStatus = wpsg_array_merge(array('-1' => __('Alle', 'wpsg')), $this->arStatus); ?>
138
                        <?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)); ?>
139
 
140
                        <?php $arMonth = array('-1' => __('Alle', 'wpsg')); ?>
8212 daniel 141
                        <?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)); } ?>
5911 daniel 142
 
143
                        <?php $arYearCdate = array('-1' => __('Alle', 'wpsg')); ?>
144
                        <?php foreach ($this->view['cdate_years'] as $y) { $arYearCdate[$y] = $y; } ?>
145
 
146
                        <?php $arYearInvoice = array('-1' => __('Alle', 'wpsg')); ?>
147
                        <?php foreach ($this->view['invoicedate_years'] as $y) { $arYearInvoice[$y] = $y; } ?>
148
 
149
                        <?php echo wpsg_drawForm_TextStart(); ?>
150
                        <div class="row">
151
                            <div class="col-lg-6">
152
                                <p id="orderfilter_cdate_m" class="form-control-static"><?php echo $arMonth[wpsg_getStr($this->view['profil']['orderfilter']['cdate_m'], '-1')]; ?></p>
153
                                <script type="text/javascript">/* <![CDATA[ */
154
 
155
                                    jQuery(document).ready(function() {
156
 
5934 hartmut 157
                                        jQuery('#orderfilter_cdate_m').wpsg_editable('<?php echo $inlineEdit_url; ?>', {
5911 daniel 158
                                            'test': '1', 'placement': 'bottom', 'type': 'select',  'data': <?php echo wpsg_prepare_for_inlineEdit($arMonth); ?>
159
                                        } );
160
 
161
                                    } );
162
 
163
                                /* ]]> */</script>
164
                            </div>
165
                            <div class="col-lg-6">
166
                                <p id="orderfilter_cdate_y" class="form-control-static"><?php echo $arYearCdate[wpsg_getStr($this->view['profil']['orderfilter']['cdate_y'], '-1')]; ?></p>
167
                                <script type="text/javascript">/* <![CDATA[ */
168
 
169
                                    jQuery(document).ready(function() {
170
 
5934 hartmut 171
                                        jQuery('#orderfilter_cdate_y').wpsg_editable('<?php echo $inlineEdit_url; ?>', {
5911 daniel 172
                                            'placement': 'bottom', 'type': 'select',  'data': <?php echo wpsg_prepare_for_inlineEdit($arYearCdate); ?>
173
                                        } );
174
 
175
                                    } );
176
 
177
                                /* ]]> */</script>
178
                            </div>
179
                        </div>
180
                        <?php echo wpsg_drawForm_TextEnd(__('Bestelldatum (Monat/Jahr)', 'wpsg'), array('noP' => true)); ?>
181
 
182
                        <?php if ($this->hasMod('wpsg_mod_rechnungen')) { ?>
183
                        <?php echo wpsg_drawForm_TextStart(); ?>
184
                        <div class="row">
185
                            <div class="col-lg-6">
186
                                <p id="orderfilter_invoicedate_m" class="form-control-static"><?php echo $arMonth[wpsg_getStr($this->view['profil']['orderfilter']['invoicedate_m'], '-1')]; ?></p>
187
                                <script type="text/javascript">/* <![CDATA[ */
188
 
189
                                    jQuery(document).ready(function() {
190
 
5934 hartmut 191
                                        jQuery('#orderfilter_invoicedate_m').wpsg_editable('<?php echo $inlineEdit_url; ?>', {
5911 daniel 192
                                            'placement': 'bottom', 'type': 'select',  'data': <?php echo wpsg_prepare_for_inlineEdit($arMonth); ?>
193
                                        } );
194
 
195
                                    } );
196
 
197
                                /* ]]> */</script>
198
                            </div>
199
                            <div class="col-lg-6">
200
                                <p id="orderfilter_invoicedate_y" class="form-control-static"><?php echo $arYearInvoice[wpsg_getStr($this->view['profil']['orderfilter']['invoicedate_y'], '-1')]; ?></p>
201
                                <script type="text/javascript">/* <![CDATA[ */
202
 
203
                                    jQuery(document).ready(function() {
204
 
5934 hartmut 205
                                        jQuery('#orderfilter_invoicedate_y').wpsg_editable('<?php echo $inlineEdit_url; ?>', {
5911 daniel 206
                                            'placement': 'bottom', 'type': 'select',  'data': <?php echo wpsg_prepare_for_inlineEdit($arYearInvoice); ?>
207
                                        } );
208
 
209
                                    } );
210
 
211
                                /* ]]> */</script>
212
                            </div>
213
                        </div>
214
                        <?php echo wpsg_drawForm_TextEnd(__('Rechnungsdatum (Monat/Jahr)', 'wpsg'), array('noP' => true)); ?>
215
                        <?php } ?>
216
 
217
                    </form>
218
 
219
                </fieldset>
6425 daniel 220
                <?php } else if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_PRODUCT) { ?>
221
                <fieldset id="wpsg_mod_export_productfilter">
222
 
223
                    <legend><div class="col-sm-offset-6"><?php echo __('Produktfilter', 'wpsg'); ?></div></legend>
224
 
225
                    <form id="wpsg_mod_export_searchfilter">
226
 
227
                        <?php echo wpsg_drawForm_Text(__('Suchfeld', 'wpsg'), wpsg_getStr($this->view['profil']['orderfilter']['s']), 'orderfilter_s', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
228
 
229
                        <?php if ($this->hasMod('wpsg_mod_productgroups')) { $arProductGroupSelect = array('-1' => __('Alle Produktgruppen', 'wpsg')) + wpsg_productgroup::getProductgroupSelect(); ?>
230
                        <?php echo wpsg_drawForm_Text(__('Produktgruppe', 'wpsg'), $arProductGroupSelect[wpsg_getStr($this->view['profil']['orderfilter']['productgroup_ids'], '-1')], 'orderfilter_productgroup_ids', array('inlineEdit' => true, 'inlineEdit_type' => 'select', 'inlineEdit_url' => $inlineEdit_url, 'inlineEdit_source' => $arProductGroupSelect)); ?>
231
                        <?php } ?>
232
 
233
                        <?php if ($this->hasMod('wpsg_mod_produktartikel')) { $temp = $this->callMod('wpsg_mod_produktartikel', 'getProductcategorySelect', array()); ?>
234
                        <?php $arProductCategorySelect = array(); foreach ($temp as $k => $v) $arProductCategorySelect[$v['term_id']] = $v['label']; ?>
8264 karl 235
                        <?php $productCategoryIds = wpsg_getStr($this->view['profil']['orderfilter']['productcategory_ids'], '-1'); ?>
236
                        <?php $selectedCategory = $arProductCategorySelect['-1'] ?? ''; ?>
237
                        <?php echo wpsg_drawForm_Text(__('Produktkategorie', 'wpsg'), $arProductCategorySelect[$productCategoryIds], 'orderfilter_productcategory_ids', array('inlineEdit' => true, 'inlineEdit_type' => 'select', 'inlineEdit_url' => $inlineEdit_url, 'inlineEdit_source' => $arProductCategorySelect)); ?>
6425 daniel 238
                        <?php } ?>
239
 
240
                    </form>
241
 
242
                </fieldset>
6447 daniel 243
                <?php } else if ($this->view['profil']['export_type'] === wpsg_mod_export::TYPE_CUSTOMER) { ?>
244
                <fieldset id="wpsg_mod_export_productfilter">
245
 
246
                    <legend><div class="col-sm-offset-6"><?php echo __('Kundenfilter', 'wpsg'); ?></div></legend>
247
 
248
                    <form id="wpsg_mod_export_searchfilter">
249
 
250
                        <?php echo wpsg_drawForm_Text(__('Suchfeld', 'wpsg'), wpsg_getStr($this->view['profil']['orderfilter']['s']), 'orderfilter_s', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
251
 
252
                    </form>
253
 
254
                </fieldset>
6425 daniel 255
                <?php } ?>
5911 daniel 256
 
257
            </div>
258
 
259
        </div>
260
 
5896 daniel 261
    </div>
1197 daniel 262
</div>
263
 
2598 daniel 264
<br />
265
 
6428 daniel 266
<a onclick="return wpsg_mod_export_removeProfil(<?php echo $this->view['profil']['id']; ?>);" href="#"><span class="glyphicon glyphicon-trash wpsg-glyphicon"></span><?php echo __('Profil löschen', 'wpsg'); ?></a><br />
267
<a href="<?php echo $download_url; ?>"><span class="glyphicon glyphicon-save wpsg-glyphicon"></span><?php echo __('Profil speichern', 'wpsg'); ?></a>
1197 daniel 268
 
5896 daniel 269
<script type="text/javascript">/* <![CDATA[ */
5856 thomas 270
 
8131 daniel 271
    function switchCronType(response, newValue) {
272
 
273
		if (parseInt(newValue) === parseInt("<?php echo wpsg_mod_export::CRON_ORDER; ?>")) {
274
 
275
			jQuery('#wpsg_mod_export_cron_url').hide();
276
			jQuery('#wpsg_mod_export_orderfilter').hide();
277
 
278
        } else {
279
 
280
			jQuery('#wpsg_mod_export_cron_url').show();
281
			jQuery('#wpsg_mod_export_orderfilter').show();
282
 
283
        }
284
 
5911 daniel 285
        if (newValue != "0") jQuery('.cron_interval_1').show();
286
        else jQuery('.cron_interval_1').hide();
287
 
288
    }
289
 
5896 daniel 290
    function samplefile_success(data)
291
    {
292
 
293
        jQuery('#wpsg_mod_export_fields').html(data);
294
        jQuery('#samplefile').val('');
7131 daniel 295
 
296
        jQuery('#wpsg_mod_export_profil_tab .nav-tabs a[href="#tab2"]').tab('show');
5896 daniel 297
 
298
    }
299
 
300
    jQuery(document).ready(function() {
301
 
302
		jQuery('#format').on('save', function(e, params) {
1197 daniel 303
 
5896 daniel 304
			jQuery('.wpsg_mod_export_format').hide();
305
			jQuery('.wpsg_mod_export_format_' + params.newValue).show();
1197 daniel 306
 
1212 daniel 307
		} );
5913 daniel 308
 
309
        jQuery('#name').on('save', function(e, params) {
310
 
311
            jQuery('#wpsg_mod_export_profil option[value="<?php echo $this->view['profil']['id']; ?>"]').text(params.newValue);
312
 
313
		} );
1210 daniel 314
 
315
	} );
316
 
5896 daniel 317
/* ]]> */</script>