Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2600 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Einstellungen der Pfade im Backend
5
	 */
6
 
7
?>
8
<div class="wpsg_admin_submenu">
9
 
6500 thomas 10
	<div class="list-group">
11
		<span class="list-group-head list-group-item"><?php echo __('Konfiguration'); ?></span>
12
		<?php foreach ($this->view['arSubAction'] as $k => $v) { ?>
13
		<a class="list-group-item <?php echo (($k == $this->view['subAction'])?'active':''); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;subaction=<?php echo $k; ?>"><?php echo $v['Menutext']; ?></a>
14
		<?php } ?>
2600 daniel 15
	</div>
16
 
17
</div>
18
 
6500 thomas 19
<div class="wpsg_admin_content form-horizontal">
2600 daniel 20
	<form name="form1" method="post" enctype="multipart/form-data" action="<?php echo wpsg_hspc(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=konfiguration&noheader=1'); ?>">
21
 
6500 thomas 22
  	<div class="panel panel-default">
23
 
24
			<div class="panel-heading clearfix">
25
      	<h3 class="panel-title"><?php echo __('Pfadeinstellungen', 'wpsg'); ?></h3>
26
      </div>
27
 
28
  		<div class="panel-body">
29
				<div class="info">
30
  				<br />
31
  					<?php echo __('Hier können die Pfade definiert werden, in denen der Shop seine Daten ablegt.', 'wpsg'); ?></p>
32
  				<br />
33
  			</div>
34
 
35
				<?php echo wpsg_drawForm_Input('wpsg_path_upload_multiblog', __('Multiblog Upload Path (relativ zu wp-content)', 'wpsg'), $this->get_option('wpsg_path_upload_multiblog', true), array('hint' => __('Sollte den Platzhalter %blog_id% enthalten, dieser zeigt auf die ID des jeweiligen Blockes sonst kann es bei dem Betrieb von mehreren Shops zu Überschreibungen kommen.', 'wpsg'))); ?>
2600 daniel 36
 
6500 thomas 37
				<input type="hidden" name="subaction" value="path" />
2600 daniel 38
 
6500 thomas 39
				<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit" /></p>
2600 daniel 40
 
6500 thomas 41
			</div>
42
		</div>
2600 daniel 43
	</form>
44
</div>