aboutsummaryrefslogtreecommitdiff
path: root/app/layout
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-04 14:17:23 -0800
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-04 14:17:23 -0800
commit8852134d0a03b43d2d6f6cbb938de34760050b88 (patch)
tree3fd4292759200bd32df281c9246d90f3862dac2d /app/layout
parentfb07117b78bb0ff2d97d4a042625b8600e3551c6 (diff)
parentf2c83cbfc269e4861bf9b0b59e04b5b20e790fac (diff)
Merge pull request #226 from Alkarex/MenuForFeeds
Ajout liens vers Gestion des flux RSS
Diffstat (limited to 'app/layout')
-rw-r--r--app/layout/aside_configure.phtml3
-rw-r--r--app/layout/header.phtml1
2 files changed, 4 insertions, 0 deletions
diff --git a/app/layout/aside_configure.phtml b/app/layout/aside_configure.phtml
index d91aebbdd..1e525dd29 100644
--- a/app/layout/aside_configure.phtml
+++ b/app/layout/aside_configure.phtml
@@ -7,6 +7,9 @@
<li class="item<?php echo Request::actionName () == 'categorize' ? ' active' : ''; ?>">
<a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'categorize')); ?>"><?php echo Translate::t ('categories'); ?></a>
</li>
+ <li class="item<?php echo Request::actionName () === 'feed' ? ' active' : ''; ?>">
+ <a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'feed')); ?>"><?php echo Translate::t ('rss_feed_management'); ?></a>
+ </li>
<li class="item<?php echo Request::actionName () == 'shortcut' ? ' active' : ''; ?>">
<a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'shortcut')); ?>"><?php echo Translate::t ('shortcuts'); ?></a>
</li>
diff --git a/app/layout/header.phtml b/app/layout/header.phtml
index 3261a8410..1c0d2562f 100644
--- a/app/layout/header.phtml
+++ b/app/layout/header.phtml
@@ -55,6 +55,7 @@
<li class="dropdown-header"><?php echo Translate::t ('configuration'); ?></li>
<li class="item"><a href="<?php echo _url ('configure', 'display'); ?>"><?php echo Translate::t ('general_and_reading'); ?></a></li>
<li class="item"><a href="<?php echo _url ('configure', 'categorize'); ?>"><?php echo Translate::t ('categories'); ?></a></li>
+ <li class="item"><a href="<?php echo _url ('configure', 'feed'); ?>"><?php echo Translate::t ('rss_feed_management'); ?></a></li>
<li class="item"><a href="<?php echo _url ('configure', 'shortcut'); ?>"><?php echo Translate::t ('shortcuts'); ?></a></li>
<li class="separator"></li>
<li class="item"><a href="<?php echo _url ('index', 'about'); ?>"><?php echo Translate::t ('about'); ?></a></li>