mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-25 13:48:03 -05:00
* [lang] Tags management → tag management Cf. <https://github.com/FreshRSS/FreshRSS/pull/3121#issuecomment-662922474>. * Move tag management underneath subscription management
24 lines
1.2 KiB
PHTML
24 lines
1.2 KiB
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() === 'tag' ? ' active' : '' ?>">
|
|
<a href="<?= _url('tag', 'index') ?>"><?= _t('sub.menu.tag_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>
|