mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-03 22:17:36 -05:00
* Docker Alpine 3.12 (#3025) https://alpinelinux.org/posts/Alpine-3.12.0-released.html With PHP 7.3.18 (from 7.3.17) (and Apache 2.4.43 unchanged). No other significant change spotted * Ensure feed attributes are used before load Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
20 lines
1008 B
PHTML
20 lines
1008 B
PHTML
<ul class="nav nav-list aside">
|
|
<li class="nav-header"><?= _t('sub.menu.subscription_management') ?></li>
|
|
|
|
<li class="item<?= Minz_Request::controllerName() === 'subscription' && Minz_Request::actionName() === 'add' ? ' active' : '' ?>">
|
|
<a href="<?= _url('subscription', 'add') ?>"><?= _t('sub.menu.add') ?></a>
|
|
</li>
|
|
|
|
<li class="item<?= Minz_Request::controllerName() === 'subscription' && Minz_Request::actionName() === 'index' ? ' active' : '' ?>">
|
|
<a href="<?= _url('subscription', 'index') ?>"><?= _t('sub.menu.subscription_management') ?></a>
|
|
</li>
|
|
|
|
<li class="item<?= Minz_Request::controllerName() === 'importExport' ? ' active' : '' ?>">
|
|
<a href="<?= _url('importExport', 'index') ?>"><?= _t('sub.menu.import_export') ?></a>
|
|
</li>
|
|
|
|
<li class="item<?= Minz_Request::controllerName() === 'subscription' && Minz_Request::actionName() === 'bookmarklet' ? ' active' : '' ?>">
|
|
<a href="<?= _url('subscription', 'bookmarklet') ?>"><?= _t('sub.menu.subscription_tools') ?></a>
|
|
</li>
|
|
</ul>
|