Manage plugins from the user interface and from the command line
This commit is contained in:
@@ -5,15 +5,17 @@
|
||||
<?php if (empty($plugins)): ?>
|
||||
<p class="alert"><?= t('There is no plugin loaded.') ?></p>
|
||||
<?php else: ?>
|
||||
<table class="table-stripped">
|
||||
<table>
|
||||
<tr>
|
||||
<th class="column-20"><?= t('Name') ?></th>
|
||||
<th class="column-20"><?= t('Author') ?></th>
|
||||
<th class="column-35"><?= t('Name') ?></th>
|
||||
<th class="column-30"><?= t('Author') ?></th>
|
||||
<th class="column-10"><?= t('Version') ?></th>
|
||||
<th><?= t('Description') ?></th>
|
||||
<?php if ($is_configured): ?>
|
||||
<th><?= t('Action') ?></th>
|
||||
<?php endif ?>
|
||||
</tr>
|
||||
|
||||
<?php foreach ($plugins as $plugin): ?>
|
||||
<?php foreach ($plugins as $pluginFolder => $plugin): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<?php if ($plugin->getPluginHomepage()): ?>
|
||||
@@ -24,7 +26,15 @@
|
||||
</td>
|
||||
<td><?= $this->text->e($plugin->getPluginAuthor()) ?></td>
|
||||
<td><?= $this->text->e($plugin->getPluginVersion()) ?></td>
|
||||
<td><?= $this->text->e($plugin->getPluginDescription()) ?></td>
|
||||
<?php if ($is_configured): ?>
|
||||
<td>
|
||||
<i class="fa fa-trash-o fa-fw" aria-hidden="true"></i>
|
||||
<?= $this->url->link(t('Uninstall'), 'PluginController', 'confirm', array('pluginId' => $pluginFolder), false, 'popover') ?>
|
||||
</td>
|
||||
<?php endif ?>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="<?= $is_configured ? 4 : 3 ?>"><?= $this->text->e($plugin->getPluginDescription()) ?></td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user