| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php $this->partial('aside_configure'); ?>
- <div class="post">
- <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.back_to_rss_feeds'); ?></a>
- <h1><?php echo _t('admin.extensions.title'); ?></h1>
- <form id="form-extension" method="post">
- <input type="hidden" name="_csrf" value="<?php echo FreshRSS_Auth::csrfToken(); ?>" />
- <?php if (!empty($this->extension_list['system'])) { ?>
- <h2><?php echo _t('admin.extensions.system'); ?></h2>
- <?php
- foreach ($this->extension_list['system'] as $ext) {
- $this->ext_details = $ext;
- $this->renderHelper('extension/details');
- }
- ?>
- <?php } ?>
- <?php if (!empty($this->extension_list['user'])) { ?>
- <h2><?php echo _t('admin.extensions.user'); ?></h2>
- <?php
- foreach ($this->extension_list['user'] as $ext) {
- $this->ext_details = $ext;
- $this->renderHelper('extension/details');
- }
- ?>
- <?php
- }
- if (empty($this->extension_list['system']) && empty($this->extension_list['user'])) {
- ?>
- <p class="alert alert-warn"><?php echo _t('admin.extensions.empty_list'); ?></p>
- <?php } ?>
- </form>
- <?php if (!empty($this->available_extensions)) { ?>
- <h2><?php echo _t('admin.extensions.community'); ?></h2>
- <table>
- <tr>
- <th><?php echo _t('admin.extensions.name'); ?></th>
- <th><?php echo _t('admin.extensions.version'); ?></th>
- <th><?php echo _t('admin.extensions.author'); ?></th>
- <th><?php echo _t('admin.extensions.description'); ?></th>
- </tr>
- <?php foreach ($this->available_extensions as $ext) { ?>
- <tr>
- <td><a href="<?php echo $ext['url']; ?>" target="_blank"><?php echo $ext['name']; ?></a></td>
- <td><?php echo $ext['version']; ?></td>
- <td><?php echo $ext['author']; ?></td>
- <td>
- <?php echo $ext['description']; ?>
- <?php if (isset($this->extensions_installed[$ext['name']])) { ?>
- <?php if (version_compare($this->extensions_installed[$ext['name']], $ext['version']) >= 0) { ?>
- <span class="alert alert-success">
- <?php echo _t('admin.extensions.latest'); ?>
- </span>
- <?php } else if ($this->extensions_installed[$ext['name']] != $ext['version']) { ?>
- <span class="alert alert-warn">
- <?php echo _t('admin.extensions.update'); ?>
- </span>
- <?php } ?>
- <?php } ?>
- </td>
- </tr>
- <?php } ?>
- </table>
- <?php } ?>
- </div>
- <?php $class = isset($this->extension) ? ' class="active"' : ''; ?>
- <a href="#" id="close-slider"<?php echo $class; ?>></a>
- <div id="slider"<?php echo $class; ?>>
- <?php
- if (isset($this->extension)) {
- $this->renderHelper('extension/configure');
- }
- ?>
- </div>
|