X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fsubedit.php;h=4dc3e855aa3b0f4dd3d804149c8e756b2476ea10;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=cf6589e50420baafb6cf2b5fa50711109e6bb1c9;hpb=a08c76a4342cfb4b3d772f6880ba0b8f3153b246;p=quix0rs-gnu-social.git diff --git a/actions/subedit.php b/actions/subedit.php index cf6589e504..4dc3e855aa 100644 --- a/actions/subedit.php +++ b/actions/subedit.php @@ -19,45 +19,46 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +// @todo FIXME: Documentation needed. class SubeditAction extends Action { var $profile = null; - function prepare($args) + function prepare(array $args=array()) { parent::prepare($args); if (!common_logged_in()) { + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); - return false; } $token = $this->trimmed('token'); 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. '. 'Try again, please.')); - return false; } $id = $this->trimmed('profile'); if (!$id) { + // TRANS: Client error displayed trying a change a subscription without providing a profile. $this->clientError(_('No profile specified.')); - return false; } - $this->profile = Profile::staticGet('id', $id); + $this->profile = Profile::getKV('id', $id); if (!$this->profile) { + // TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. $this->clientError(_('No profile with that ID.')); - return false; } return true; } - function handle($args) + function handle(array $args=array()) { parent::handle($args); if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -67,8 +68,8 @@ class SubeditAction extends Action 'subscribed' => $this->profile->id)); if (!$sub) { + // TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. $this->clientError(_('You are not subscribed to that profile.')); - return false; } $orig = clone($sub); @@ -80,13 +81,11 @@ class SubeditAction extends Action if (!$result) { common_log_db_error($sub, 'UPDATE', __FILE__); + // TRANS: Server error displayed when updating a subscription fails with a database error. $this->serverError(_('Could not save subscription.')); - return false; } - common_redirect(common_local_url('subscriptions', - array('nickname' => $cur->nickname)), - 303); + common_redirect(common_local_url('subscriptions', array('nickname' => $cur->nickname)), 303); } } }