diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-20 23:13:02 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-20 23:13:02 -0500 |
commit | 4b9df58c90e25ea79aeec64c6e96f828fe06d7df (patch) | |
tree | ac237014d015535d07babba42d40d86608de0ec5 /actions/microsummary.php | |
parent | bd056218f9a595184ac7bcac0c1dc6a8981d7af2 (diff) | |
parent | 65bfda33b8464caf14ce268c9bea2e7eceb27fe5 (diff) |
Merge branch 'master' into groups
Conflicts:
.gitignore
Diffstat (limited to 'actions/microsummary.php')
-rw-r--r-- | actions/microsummary.php | 42 |
1 files changed, 35 insertions, 7 deletions
diff --git a/actions/microsummary.php b/actions/microsummary.php index 13ddc4e3e..196dd5de8 100644 --- a/actions/microsummary.php +++ b/actions/microsummary.php @@ -1,5 +1,16 @@ <?php -/* +/** + * Microsummary action, see https://wiki.mozilla.org/Microsummaries + * + * PHP version 5 + * + * @category Action + * @package Laconica + * @author Evan Prodromou <evan@controlyourself.ca> + * @author Robin Millette <millette@controlyourself.ca> + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://laconi.ca/ + * * Laconica - a distributed open-source microblogging tool * Copyright (C) 2008, Controlez-Vous, Inc. * @@ -17,28 +28,45 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -if (!defined('LACONICA')) { exit(1); } +if (!defined('LACONICA')) { + exit(1); +} +/** + * Microsummary action class. + * + * @category Action + * @package Laconica + * @author Evan Prodromou <evan@controlyourself.ca> + * @author Robin Millette <millette@controlyourself.ca> + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://laconi.ca/ + */ class MicrosummaryAction extends Action { - + /** + * Class handler. + * + * @param array $args array of arguments + * + * @return nothing + */ function handle($args) { - parent::handle($args); $nickname = common_canonical_nickname($this->arg('nickname')); - $user = User::staticGet('nickname', $nickname); + $user = User::staticGet('nickname', $nickname); if (!$user) { - $this->client_error(_('No such user'), 404); + $this->clientError(_('No such user'), 404); return; } $notice = $user->getCurrentNotice(); if (!$notice) { - $this->client_error(_('No current status'), 404); + $this->clientError(_('No current status'), 404); } header('Content-Type: text/plain'); |