Added plugin controller (WIP)
This commit is contained in:
30
app/Template/plugin/directory.php
Normal file
30
app/Template/plugin/directory.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Plugin Directory') ?></h2>
|
||||
</div>
|
||||
|
||||
<?php if (empty($plugins)): ?>
|
||||
<p class="alert"><?= t('There is no plugin available.') ?></p>
|
||||
<?php else: ?>
|
||||
<table class="table-stripped">
|
||||
<tr>
|
||||
<th class="column-20"><?= t('Name') ?></th>
|
||||
<th class="column-20"><?= t('Author') ?></th>
|
||||
<th class="column-10"><?= t('Version') ?></th>
|
||||
<th><?= t('Description') ?></th>
|
||||
<th><?= t('Action') ?></th>
|
||||
</tr>
|
||||
|
||||
<?php foreach ($plugins as $plugin): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<?= $plugin['homepage'] ?>" target="_blank" rel="noreferrer"><?= $this->text->e($plugin['title']) ?></a>
|
||||
</td>
|
||||
<td><?= $this->text->e($plugin['author']) ?></td>
|
||||
<td><?= $this->text->e($plugin['version']) ?></td>
|
||||
<td><?= $this->text->e($plugin['description']) ?></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</table>
|
||||
<?php endif ?>
|
||||
9
app/Template/plugin/layout.php
Normal file
9
app/Template/plugin/layout.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<section id="main">
|
||||
<section class="sidebar-container" id="config-section">
|
||||
<?= $this->render($sidebar_template) ?>
|
||||
|
||||
<div class="sidebar-content">
|
||||
<?= $content_for_sublayout ?>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
31
app/Template/plugin/show.php
Normal file
31
app/Template/plugin/show.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Installed Plugins') ?></h2>
|
||||
</div>
|
||||
|
||||
<?php if (empty($plugins)): ?>
|
||||
<p class="alert"><?= t('There is no plugin loaded.') ?></p>
|
||||
<?php else: ?>
|
||||
<table class="table-stripped">
|
||||
<tr>
|
||||
<th class="column-20"><?= t('Name') ?></th>
|
||||
<th class="column-20"><?= t('Author') ?></th>
|
||||
<th class="column-10"><?= t('Version') ?></th>
|
||||
<th><?= t('Description') ?></th>
|
||||
</tr>
|
||||
|
||||
<?php foreach ($plugins as $plugin): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<?php if ($plugin->getPluginHomepage()): ?>
|
||||
<a href="<?= $plugin->getPluginHomepage() ?>" target="_blank" rel="noreferrer"><?= $this->text->e($plugin->getPluginName()) ?></a>
|
||||
<?php else: ?>
|
||||
<?= $this->text->e($plugin->getPluginName()) ?>
|
||||
<?php endif ?>
|
||||
</td>
|
||||
<td><?= $this->text->e($plugin->getPluginAuthor()) ?></td>
|
||||
<td><?= $this->text->e($plugin->getPluginVersion()) ?></td>
|
||||
<td><?= $this->text->e($plugin->getPluginDescription()) ?></td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</table>
|
||||
<?php endif ?>
|
||||
11
app/Template/plugin/sidebar.php
Normal file
11
app/Template/plugin/sidebar.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<div class="sidebar">
|
||||
<h2><?= t('Actions') ?></h2>
|
||||
<ul>
|
||||
<li <?= $this->app->checkMenuSelection('PluginController', 'show') ?>>
|
||||
<?= $this->url->link(t('Installed Plugins'), 'PluginController', 'show') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('PluginController', 'directory') ?>>
|
||||
<?= $this->url->link(t('Plugin Directory'), 'PluginController', 'directory') ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
Reference in New Issue
Block a user