Subversion Repositories wpShopGermany4

Rev

Rev 4943 | Rev 5683 | 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 Liste der Profile
5
	 */
6
 
7
?>
8
<?php if (sizeof($this->view['arProfile']) > 0) { ?>
9
<select name="wpsg_mod_export[profil]" id="wpsg_mod_export_profil" onchange="wpsg_mod_export_profilSwitch();" style="width:99%;">
10
	<?php foreach ($this->view['arProfile'] as $p) { ?>
4143 thomas 11
	<option value="<?php echo $p['id']; ?>" <?php echo ((isset($this->view['profil_id']) && $p['id'] == $this->view['profil_id'])?'selected="selected"':''); ?>><?php echo $p['name']; ?></option>
1197 daniel 12
	<?php } ?>
13
</select>
14
<div id="profil_content" style="padding:5px 0px 5px 0px;"></div>
15
<?php } else { ?>
16
<p><?php echo __('Bisher noch keine Profile angelegt.', 'wpsg'); ?></p>
17
<?php } ?>
18
 
19
<script type="text/javascript">
20
 
21
	jQuery(document).ready(function() {
22
		wpsg_mod_export_profilSwitch();
23
	} );
24
 
25
</script>