diff options
author | Jeffery To <jeffery.to@gmail.com> | 2009-08-09 19:12:59 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2009-08-10 13:57:39 +0800 |
commit | 14b46e2183f10359cc53d597913a878f53e23719 (patch) | |
tree | 5abe41f6f475be0a05168f8859542e1a1a3b3b21 /lib/action.php | |
parent | c1b19929f6234c4b9e30e16bae419c89c38c1169 (diff) |
Added configuration option to only allow OpenID logins.
If $config['site']['openidonly'] is set to true:
* the Login/Register pages will be removed from the navigation;
* directly accesses to the Login/Register pages will redirect to the
OpenID login page;
* most links to the Login/Register pages will link to the OpenID login
page instead.
The user will still need to set a password to access the API and RSS
feeds.
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/action.php b/lib/action.php index 326edf3a0..6da9adab5 100644 --- a/lib/action.php +++ b/lib/action.php @@ -436,12 +436,17 @@ class Action extends HTMLOutputter // lawsuit _('Logout'), _('Logout from the site'), false, 'nav_logout'); } else { - if (!common_config('site', 'closed')) { - $this->menuItem(common_local_url('register'), - _('Register'), _('Create an account'), false, 'nav_register'); + if (!common_config('site', 'openidonly')) { + if (!common_config('site', 'closed')) { + $this->menuItem(common_local_url('register'), + _('Register'), _('Create an account'), false, 'nav_register'); + } + $this->menuItem(common_local_url('login'), + _('Login'), _('Login to the site'), false, 'nav_login'); + } else { + $this->menuItem(common_local_url('openidlogin'), + _('OpenID'), _('Login with OpenID'), false, 'nav_openid'); } - $this->menuItem(common_local_url('login'), - _('Login'), _('Login to the site'), false, 'nav_login'); } $this->menuItem(common_local_url('doc', array('title' => 'help')), _('Help'), _('Help me!'), false, 'nav_help'); |