X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fpublicgroupnav.php;h=69347bc0d4970ff99da8c5d2df9881b459496f81;hb=4e26527447852f88d48bf40a4f208079fcb77a49;hp=ee087d8a861835847d43dbf4caa146123d48175e;hpb=e847b9a128f3b943b746875858e1148665f14ce0;p=quix0rs-gnu-social.git diff --git a/lib/publicgroupnav.php b/lib/publicgroupnav.php index ee087d8a86..69347bc0d4 100644 --- a/lib/publicgroupnav.php +++ b/lib/publicgroupnav.php @@ -1,8 +1,8 @@ . * - * @category Action - * @package Laconica - * @author Evan Prodromou - * @author Sarven Capadisli - * @copyright 2008 Control Yourself, Inc. + * @category Menu + * @package StatusNet + * @author Evan Prodromou + * @copyright 2008 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ */ -if (!defined('LACONICA')) { - exit(1); -} - -require_once INSTALLDIR.'/lib/widget.php'; +if (!defined('GNUSOCIAL')) { exit(1); } /** - * Base class for all actions - * - * This is the base class for all actions in the package. An action is - * more or less a "view" in an MVC framework. - * - * Actions are responsible for extracting and validating parameters; using - * model classes to read and write to the database; and doing ouput. + * Menu for public group of actions * * @category Output - * @package Laconica - * @author Evan Prodromou - * @author Sarven Capadisli + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ * - * @see HTMLOutputter + * @see Widget */ - -class PublicGroupNav extends Widget +class PublicGroupNav extends Menu { - var $action = null; - /** - * Construction - * - * @param Action $action current action, used for output - */ - - function __construct($action=null) - { - parent::__construct($action); - $this->action = $action; - } + var $actionName = null; /** * Show the menu * * @return void */ - function show() { - $this->action->elementStart('dl', array('id' => 'site_nav_local_views')); - $this->action->element('dt', null, _('Local views')); - $this->action->elementStart('dd', null); + $this->actionName = $this->action->trimmed('action'); + $this->action->elementStart('ul', array('class' => 'nav')); - $this->out->menuItem(common_local_url('public'), _('Public'), 'nav_timeline_public', - _('Public timeline'), $this->action == 'public'); + if (Event::handle('StartPublicGroupNav', array($this))) { + if (!common_config('singleuser', 'enabled')) { + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('public'), _m('MENU','Public'), + // TRANS: Menu item title in search group navigation panel. + _('Public timeline'), $this->actionName == 'public', 'nav_timeline_public'); + } - $this->out->menuItem(common_local_url('tag'), _('Recent tags'), 'nav_recent-tags', - _('Recent tags'), $this->action == 'tag'); + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('groups'), _m('MENU','Groups'), + // TRANS: Menu item title in search group navigation panel. + _('User groups'), $this->actionName == 'groups', 'nav_groups'); - if (count(common_config('nickname', 'featured')) > 0) { - $this->out->menuItem(common_local_url('featured'), _('Featured'), 'nav_featured', - _('Featured users'), $this->action == 'featured'); - } + if (!common_config('performance', 'high')) { + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('publictagcloud'), _m('MENU','Recent tags'), + // TRANS: Menu item title in search group navigation panel. + _('Recent tags'), $this->actionName == 'publictagcloud', 'nav_recent-tags'); + } - $this->out->menuItem(common_local_url('favorited'), _('Popular'), 'nav_timeline_favorited', - _("Popular notices"), $this->action == 'favorited'); + if (count(common_config('nickname', 'featured')) > 0) { + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('featured'), _m('MENU','Featured'), + // TRANS: Menu item title in search group navigation panel. + _('Featured users'), $this->actionName == 'featured', 'nav_featured'); + } + Event::handle('EndPublicGroupNav', array($this)); + } $this->action->elementEnd('ul'); - $this->action->elementEnd('dd'); - $this->action->elementEnd('dl') } }