Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
6134 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Einstellungsseite der Produktgruppen
5
	 */
6
 
7
?>
8
<?php echo wpsg_drawForm_Select('wpsg_productgroups_page', __('Produktgruppenübersichtsseite', 'wpsg'), $this->view['pages'], $this->get_option('wpsg_productgroups_page'), array('help' => 'wpsg_mod_productgroups_page')); ?>
9
<?php echo wpsg_drawForm_Select('wpsg_productgroups_order', __('Sortierung innerhalb der Gruppe', 'wpsg'), array(
10
	'id' => __('Nach ID', 'wpsg'),
11
	'alphabetisch' => __('Alphabetisch', 'wpsg'),
12
	'buyed' => __('Anzahl Verkäufe', 'wpsg'),
13
	'erstellungsdatum' => __('Erstellungsdatum', 'wpsg'),
14
	'preis' => __('Preis', 'wpsg')
7269 daniel 15
), $this->get_option('wpsg_productgroups_order'), array('help' => 'wpsg_mod_productgroups_order')); ?>
16
 
17
<br />
18
 
19
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_productgroups_order_filter', __('Filter in Bestellverwaltung aktivieren', 'wpsg'), $this->get_option('wpsg_mod_productgroups_order_filter')); ?>