123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- include 'common.php';
- include 'header.php';
- include 'menu.php';
- ?>
- <div class="main">
- <div class="body container">
- <?php include 'page-title.php'; ?>
- <div class="row typecho-page-main" role="main">
- <div class="col-mb-12 typecho-list">
- <?php \Widget\Plugins\Rows::allocWithAlias('activated', 'activated=1')->to($activatedPlugins); ?>
- <?php if ($activatedPlugins->have() || !empty($activatedPlugins->activatedPlugins)): ?>
- <h4 class="typecho-list-table-title"><?php _e('启用的插件'); ?></h4>
- <div class="typecho-table-wrap">
- <table class="typecho-list-table">
- <colgroup>
- <col width="25%"/>
- <col width="45%"/>
- <col width="8%" class="kit-hidden-mb"/>
- <col width="10%" class="kit-hidden-mb"/>
- <col width=""/>
- </colgroup>
- <thead>
- <tr>
- <th><?php _e('名称'); ?></th>
- <th><?php _e('描述'); ?></th>
- <th class="kit-hidden-mb"><?php _e('版本'); ?></th>
- <th class="kit-hidden-mb"><?php _e('作者'); ?></th>
- <th><?php _e('操作'); ?></th>
- </tr>
- </thead>
- <tbody>
- <?php while ($activatedPlugins->next()): ?>
- <tr id="plugin-<?php $activatedPlugins->name(); ?>">
- <td><?php $activatedPlugins->title(); ?>
- <?php if (!$activatedPlugins->dependence): ?>
- <i class="i-delete"
- title="<?php _e('%s 无法在此版本的typecho下正常工作', $activatedPlugins->title); ?>"></i>
- <?php endif; ?>
- </td>
- <td><?php $activatedPlugins->description(); ?></td>
- <td class="kit-hidden-mb"><?php $activatedPlugins->version(); ?></td>
- <td class="kit-hidden-mb"><?php echo empty($activatedPlugins->homepage) ? $activatedPlugins->author : '<a href="' . $activatedPlugins->homepage
- . '">' . $activatedPlugins->author . '</a>'; ?></td>
- <td>
- <?php if ($activatedPlugins->activate || $activatedPlugins->deactivate || $activatedPlugins->config || $activatedPlugins->personalConfig): ?>
- <?php if ($activatedPlugins->config): ?>
- <a href="<?php $options->adminUrl('options-plugin.php?config=' . $activatedPlugins->name); ?>"><?php _e('设置'); ?></a>
- •
- <?php endif; ?>
- <a lang="<?php _e('你确认要禁用插件 %s 吗?', $activatedPlugins->name); ?>"
- href="<?php $security->index('/action/plugins-edit?deactivate=' . $activatedPlugins->name); ?>"><?php _e('禁用'); ?></a>
- <?php else: ?>
- <span class="important"><?php _e('即插即用'); ?></span>
- <?php endif; ?>
- </td>
- </tr>
- <?php endwhile; ?>
- <?php if (!empty($activatedPlugins->activatedPlugins)): ?>
- <?php foreach ($activatedPlugins->activatedPlugins as $key => $val): ?>
- <tr>
- <td><?php echo $key; ?></td>
- <td colspan="3"><span
- class="warning"><?php _e('此插件文件已经损坏或者被不安全移除, 强烈建议你禁用它'); ?></span></td>
- <td><a lang="<?php _e('你确认要禁用插件 %s 吗?', $key); ?>"
- href="<?php $security->index('/action/plugins-edit?deactivate=' . $key); ?>"><?php _e('禁用'); ?></a>
- </td>
- </tr>
- <?php endforeach; ?>
- <?php endif; ?>
- </tbody>
- </table>
- </div>
- <?php endif; ?>
- <?php \Widget\Plugins\Rows::allocWithAlias('unactivated', 'activated=0')->to($deactivatedPlugins); ?>
- <?php if ($deactivatedPlugins->have() || !$activatedPlugins->have()): ?>
- <h4 class="typecho-list-table-title"><?php _e('禁用的插件'); ?></h4>
- <div class="typecho-table-wrap">
- <table class="typecho-list-table deactivate">
- <colgroup>
- <col width="25%"/>
- <col width="45%"/>
- <col width="8%" class="kit-hidden-mb"/>
- <col width="10%" class="kit-hidden-mb"/>
- <col width=""/>
- </colgroup>
- <thead>
- <tr>
- <th><?php _e('名称'); ?></th>
- <th><?php _e('描述'); ?></th>
- <th class="kit-hidden-mb"><?php _e('版本'); ?></th>
- <th class="kit-hidden-mb"><?php _e('作者'); ?></th>
- <th class="typecho-radius-topright"><?php _e('操作'); ?></th>
- </tr>
- </thead>
- <tbody>
- <?php if ($deactivatedPlugins->have()): ?>
- <?php while ($deactivatedPlugins->next()): ?>
- <tr id="plugin-<?php $deactivatedPlugins->name(); ?>">
- <td><?php $deactivatedPlugins->title(); ?></td>
- <td><?php $deactivatedPlugins->description(); ?></td>
- <td class="kit-hidden-mb"><?php $deactivatedPlugins->version(); ?></td>
- <td class="kit-hidden-mb"><?php echo empty($deactivatedPlugins->homepage) ? $deactivatedPlugins->author : '<a href="' . $deactivatedPlugins->homepage
- . '">' . $deactivatedPlugins->author . '</a>'; ?></td>
- <td>
- <a href="<?php $security->index('/action/plugins-edit?activate=' . $deactivatedPlugins->name); ?>"><?php _e('启用'); ?></a>
- </td>
- </tr>
- <?php endwhile; ?>
- <?php else: ?>
- <tr>
- <td colspan="5"><h6 class="typecho-list-table-title"><?php _e('没有安装插件'); ?></h6>
- </td>
- </tr>
- <?php endif; ?>
- </tbody>
- </table>
- </div>
- <?php endif; ?>
- </div>
- </div>
- </div>
- </div>
- <?php
- include 'copyright.php';
- include 'common-js.php';
- include 'footer.php';
- ?>
|