X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshowapplication.php;h=d8ac293d404138719d69e6f79bfd0c93ac44d218;hb=d5d806863240379fe23e081c75097ddee53babec;hp=adfd17a06cd5fbfeb9de95d92a1451028fc3ccb8;hpb=8eac5d26387384a07c00fd0ffca1c10d5d7d82f2;p=quix0rs-gnu-social.git diff --git a/actions/showapplication.php b/actions/showapplication.php index adfd17a06c..d8ac293d40 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -71,19 +71,17 @@ class ShowApplicationAction extends Action $id = (int)$this->arg('id'); - $this->application = Oauth_application::staticGet($id); - $this->owner = User::staticGet($this->application->owner); + $this->application = Oauth_application::getKV($id); + $this->owner = User::getKV($this->application->owner); if (!common_logged_in()) { // TRANS: Client error displayed trying to display an OAuth application while not logged in. $this->clientError(_('You must be logged in to view an application.')); - return false; } if (empty($this->application)) { // TRANS: Client error displayed trying to display a non-existing OAuth application. $this->clientError(_('No such application.'), 404); - return false; } $cur = common_current_user(); @@ -91,7 +89,6 @@ class ShowApplicationAction extends Action if ($cur->id != $this->owner->id) { // TRANS: Client error displayed trying to display an OAuth application for which the logged in user is not the owner. $this->clientError(_('You are not the owner of this application.'), 401); - return false; } return true; @@ -115,7 +112,6 @@ class ShowApplicationAction extends Action if (!$token || $token != common_session_token()) { // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); - return; } if ($this->arg('reset')) { @@ -151,20 +147,20 @@ class ShowApplicationAction extends Action $consumer = $this->application->getConsumer(); - $this->elementStart('div', 'entity_profile vcard'); + $this->elementStart('div', 'entity_profile h-card'); // TRANS: Header on the OAuth application page. $this->element('h2', null, _('Application profile')); if (!empty($this->application->icon)) { $this->element('img', array('src' => $this->application->icon, - 'class' => 'photo logo entity_depiction')); + 'class' => 'u-photo logo entity_depiction')); } $this->element('a', array('href' => $this->application->source_url, - 'class' => 'url fn entity_fn'), + 'class' => 'u-url p-name entity_fn'), $this->application->name); $this->element('a', array('href' => $this->application->homepage, - 'class' => 'url entity_org'), + 'class' => 'u-url entity_org'), $this->application->organization); $this->element('div', @@ -174,7 +170,7 @@ class ShowApplicationAction extends Action $this->elementStart('div', 'entity_statistics'); $defaultAccess = ($this->application->access_type & Oauth_application::$writeAccess) ? 'read-write' : 'read-only'; - $profile = Profile::staticGet($this->application->owner); + $profile = Profile::getKV($this->application->owner); $appUsers = new Oauth_application_user(); $appUsers->application_id = $this->application->id; @@ -261,13 +257,13 @@ class ShowApplicationAction extends Action $this->element('dd', null, $consumer->consumer_secret); // TRANS: Field label on application page. $this->element('dt', null, _('Request token URL')); - $this->element('dd', null, common_local_url('ApiOauthRequestToken')); + $this->element('dd', null, common_local_url('ApiOAuthRequestToken')); // TRANS: Field label on application page. $this->element('dt', null, _('Access token URL')); - $this->element('dd', null, common_local_url('ApiOauthAccessToken')); + $this->element('dd', null, common_local_url('ApiOAuthAccessToken')); // TRANS: Field label on application page. $this->element('dt', null, _('Authorize URL')); - $this->element('dd', null, common_local_url('ApiOauthAuthorize')); + $this->element('dd', null, common_local_url('ApiOAuthAuthorize')); $this->elementEnd('dl'); $this->element('p', 'note',