X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FBookmark%2Fnewbookmark.php;h=d60d3d4670caab9b70be04257e7f8fa96abea0d7;hb=0b81532cbc7b957c65b58d38d04e09ff7eda2f36;hp=ebfdb6cb95c1818209a1574eb477fb3328c8cc2a;hpb=325cb4833db7e3fd396720f12a27b880b63f4173;p=quix0rs-gnu-social.git diff --git a/plugins/Bookmark/newbookmark.php b/plugins/Bookmark/newbookmark.php index ebfdb6cb95..d60d3d4670 100644 --- a/plugins/Bookmark/newbookmark.php +++ b/plugins/Bookmark/newbookmark.php @@ -4,7 +4,7 @@ * Copyright (C) 2010, StatusNet, Inc. * * Add a new bookmark - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -43,7 +43,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class NewbookmarkAction extends Action { protected $user = null; @@ -59,10 +58,10 @@ class NewbookmarkAction extends Action * * @return string Action title */ - function title() { - return _('New bookmark'); + // TRANS: Title for action to create a new bookmark. + return _m('New bookmark'); } /** @@ -72,15 +71,19 @@ class NewbookmarkAction extends Action * * @return boolean true */ - function prepare($argarray) { parent::prepare($argarray); + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } + $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_("Must be logged in to post a bookmark."), + // TRANS: Client exception thrown when trying to create a new bookmark while not logged in. + throw new ClientException(_m('Must be logged in to post a bookmark.'), 403); } @@ -103,7 +106,6 @@ class NewbookmarkAction extends Action * * @return void */ - function handle($argarray=null) { parent::handle($argarray); @@ -122,32 +124,38 @@ class NewbookmarkAction extends Action * * @return void */ - function newBookmark() { - if ($this->boolean('ajax')) { - StatusNet::setApi(true); - } try { if (empty($this->title)) { - throw new ClientException(_('Bookmark must have a title.')); + // TRANS: Client exception thrown when trying to create a new bookmark without a title. + throw new ClientException(_m('Bookmark must have a title.')); } if (empty($this->url)) { - throw new ClientException(_('Bookmark must have an URL.')); + // TRANS: Client exception thrown when trying to create a new bookmark without a URL. + throw new ClientException(_m('Bookmark must have an URL.')); } + $options = array(); + + ToSelector::fillOptions($this, $options); $saved = Bookmark::saveNew($this->user->getProfile(), - $this->title, - $this->url, - $this->tags, - $this->description); + $this->title, + $this->url, + $this->tags, + $this->description, + $options); } catch (ClientException $ce) { - $this->error = $ce->getMessage(); - $this->showPage(); - return; + if ($this->boolean('ajax')) { + throw $ce; + } else { + $this->error = $ce->getMessage(); + $this->showPage(); + return; + } } if ($this->boolean('ajax')) { @@ -155,8 +163,8 @@ class NewbookmarkAction extends Action $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); $this->elementStart('head'); - // TRANS: Page title after sending a notice. - $this->element('title', null, _('Notice posted')); + // TRANS: Page title after posting a bookmark. + $this->element('title', null, _m('Bookmark posted')); $this->elementEnd('head'); $this->elementStart('body'); $this->showNotice($saved); @@ -188,7 +196,6 @@ class NewbookmarkAction extends Action * * @return void */ - function showContent() { if (!empty($this->error)) { @@ -215,7 +222,6 @@ class NewbookmarkAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { if ($_SERVER['REQUEST_METHOD'] == 'GET' || @@ -226,4 +232,3 @@ class NewbookmarkAction extends Action } } } - \ No newline at end of file