mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-03 14:12:51 -04:00
Merge branch 'aledeg-reading-conf' into dev
This commit is contained in:
@@ -141,7 +141,18 @@ class FreshRSS_Configuration {
|
||||
}
|
||||
}
|
||||
public function _default_view ($value) {
|
||||
$this->data['default_view'] = $value === FreshRSS_Entry::STATE_ALL ? FreshRSS_Entry::STATE_ALL : FreshRSS_Entry::STATE_NOT_READ;
|
||||
switch ($value) {
|
||||
case FreshRSS_Entry::STATE_ALL:
|
||||
// left blank on purpose
|
||||
case FreshRSS_Entry::STATE_NOT_READ:
|
||||
// left blank on purpose
|
||||
case FreshRSS_Entry::STATE_NOT_READ_STRICT:
|
||||
$this->data['default_view'] = $value;
|
||||
break;
|
||||
default:
|
||||
$this->data['default_view'] = FreshRSS_Entry::STATE_ALL;
|
||||
break;
|
||||
}
|
||||
}
|
||||
public function _display_posts ($value) {
|
||||
$this->data['display_posts'] = ((bool)$value) && $value !== 'no';
|
||||
|
||||
@@ -6,6 +6,8 @@ class FreshRSS_Entry extends Minz_Model {
|
||||
const STATE_NOT_READ = 2;
|
||||
const STATE_FAVORITE = 4;
|
||||
const STATE_NOT_FAVORITE = 8;
|
||||
const STATE_READ_STRICT = 16;
|
||||
const STATE_NOT_READ_STRICT = 32;
|
||||
|
||||
private $id = 0;
|
||||
private $guid;
|
||||
|
||||
@@ -338,6 +338,9 @@ class FreshRSS_EntryDAO extends Minz_ModelPdo {
|
||||
elseif ($state & FreshRSS_Entry::STATE_READ) {
|
||||
$where .= 'AND e1.is_read=1 ';
|
||||
}
|
||||
elseif ($state & FreshRSS_Entry::STATE_NOT_READ_STRICT) {
|
||||
$where .= 'AND e1.is_read=0 ';
|
||||
}
|
||||
if ($state & FreshRSS_Entry::STATE_FAVORITE) {
|
||||
if (!($state & FreshRSS_Entry::STATE_NOT_FAVORITE)) {
|
||||
$where .= 'AND e1.is_favorite=1 ';
|
||||
|
||||
@@ -92,6 +92,7 @@ return array (
|
||||
'rss_view' => 'RSS feed',
|
||||
'show_all_articles' => 'Show all articles',
|
||||
'show_not_reads' => 'Show only unread',
|
||||
'show_adaptive' => 'Adjust showing',
|
||||
'show_read' => 'Show only read',
|
||||
'show_favorite' => 'Show only favorites',
|
||||
'show_not_favorite' => 'Show all but favorites',
|
||||
@@ -271,6 +272,7 @@ return array (
|
||||
'articles_per_page' => 'Number of articles per page',
|
||||
'number_divided_when_unfolded' => 'Divided by 2 during loading of unfolded articles.',
|
||||
'default_view' => 'Default view',
|
||||
'articles_to_display' => 'Articles to display',
|
||||
'sort_order' => 'Sort order',
|
||||
'auto_load_more' => 'Load next articles at the page bottom',
|
||||
'display_articles_unfolded' => 'Show articles unfolded by default',
|
||||
|
||||
@@ -92,6 +92,7 @@ return array (
|
||||
'rss_view' => 'Flux RSS',
|
||||
'show_all_articles' => 'Afficher tous les articles',
|
||||
'show_not_reads' => 'Afficher les non lus',
|
||||
'show_adaptive' => 'Adapter l’affichage',
|
||||
'show_read' => 'Afficher les lus',
|
||||
'show_favorite' => 'Afficher les favoris',
|
||||
'show_not_favorite' => 'Afficher tout sauf les favoris',
|
||||
@@ -271,6 +272,7 @@ return array (
|
||||
'articles_per_page' => 'Nombre d’articles par page',
|
||||
'number_divided_when_unfolded' => 'Divisé par 2 lors du chargement d’articles dépliés.',
|
||||
'default_view' => 'Vue par défaut',
|
||||
'articles_to_display' => 'Articles à afficher',
|
||||
'sort_order' => 'Ordre de tri',
|
||||
'auto_load_more' => 'Charger les articles suivants en bas de page',
|
||||
'display_articles_unfolded' => 'Afficher les articles dépliés par défaut',
|
||||
|
||||
@@ -34,14 +34,17 @@
|
||||
<option value="reader"<?php echo $this->conf->view_mode === 'reader' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('reader_view'); ?></option>
|
||||
<option value="global"<?php echo $this->conf->view_mode === 'global' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('global_view'); ?></option>
|
||||
</select>
|
||||
<label class="radio" for="radio_all">
|
||||
<input type="radio" name="default_view" id="radio_all" value="<?php echo FreshRSS_Entry::STATE_ALL; ?>"<?php echo $this->conf->default_view === FreshRSS_Entry::STATE_ALL ? ' checked="checked"' : ''; ?> />
|
||||
<?php echo Minz_Translate::t ('show_all_articles'); ?>
|
||||
</label>
|
||||
<label class="radio" for="radio_not_read">
|
||||
<input type="radio" name="default_view" id="radio_not_read" value="<?php echo FreshRSS_Entry::STATE_NOT_READ; ?>"<?php echo $this->conf->default_view === FreshRSS_Entry::STATE_NOT_READ ? ' checked="checked"' : ''; ?> />
|
||||
<?php echo Minz_Translate::t ('show_not_reads'); ?>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="group-name" for="view_mode"><?php echo _t('articles_to_display'); ?></label>
|
||||
<div class="group-controls">
|
||||
<select name="default_view" id="default_view">
|
||||
<option value="<?php echo FreshRSS_Entry::STATE_NOT_READ; ?>"<?php echo $this->conf->default_view === FreshRSS_Entry::STATE_NOT_READ ? ' selected="selected"' : ''; ?>><?php echo _t('show_adaptive'); ?></option>
|
||||
<option value="<?php echo FreshRSS_Entry::STATE_ALL; ?>"<?php echo $this->conf->default_view === FreshRSS_Entry::STATE_ALL ? ' selected="selected"' : ''; ?>><?php echo _t('show_all_articles'); ?></option>
|
||||
<option value="<?php echo FreshRSS_Entry::STATE_NOT_READ_STRICT; ?>"<?php echo $this->conf->default_view === FreshRSS_Entry::STATE_NOT_READ_STRICT ? ' selected="selected"' : ''; ?>><?php echo _t('show_not_reads'); ?></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user