Subversion Repositories wpShopGermany4

Compare Revisions

Ignore whitespace Rev 6474 → Rev 6475

/admin/module.phtml
103,25 → 103,82
</div>
<?php } else { ?>
 
<?php if ($this->hasMod('wpsg_mod_core')) { ?>
<?php echo $this->callMod('wpsg_mod_core', 'module_index'); ?>
<?php } else { ?>
<div class="wpsg_admin_content form-horizontal">
<div class="panel panel-default">
<div class="panel-heading clearfix">
<h3 class="panel-title"><?php echo __('Modulverwaltung', 'wpsg'); ?></h3>
</div>
<div class="panel-body">
<?php $wpsg_update_data = wpsg_get_update_data(); ?>
<?php if (wpsg_isSizedArray($wpsg_update_data)) { ?>
<table class="table">
<thead>
<tr>
<th><?php echo __('Modulname', 'wpsg'); ?></th>
<th><?php echo __('installierte Version', 'wpsg'); ?></th>
<th><?php echo __('Lizenz', 'wpsg'); ?></th>
<th><?php echo __('verfügbare Version', 'wpsg'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($wpsg_update_data['modulinfo'] as $modul_key => $modul_info) { ?>
<tr>
<td><?php echo $modul_info['label']; ?></td>
<td>
<?php if ($this->hasModInstalled($modul_key)) { ?>
<?php echo $this->arAllModule[$modul_key]->version; ?>
<?php } ?>
</td>
<td>
<?php if ($modul_info['free'] === true) { ?>
<?php echo __('kostenlos', 'wpsg'); ?>
<?php } else if ($modul_info['active'] === true) { ?>
<?php echo __('enthalten', 'wpsg'); ?>
<?php } else { ?>
<a href="<?php echo $modul_info['url_shop']; ?>" target="_blank"><?php echo __('Modulcode hier erwerben', 'wpsg'); ?></a>
<?php } ?>
</td>
<td><?php
echo $modul_info['version'];
if ($this->hasModInstalled($modul_key) && $modul_info['version'] === $this->arAllModule[$modul_key]->version)
{
echo ' ('.__('aktuell', 'wpsg').')';
}
else if (version_compare($modul_info['version'], WPSG_VERSION) > 0)
{
echo ' '.wpsg_translate(__('neue Version verfügbar (<a href="#1#">wpShopGermany Update</a> notwendig)', 'wpsg'), WPSG_URL_WP.'wp-admin/plugins.php');
}
?></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php } else { ?>
<p>
Lizenz aktivieren
</p>
<?php } ?>
</div>
</div>
</div>
<div class="wpsg_admin_content">
<h3><?php echo __('Modulverwaltung', 'wpsg'); ?></h3>
<p><?php echo __('wpShopGermany ist Modular aufgebaut, wählen Sie links das Modul aus, welches Sie konfigurieren möchten. ', 'wpsg'); ?></p>
<p><?php echo wpsg_translate(
__('<span style="color:red; font-weight:bold;">wpShopGermany Vollversion erwerben und weitere Funktionen freischalten.</span> [ <a target="_blank" href="#1#">Vollversion kaufen</a> ] [ <a target="_blank" href="#2#">Weitere Infos</a> ]', 'wpsg'),
'http://shop.maennchen1.de/produkte/wpshopgermany-lizenzkey/',
'http://wpshopgermany.de/'
); ?></p>
</div>
<?php } ?>
<?php } ?>
 
<script type="text/javascript">/* <![CDATA[ */