X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fpublicgroupnav.php;h=79190a11f05edb4c379e3419b1dc3dbffeb7b43d;hb=db443e9374ebfe7f098ef1b236cac6e8f4b82fbf;hp=1e5ed73596da1c55b7db917bd74954d0d2d54966;hpb=5b61f459d6486c523d927839bbc078a49e51d2ab;p=quix0rs-gnu-social.git diff --git a/lib/publicgroupnav.php b/lib/publicgroupnav.php index 1e5ed73596..79190a11f0 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')) { +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/lib/widget.php'; /** - * 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'), - _('Public timeline'), $this->action == 'public', 'nav_timeline_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'), - _('Recent tags'), $this->action == 'tag', 'nav_recent-tags'); + // 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'), - _('Featured users'), $this->action == 'featured', 'nav_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'); + } + + 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'); + } - $this->out->menuItem(common_local_url('favorited'), _('Popular'), - _("Popular notices"), $this->action == 'favorited', 'nav_timeline_favorited'); + if (!common_config('singleuser', 'enabled')) { + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('favorited'), _m('MENU','Popular'), + // TRANS: Menu item title in search group navigation panel. + _('Popular notices'), $this->actionName == 'favorited', 'nav_timeline_favorited'); + } + Event::handle('EndPublicGroupNav', array($this)); + } $this->action->elementEnd('ul'); - $this->action->elementEnd('dd'); - $this->action->elementEnd('dl'); } }