diff options
| author | 2013-07-27 13:58:58 +0200 | |
|---|---|---|
| committer | 2013-07-27 13:58:58 +0200 | |
| commit | 22febc135134511b43a8543ea45c49c7aeec6f84 (patch) | |
| tree | e2596663533d36ec017fc1c7e8730245d6de0d19 /app/views/helpers/global_view.phtml | |
| parent | c4dcda6b47594a543046602056c5b7c27df70e39 (diff) | |
Fix issue #101 : option interdiction anonymes
Ajout d'une option pour interdire la lecture anonyme (interdit par
défaut)
Correction de l'internationalisation pour la pagination des logs
Diffstat (limited to 'app/views/helpers/global_view.phtml')
| -rw-r--r-- | app/views/helpers/global_view.phtml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/app/views/helpers/global_view.phtml b/app/views/helpers/global_view.phtml deleted file mode 100644 index fff391cba..000000000 --- a/app/views/helpers/global_view.phtml +++ /dev/null @@ -1,37 +0,0 @@ -<?php $this->partial ('nav_menu'); ?> - -<div id="stream" class="global"> -<?php - foreach ($this->cat_aside as $cat) { - $feeds = $cat->feeds (); - $catNotRead = $cat->nbNotRead (); - if (!empty ($feeds)) { -?> - <div class="category"> - <div class="cat_header"> - <a href="<?php echo _url ('index', 'index', 'get', 'c_' . $cat->id ()); ?>"> - <?php echo $cat->name(); ?><?php echo $catNotRead > 0 ? ' (' . $catNotRead . ')' : ''; ?> - </a> - </div> - - <ul class="feeds"> - <?php foreach ($feeds as $feed) { ?> - <?php $not_read = $feed->nbNotRead (); ?> - <li class="item"> - <img class="favicon" src="<?php echo $feed->favicon (); ?>" alt="" /> - - <a href="<?php echo _url ('index', 'index', 'get', 'f_' . $feed->id ()); ?>"> - <?php echo $not_read > 0 ? '<b>' : ''; ?> - <?php echo $feed->name(); ?> - <?php echo $not_read > 0 ? ' (' . $not_read . ')' : ''; ?> - <?php echo $not_read > 0 ? '</b>' : ''; ?> - </a> - </li> - <?php } ?> - </ul> - </div> -<?php - } - } -?> -</div>
\ No newline at end of file |
