2010-12-21 19:43:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Post a new bookmark in a popup window
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Bookmark
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2008-2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action for posting a new bookmark
|
|
|
|
*
|
|
|
|
* @category Bookmark
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
class BookmarkpopupAction extends NewbookmarkAction
|
|
|
|
{
|
2010-12-21 19:46:31 +00:00
|
|
|
/**
|
|
|
|
* Show the title section of the window
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-12-21 19:43:03 +00:00
|
|
|
|
|
|
|
function showTitle()
|
|
|
|
{
|
|
|
|
// TRANS: Title for mini-posting window loaded from bookmarklet.
|
|
|
|
// TRANS: %s is the StatusNet site name.
|
|
|
|
$this->element('title',
|
|
|
|
null, sprintf(_('Bookmark on %s'),
|
|
|
|
common_config('site', 'name')));
|
|
|
|
}
|
|
|
|
|
2010-12-21 19:46:31 +00:00
|
|
|
/**
|
|
|
|
* Show the header section of the page
|
|
|
|
*
|
|
|
|
* Shows a stub page and the bookmark form.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
2010-12-21 19:43:03 +00:00
|
|
|
function showHeader()
|
|
|
|
{
|
|
|
|
$this->elementStart('div', array('id' => 'header'));
|
|
|
|
$this->elementStart('address');
|
|
|
|
$this->element('a', array('class' => 'url',
|
|
|
|
'href' => common_local_url('public')),
|
|
|
|
'');
|
|
|
|
$this->elementEnd('address');
|
|
|
|
if (common_logged_in()) {
|
|
|
|
$form = new BookmarkForm($this,
|
2010-12-21 19:46:31 +00:00
|
|
|
$this->title,
|
|
|
|
$this->url);
|
2010-12-21 19:43:03 +00:00
|
|
|
$form->show();
|
|
|
|
}
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
|
|
|
|
2010-12-21 19:46:31 +00:00
|
|
|
/**
|
|
|
|
* Hide the core section of the page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
2010-12-21 19:43:03 +00:00
|
|
|
function showCore()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-12-21 19:46:31 +00:00
|
|
|
/**
|
|
|
|
* Hide the footer section of the page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
2010-12-21 19:43:03 +00:00
|
|
|
function showFooter()
|
|
|
|
{
|
|
|
|
}
|
2010-12-27 20:57:03 +00:00
|
|
|
|
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
$this->script(common_path('plugins/Bookmark/bookmarkpopup.js'));
|
|
|
|
}
|
2010-12-21 19:43:03 +00:00
|
|
|
}
|