summaryrefslogtreecommitdiff
path: root/app/Template/plugin/remove.php
blob: bd8f4eb8f4025d2a18e4266c094b6885cb7988ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="page-header">
    <h2><?= t('Remove plugin') ?></h2>
</div>

<div class="confirm">
    <p class="alert alert-info"><?= t('Do you really want to remove this plugin: "%s"?', $plugin->getPluginName()) ?></p>

    <div class="form-actions">
        <?= $this->url->link(t('Yes'), 'PluginController', 'uninstall', array('pluginId' => $plugin_id), true, 'btn btn-red') ?>
        <?= t('or') ?>
        <?= $this->url->link(t('cancel'), 'PluginController', 'show', array(), false, 'close-popover') ?>
    </div>
</div>