1085 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen in einem Blognetzwerk
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
|
|
|
9 |
<div class="wpsg_admin_submenu">
|
|
|
10 |
|
|
|
11 |
<div class="head">
|
|
|
12 |
<div class="title"><?php echo __("Einstellungen", "wpsg"); ?></div>
|
|
|
13 |
<div style="clear:both;"></div>
|
|
|
14 |
</div>
|
|
|
15 |
|
|
|
16 |
<ul>
|
|
|
17 |
<?php foreach ($this->view['arSubAction'] as $k => $v) { ?>
|
|
|
18 |
<li class="<?php echo (($k == $this->view['subAction'])?'current':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&subaction=<?php echo $k; ?>"><?php echo $v['Menutext']; ?></a></li>
|
|
|
19 |
<?php } ?>
|
|
|
20 |
</ul>
|
|
|
21 |
|
|
|
22 |
</div>
|
|
|
23 |
|
|
|
24 |
<div class="wpsg_admin_content">
|
|
|
25 |
<form name="form1" method="post" enctype="multipart/form-data" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&subaction=<?php echo $_REQUEST['subaction']; ?>&noheader=1">
|
|
|
26 |
<div class="wpsg_admin_box">
|
|
|
27 |
|
|
|
28 |
<div class="wpsg_hinweis">
|
|
|
29 |
<?php echo __('Sie befinden sich in einer Multiblog Umgebung.', 'wpsg'); ?>
|
|
|
30 |
</div>
|
|
|
31 |
<br />
|
|
|
32 |
|
|
|
33 |
<?php echo wpsg_drawForm_Checkbox('wpsg_multiblog_standalone', __('Jeden Blog getrennt behandeln', 'wpsg'), $this->get_option('wpsg_multiblog_standalone', true)); ?>
|
3441 |
daniel |
34 |
<?php echo wpsg_drawForm_Checkbox('wpsg_multiblog_sessionPath', __('Session auf Verzeichnis einschränken', 'wpsg'), $this->get_option('wpsg_multiblog_sessionPath', true), array('help' => 'wpsg_multiblog_sessionPath')); ?>
|
1085 |
daniel |
35 |
|
|
|
36 |
<input type="hidden" name="subaction" value="blognetzwerk" />
|
|
|
37 |
|
2506 |
daniel |
38 |
<br />
|
|
|
39 |
|
|
|
40 |
<div class="wpsg_hinweis">
|
|
|
41 |
<?php echo __('Nach der Umstellung dieser Option sollte in den Blogs in denen der Shop noch verwendet wird die Shop Datenbank aktualisiert werden. (Einstellungen -> Allgemein)', 'wpsg'); ?>
|
|
|
42 |
</div>
|
|
|
43 |
|
1085 |
daniel |
44 |
<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit" /></p>
|
|
|
45 |
|
|
|
46 |
</div>
|
|
|
47 |
</form>
|
|
|
48 |
</div>
|