]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Pretty up the OpenID variant of the OAuth login form a bit; change the 'Allow' button...
authorBrion Vibber <brion@pobox.com>
Wed, 20 Oct 2010 23:14:32 +0000 (16:14 -0700)
committerBrion Vibber <brion@pobox.com>
Wed, 20 Oct 2010 23:14:32 +0000 (16:14 -0700)
actions/apioauthauthorize.php
plugins/OpenID/OpenIDPlugin.php

index b603dce4a1fabdf542c18e433dc1efb85939f605..135c146e5f0b634a586cb77ab3d39973e937befa 100644 (file)
@@ -347,8 +347,10 @@ class ApiOauthAuthorizeAction extends Action
         $this->elementEnd('li');
         $this->elementEnd('ul');
 
+        // quickie hack
+        $button = false;
         if (!common_logged_in()) {
-            if (Event::handle('StartOAuthLoginForm', array($this))) {
+            if (Event::handle('StartOAuthLoginForm', array($this, &$button))) {
                 $this->elementStart('fieldset');
                 // TRANS: Fieldset legend.
                 $this->element('legend', null, _m('LEGEND','Account'));
@@ -365,7 +367,7 @@ class ApiOauthAuthorizeAction extends Action
 
                 $this->elementEnd('fieldset');
             }
-            Event::handle('EndOAuthLoginForm', array($this));
+            Event::handle('EndOAuthLoginForm', array($this, &$button));
         }
 
         $this->element('input', array('id' => 'cancel_submit',
@@ -381,7 +383,7 @@ class ApiOauthAuthorizeAction extends Action
                                       'name' => 'allow',
                                       'type' => 'submit',
                                       // TRANS: Button text that when clicked will allow access to an account by an external application.
-                                      'value' => _m('BUTTON','Allow')));
+                                      'value' => $button ? $button : _m('BUTTON','Allow')));
 
         $this->elementEnd('fieldset');
         $this->elementEnd('form');
index 0fa50139d7218dacb53f2ec0a462e429aa1ab17c..c3dbd3068cec7fbb834ff2ab490af7a51b855349 100644 (file)
@@ -655,11 +655,13 @@ class OpenIDPlugin extends Plugin
         return true;
     }
 
-    function onStartOAuthLoginForm($action)
+    function onStartOAuthLoginForm($action, &$button)
     {
         if (common_config('site', 'openidonly')) {
             // Cancel the regular password login form, we won't need it.
             $this->showOAuthLoginForm($action);
+            // TRANS: button label for OAuth authorization page when needing OpenID authentication first.
+            $button = _m('BUTTON', 'Continue');
             return false;
         } else {
             // Leave the regular password login form in place.
@@ -674,6 +676,10 @@ class OpenIDPlugin extends Plugin
      */
     protected function showOAuthLoginForm($action)
     {
+        $action->elementStart('fieldset');
+        // TRANS: OpenID plugin logon form legend.
+        $action->element('legend', null, _m('OpenID login'));
+
         $action->elementStart('ul', 'form_data');
         $action->elementStart('li');
         $provider = common_config('openid', 'trusted_provider');
@@ -699,6 +705,8 @@ class OpenIDPlugin extends Plugin
         }
         $action->elementEnd('li');
         $action->elementEnd('ul');
+
+        $action->elementEnd('fieldset');
     }
 
     /**