Subversion Repositories wpShopGermany4

Rev

Rev 5945 | Rev 7446 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5945 Rev 6232
Line 3... Line 3...
3
	/**
3
	/**
4
	 * Template für die Integration der Bestellvariablen in die Bestellverwaltung
4
	 * Template für die Integration der Bestellvariablen in die Bestellverwaltung
5
	 */
5
	 */
6
 
6
 
7
?>
7
?>
8
<div id="wpsg_ordervars" class="postbox">
-
 
9
	<h3 class="wpsg_handlediv">
-
 
10
		<span class="handlediv" title="<?php echo __('Zum Ein/Ausklappen hier klicken', 'wpsg'); ?>"><br></span>
-
 
-
 
8
	
11
		<span><?php echo __('Bestellvariablen', 'wpsg'); ?></span>
9
	<?php echo wpsg_drawForm_AdminboxStart(__('Bestellvariablen', 'wpsg')); ?>
12
	</h3>
10
	
13
	<div class="inside">
-
 
14
		<?php foreach ($this->view['wpsg_mod_ordervars']['data'] as $ov_id => $ov) { ?>
11
		<?php foreach ($this->view['wpsg_mod_ordervars']['data'] as $ov_id => $ov) { ?>
15
		
12
		
16
			<?php echo wpsg_drawForm_Input('wpsg_ordervar_'.$ov_id, $this->callMod('wpsg_mod_ordervars', 'getNameById', array($ov['id'])), $this->callMod('wpsg_mod_ordervars', 'getValueByIdAndOrder', array($ov_id, $_REQUEST['edit_id'])), array('text' => true, 'class_text' => 'wpsg_editable')); ?>
13
			<?php echo wpsg_drawForm_Input('wpsg_ordervar_'.$ov_id, $this->callMod('wpsg_mod_ordervars', 'getNameById', array($ov['id'])), $this->callMod('wpsg_mod_ordervars', 'getValueByIdAndOrder', array($ov_id, $_REQUEST['edit_id'])), array('text' => true, 'class_text' => 'wpsg_editable')); ?>
17
			
14
			
18
			<script type="text/javascript">/* <![CDATA[ */
15
			<script type="text/javascript">/* <![CDATA[ */
Line 57... Line 54...
57
				<?php } ?>
54
				<?php } ?>
58
        
55
        
59
			/* ]]> */</script>
56
			/* ]]> */</script>
60
			
57
			
61
		<?php } ?>
58
		<?php } ?>
62
	</div>
59
	
63
</div>
60
	<?php echo wpsg_drawForm_AdminboxEnd(); ?>