diff --git a/app/Controllers/statsController.php b/app/Controllers/statsController.php index d03c4fa3d..170d35d6f 100644 --- a/app/Controllers/statsController.php +++ b/app/Controllers/statsController.php @@ -20,6 +20,14 @@ class FreshRSS_stats_Controller extends FreshRSS_ActionController { 'style-src' => "'self' 'unsafe-inline'", ]); + $catDAO = FreshRSS_Factory::createCategoryDao(); + $feedDAO = FreshRSS_Factory::createFeedDao(); + + $catDAO->checkDefault(); + $feedDAO->updateTTL(); + $this->view->categories = $catDAO->listSortedCategories(false); + $this->view->default_category = $catDAO->getDefault(); + FreshRSS_View::prependTitle(_t('admin.stats.title') . ' · '); } @@ -91,6 +99,23 @@ class FreshRSS_stats_Controller extends FreshRSS_ActionController { $this->view->last30DaysLabels = $last30DaysLabels; } + /** + * This action handles the feed action on the idle statistic page. + * set the 'from' parameter to remember that it had a redirection coming from stats controller, + * to use the subscription controller to save it, + * but shows the stats idle page + */ + public function feedAction() { + $id = Minz_Request::param('id'); + $ajax = Minz_Request::param('ajax'); + if ($ajax) { + $url_redirect = array('c' => 'subscription', 'a' => 'feed', 'params' => array('id' => $id, 'from' => 'stats', 'ajax' => $ajax)); + } else { + $url_redirect = array('c' => 'subscription', 'a' => 'feed', 'params' => array('id' => $id, 'from' => 'stats')); + } + Minz_Request::forward($url_redirect, true); + } + /** * This action handles the idle feed statistic page. * @@ -138,6 +163,9 @@ class FreshRSS_stats_Controller extends FreshRSS_ActionController { $last5Year->modify('-5 year'); foreach ($feeds as $feed) { + $feedDAO = FreshRSS_Factory::createFeedDao(); + $feed['favicon'] = $feedDAO->searchById($feed['id'])->favicon(); + $feedDate->setTimestamp($feed['last_date']); if ($feedDate >= $lastWeek) { continue; @@ -162,6 +190,14 @@ class FreshRSS_stats_Controller extends FreshRSS_ActionController { } $this->view->idleFeeds = $idleFeeds; + + $id = Minz_Request::param('id'); + $this->view->displaySlider = false; + if (false !== $id) { + $this->view->displaySlider = true; + $feedDAO = FreshRSS_Factory::createFeedDao(); + $this->view->feed = $feedDAO->searchById($id); + } } /** diff --git a/app/Controllers/subscriptionController.php b/app/Controllers/subscriptionController.php index eb0d86c3b..7d2c58714 100644 --- a/app/Controllers/subscriptionController.php +++ b/app/Controllers/subscriptionController.php @@ -207,7 +207,12 @@ class FreshRSS_subscription_Controller extends FreshRSS_ActionController { invalidateHttpCache(); - $url_redirect = array('c' => 'subscription', 'params' => array('id' => $id)); + $from = Minz_Request::param('from'); + if ($from === false) { + $url_redirect = array('c' => 'subscription', 'params' => array('id' => $id)); + } else { + $url_redirect = array('c' => 'stats', 'a' => 'idle', 'params' => array('id' => $id, 'from' => 'stats')); + } if ($feedDAO->updateFeed($id, $values) !== false) { $feed->_category($cat); $feed->faviconPrepare(); diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml index a1567afc0..ed6db9b1f 100644 --- a/app/views/helpers/feed/update.phtml +++ b/app/views/helpers/feed/update.phtml @@ -18,7 +18,15 @@

-
+ feed->id()); + } else { + $url = _url('subscription', 'feed', 'id', $this->feed->id(), 'from', $from); + } + ?> +
diff --git a/app/views/stats/idle.phtml b/app/views/stats/idle.phtml index 40feb4a03..6b2141ba2 100644 --- a/app/views/stats/idle.phtml +++ b/app/views/stats/idle.phtml @@ -20,29 +20,19 @@ if (!empty($feeds)) { $nothing = false; ?> -
-

- - - - -
    -
  • -
    - - - -
    -
  • -
  • - - () -
  • +
    +
    +
      + +
    • + + show_favicons): ?>✇ + + () +
    • +
    - - -
    +

+ + displaySlider ? ' class="active"' : ''; ?> + > + + +
> + feed)) { + $this->renderHelper('feed/update'); + } + ?> +