X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Flogingroupnav.php;h=a309e7320fda35e13c24a605bec13719fd320b0c;hb=59a0b2a82da418f688faf182407146d9e7a7af7a;hp=c92707fe8af56b1fe462f564c552f04c5c9da1f4;hpb=c8b8f07af14ad2ce9d0c0267962dd3bbf6473a4b;p=quix0rs-gnu-social.git diff --git a/lib/logingroupnav.php b/lib/logingroupnav.php index c92707fe8a..a309e7320f 100644 --- a/lib/logingroupnav.php +++ b/lib/logingroupnav.php @@ -21,13 +21,13 @@ * * @category Menu * @package StatusNet - * @author Evan Prodromou + * @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); } @@ -38,13 +38,12 @@ require_once INSTALLDIR.'/lib/widget.php'; * * @category Output * @package StatusNet - * @author Evan Prodromou + * @author Evan Prodromou * @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 Widget */ - class LoginGroupNav extends Widget { var $action = null; @@ -54,7 +53,6 @@ class LoginGroupNav extends Widget * * @param Action $action current action, used for output */ - function __construct($action=null) { parent::__construct($action); @@ -66,33 +64,31 @@ class LoginGroupNav extends Widget * * @return void */ - function show() { - // action => array('prompt', 'title') - $menu = array(); + $action_name = $this->action->trimmed('action'); + + $this->action->elementStart('ul', array('class' => 'nav')); + + if (Event::handle('StartLoginGroupNav', array($this->action))) { + + $this->action->menuItem(common_local_url('login'), + // TRANS: Menu item for logging in to the StatusNet site. + _m('MENU','Login'), + // TRANS: Title for menu item for logging in to the StatusNet site. + _('Login with a username and password'), + $action_name === 'login'); - if (!common_config('site','openidonly')) { - $menu['login'] = array(_('Login'), - _('Login with a username and password')); if (!(common_config('site','closed') || common_config('site','inviteonly'))) { - $menu['register'] = array(_('Register'), - _('Sign up for a new account')); + $this->action->menuItem(common_local_url('register'), + // TRANS: Menu item for registering with the StatusNet site. + _m('MENU','Register'), + // TRANS: Title for menu item for registering with the StatusNet site. + _('Sign up for a new account'), + $action_name === 'register'); } - } - if (common_config('openid', 'enabled')) { - $menu['openidlogin'] = array(_('OpenID'), - _('Login or register with OpenID')); - } - - $action_name = $this->action->trimmed('action'); - $this->action->elementStart('ul', array('class' => 'nav')); - foreach ($menu as $menuaction => $menudesc) { - $this->action->menuItem(common_local_url($menuaction), - $menudesc[0], - $menudesc[1], - $action_name === $menuaction); + Event::handle('EndLoginGroupNav', array($this->action)); } $this->action->elementEnd('ul');