diff options
| author | 2013-06-16 20:48:56 +0200 | |
|---|---|---|
| committer | 2013-06-16 20:48:56 +0200 | |
| commit | 48cfe1571ececb9fae0c361d9147690b04d310e0 (patch) | |
| tree | a14869bc4ec60bdb95dc52b0ecac4993dff570f7 /app/views | |
| parent | 36316a6d7e81c3e73cad1362194e73a9006b0c72 (diff) | |
Fix issue #67 : différentes vues implémentées + possibilité de choisir la vue par défaut
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/display.phtml | 5 | ||||
| -rw-r--r-- | app/views/helpers/global_view.phtml | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/app/views/configure/display.phtml b/app/views/configure/display.phtml index c46a02143..8484a7116 100644 --- a/app/views/configure/display.phtml +++ b/app/views/configure/display.phtml @@ -46,6 +46,11 @@ <div class="form-group"> <label class="group-name"><?php echo Translate::t ('default_view'); ?></label> <div class="group-controls"> + <select name="view_mode" id="view_mode"> + <option value="normal"<?php echo $this->conf->viewMode () == 'normal' ? ' selected="selected"' : ''; ?>><?php echo Translate::t ('normal_view'); ?></option> + <option value="reader"<?php echo $this->conf->viewMode () == 'reader' ? ' selected="selected"' : ''; ?>><?php echo Translate::t ('reader_view'); ?></option> + <option value="global"<?php echo $this->conf->viewMode () == 'global' ? ' selected="selected"' : ''; ?>><?php echo Translate::t ('global_view'); ?></option> + </select> <label class="radio" for="radio_all"> <input type="radio" name="default_view" id="radio_all" value="all"<?php echo $this->conf->defaultView () == 'all' ? ' checked="checked"' : ''; ?> /> <?php echo Translate::t ('show_all_articles'); ?> diff --git a/app/views/helpers/global_view.phtml b/app/views/helpers/global_view.phtml index 8e5e363f8..fff391cba 100644 --- a/app/views/helpers/global_view.phtml +++ b/app/views/helpers/global_view.phtml @@ -8,7 +8,11 @@ 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> + <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) { ?> |
