X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fpublicgroupnav.php;h=dabba5f0138b7b4012357739db0314d47261eed4;hb=8a0f67b773c0c3fe7c3642730fdb184f288ba45d;hp=d21d0a458f2cfa95f119413b07a644ed3f66b265;hpb=0093b035c12bf21c88f57e4f0931b0abce214f43;p=quix0rs-gnu-social.git diff --git a/lib/publicgroupnav.php b/lib/publicgroupnav.php index d21d0a458f..dabba5f013 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 +class PublicGroupNav extends Menu { - var $action = null; - - function __construct($action=null) - { - $this->action = $action; - } - + /** + * Show the menu + * + * @return void + */ function show() { - $this->action->elementStart('ul', array('id' => 'nav_views')); + $action_name = $this->action->trimmed('action'); - common_menu_item(common_local_url('public'), _('Public'), - _('Public timeline'), $this->action == 'public'); + $this->action->elementStart('ul', array('class' => 'nav')); - common_menu_item(common_local_url('tag'), _('Recent tags'), - _('Recent tags'), $this->action == 'tag'); + if (Event::handle('StartPublicGroupNav', array($this))) { + // 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'), $action_name == 'public', 'nav_timeline_public'); - if (count(common_config('nickname', 'featured')) > 0) { - common_menu_item(common_local_url('featured'), _('Featured'), - _('Featured users'), $this->action == 'featured'); - } + // 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'), $action_name == 'groups', 'nav_groups'); - common_menu_item(common_local_url('favorited'), _('Popular'), - _("Popular notices"), $this->action == 'favorited'); + // 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'), $action_name == 'publictagcloud', 'nav_recent-tags'); - common_element_end('ul'); + 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'), $action_name == 'featured', 'nav_featured'); + } + + // 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'), $action_name == 'favorited', 'nav_timeline_favorited'); + + Event::handle('EndPublicGroupNav', array($this)); + } + $this->action->elementEnd('ul'); } }