3652 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die allgemeinen Shopdaten
|
|
|
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&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_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&subaction=<?php echo $_REQUEST['subaction']; ?>&noheader=1">
|
|
|
25 |
|
3657 |
daniel |
26 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_name', __('Name des Shops / Firma', 'wpsg'), $this->get_option('wpsg_shopdata_name'), array('help' => 'wpsg_shopdata_name')); ?>
|
|
|
27 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_owner', __('Inhaber des Shops', 'wpsg'), $this->get_option('wpsg_shopdata_owner'), array('help' => 'wpsg_shopdata_owner')); ?>
|
|
|
28 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_tel', __('Telefonnummer', 'wpsg'), $this->get_option('wpsg_shopdata_tel'), array('help' => 'wpsg_shopdata_tel')); ?>
|
|
|
29 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_fax', __('Faxnummer', 'wpsg'), $this->get_option('wpsg_shopdata_fax'), array('help' => 'wpsg_shopdata_fax')); ?>
|
|
|
30 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_email', __('E-Mail', 'wpsg'), $this->get_option('wpsg_shopdata_email'), array('help' => 'wpsg_shopdata_email')); ?>
|
3748 |
daniel |
31 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_taxnr', __('Steuernummer', 'wpsg'), $this->get_option('wpsg_shopdata_taxnr'), array('help' => 'wpsg_shopdata_taxnr')); ?>
|
|
|
32 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_ustidnr', __('USt-IdNr.', 'wpsg'), $this->get_option('wpsg_shopdata_ustidnr'), array('help' => 'wpsg_shopdata_ustidnr')); ?>
|
3652 |
daniel |
33 |
|
|
|
34 |
<h4><?php echo __('Anschrift', 'wpsg'); ?></h4>
|
|
|
35 |
|
3657 |
daniel |
36 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_street', __('Straße', 'wpsg'), $this->get_option('wpsg_shopdata_street'), array('help' => 'wpsg_shopdata_street')); ?>
|
|
|
37 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_zip', __('Postleitzahl', 'wpsg'), $this->get_option('wpsg_shopdata_zip'), array('help' => 'wpsg_shopdata_zip')); ?>
|
|
|
38 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_city', __('Ort', 'wpsg'), $this->get_option('wpsg_shopdata_city'), array('help' => 'wpsg_shopdata_city')); ?>
|
3652 |
daniel |
39 |
|
|
|
40 |
<h4><?php echo __('Bankdaten', 'wpsg'); ?></h4>
|
|
|
41 |
|
3748 |
daniel |
42 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_bank_name', __('Name der Bank', 'wpsg'), $this->get_option('wpsg_shopdata_bank_name'), array('help' => 'wpsg_shopdata_bank_name')); ?>
|
3657 |
daniel |
43 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_bank_owner', __('Kontoinhaber', 'wpsg'), $this->get_option('wpsg_shopdata_bank_owner'), array('help' => 'wpsg_shopdata_bank_owner')); ?>
|
3673 |
daniel |
44 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_bank_iban', __('IBAN Nummer', 'wpsg'), $this->get_option('wpsg_shopdata_bank_iban'), array('help' => 'wpsg_shopdata_bank_iban')); ?>
|
3657 |
daniel |
45 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_bank_bic', __('BIC Nummer', 'wpsg'), $this->get_option('wpsg_shopdata_bank_bic'), array('help' => 'wpsg_shopdata_bank_bic')); ?>
|
3652 |
daniel |
46 |
|
|
|
47 |
<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit" /></p>
|
|
|
48 |
|
|
|
49 |
</form>
|
3660 |
daniel |
50 |
</div>
|
|
|
51 |
|
|
|
52 |
<script type="text/javascript">/* <![CDATA[ */
|
|
|
53 |
|
|
|
54 |
jQuery(document).ready(function() {
|
|
|
55 |
|
|
|
56 |
jQuery('.wpsg_form_help').tipTip();
|
|
|
57 |
|
|
|
58 |
} );
|
|
|
59 |
|
|
|
60 |
/* ]]> */</script>
|