Subversion Repositories wpShopGermany4

Rev

Rev 4943 | Go to most recent revision | 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
 
10
	<div class="head">
11
		<div class="title"><?php echo __("Einstellungen", "wpsg"); ?></div>
12
		<div style="clear:both;"></div>
13
	</div>
14
 
15
	<ul>
16
		<?php foreach ($this->view['arSubAction'] as $k => $v) { ?>
17
		<li class="<?php echo (($k == $this->view['subAction'])?'current':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;subaction=<?php echo $k; ?>"><?php echo $v['Menutext']; ?></a></li>
18
		<?php } ?>
19
	</ul>
20
 
21
</div>
22
 
23
<div style="padding:0px; margin:0px; float:left;">
24
	<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'); ?>">
25
 
26
  		<h3><?php echo __('Pfadeinstellungen', 'wpsg'); ?></h3>
27
 
28
  		<p><?php echo __('Hier können die Pfade definiert werden, in denen der Shop seine Daten ablegt.', 'wpsg'); ?></p>
29
 
2821 daniel 30
		<?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 31
 
32
		<input type="hidden" name="subaction" value="path" />
33
 
34
		<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit" /></p>
35
 
36
	</form>
37
</div>