summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-13 21:32:50 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-13 21:32:50 +0100
commitd654b34fa7c1f5a09ec8c9bf2b82b43bf5efaa7d (patch)
treeda616f2de6ca7a6c5524ac43ada7b1b300454f96
parent5bd52cdcb64cdb53aded1dd0bcd6044ca7e98eb4 (diff)
Affichage du nombre total d'article sur la page de configuration
https://github.com/marienfressinaud/FreshRSS/issues/263 Style à améliorer éventuellement
-rwxr-xr-xapp/controllers/configureController.php3
-rwxr-xr-xapp/models/Entry.php14
-rw-r--r--app/views/configure/display.phtml5
3 files changed, 16 insertions, 6 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php
index e9e049f98..815f3f5f4 100755
--- a/app/controllers/configureController.php
+++ b/app/controllers/configureController.php
@@ -259,6 +259,9 @@ class configureController extends ActionController {
$this->view->themes = RSSThemes::get();
View::prependTitle (Translate::t ('general_and_reading_management') . ' - ');
+
+ $entryDAO = new EntryDAO ();
+ $this->view->nb_total = $entryDAO->count ();
}
public function importExportAction () {
diff --git a/app/models/Entry.php b/app/models/Entry.php
index e40cb5992..c6715a431 100755
--- a/app/models/Entry.php
+++ b/app/models/Entry.php
@@ -456,15 +456,21 @@ class EntryDAO extends Model_pdo {
$res = $stm->fetchAll (PDO::FETCH_COLUMN, 0);
return array('total' => $res[0], 'unread' => $res[1], 'read' => $res[0] - $res[1]);
}
- public function count () {
- $sql = 'SELECT COUNT(e.id) AS count FROM ' . $this->prefix . 'entry e INNER JOIN ' . $this->prefix . 'feed f ON e.id_feed = f.id WHERE priority > 0';
+ public function count ($minPriority = null) {
+ $sql = 'SELECT COUNT(e.id) AS count FROM ' . $this->prefix . 'entry e INNER JOIN ' . $this->prefix . 'feed f ON e.id_feed = f.id';
+ if ($minPriority !== null) {
+ $sql = ' WHERE priority > ' . intval($minPriority);
+ }
$stm = $this->bd->prepare ($sql);
$stm->execute ();
$res = $stm->fetchAll (PDO::FETCH_COLUMN, 0);
return $res[0];
}
- public function countNotRead () {
- $sql = 'SELECT COUNT(e.id) AS count FROM ' . $this->prefix . 'entry e INNER JOIN ' . $this->prefix . 'feed f ON e.id_feed = f.id WHERE priority > 0 AND is_read = 0';
+ public function countNotRead ($minPriority = null) {
+ $sql = 'SELECT COUNT(e.id) AS count FROM ' . $this->prefix . 'entry e INNER JOIN ' . $this->prefix . 'feed f ON e.id_feed = f.id WHERE is_read = 0';
+ if ($minPriority !== null) {
+ $sql = ' AND priority > ' . intval($minPriority);
+ }
$stm = $this->bd->prepare ($sql);
$stm->execute ();
$res = $stm->fetchAll (PDO::FETCH_COLUMN, 0);
diff --git a/app/views/configure/display.phtml b/app/views/configure/display.phtml
index 20d1e7089..22fc72f1b 100644
--- a/app/views/configure/display.phtml
+++ b/app/views/configure/display.phtml
@@ -204,9 +204,10 @@
<div class="form-group">
<label class="group-name"></label>
<div class="group-controls">
- <a class="btn" href="<?php echo _url('entry', 'optimize'); ?>">
+ <p><?php echo Translate::t('number_articles') ?> <code><?php echo $this->nb_total; ?></code></p>
+ <p><a class="btn" href="<?php echo _url('entry', 'optimize'); ?>">
<?php echo Translate::t('optimize_bdd'); ?>
- </a>
+ </a></p>
<i class="icon i_help"></i> <?php echo Translate::t('optimize_todo_sometimes'); ?>
</div>
</div>