X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Ffeatured.php;h=5609d6bacee98a8a4295f1cafffb8c989763ac68;hb=93524c4be384a9d75cdb4cd3413894bb4e39de6b;hp=dd1056dd58338dc85408414aa06d23a45911632b;hpb=05e2b4d92d9e646ac17871424d47e81c09acf4b2;p=quix0rs-gnu-social.git diff --git a/actions/featured.php b/actions/featured.php index dd1056dd58..5609d6bace 100644 --- a/actions/featured.php +++ b/actions/featured.php @@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/publicgroupnav.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class FeaturedAction extends Action { var $page = null; @@ -55,7 +54,7 @@ class FeaturedAction extends Action return true; } - function prepare($args) + function prepare(array $args = array()) { parent::prepare($args); $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; @@ -66,15 +65,18 @@ class FeaturedAction extends Action function title() { if ($this->page == 1) { + // TRANS: Page title for first page of featured users. return _('Featured users'); } else { + // TRANS: Page title for all but first page of featured users. + // TRANS: %d is the page number being displayed. return sprintf(_('Featured users, page %d'), $this->page); } } - function handle($args) + function handle() { - parent::handle($args); + parent::handle(); $this->showPage(); } @@ -88,15 +90,10 @@ class FeaturedAction extends Action $this->elementEnd('div'); } - function showLocalNav() - { - $nav = new PublicGroupNav($this); - $nav->show(); - } - function getInstructions() { - return sprintf(_('A selection of some great users on %s'), + // TRANS: Description on page displaying featured users. + return sprintf(_('A selection of some great users on %s.'), common_config('site', 'name')); }