]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Bookmark/actions/bookmarkpopup.php
Merge branch 'master' of gitorious.org:social/mainline
[quix0rs-gnu-social.git] / plugins / Bookmark / actions / bookmarkpopup.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Post a new bookmark in a popup window
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Bookmark
23  * @package   StatusNet
24  * @author    Sarven Capadisli <csarven@status.net>
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2008-2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 /**
36  * Action for posting a new bookmark
37  *
38  * @category Bookmark
39  * @package  StatusNet
40  * @author   Sarven Capadisli <csarven@status.net>
41  * @author   Evan Prodromou <evan@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
43  * @link     http://status.net/
44  */
45 class BookmarkpopupAction extends NewbookmarkAction
46 {
47     /**
48      * Show the title section of the window
49      *
50      * @return void
51      */
52     function showTitle()
53     {
54         $this->element('title',
55                        // TRANS: Title for mini-posting window loaded from bookmarklet.
56                        // TRANS: %s is the StatusNet site name.
57                        null, sprintf(_m('Bookmark on %s'),
58                                      common_config('site', 'name')));
59     }
60
61     /**
62      * Show the header section of the page
63      *
64      * Shows a stub page and the bookmark form.
65      *
66      * @return void
67      */
68     function showHeader()
69     {
70         $this->elementStart('div', array('id' => 'header'));
71         $this->elementStart('address');
72         $this->element('a', array('class' => 'url',
73                                   'href' => common_local_url('top')),
74                          '');
75         $this->elementEnd('address');
76         if (common_logged_in()) {
77             $form = new BookmarkForm($this,
78                                      $this->title,
79                                      $this->url);
80             $form->show();
81         }
82         $this->elementEnd('div');
83     }
84
85     /**
86      * Hide the core section of the page
87      *
88      * @return void
89      */
90     function showCore()
91     {
92     }
93
94     /**
95      * Hide the footer section of the page
96      *
97      * @return void
98      */
99     function showFooter()
100     {
101     }
102
103     function showScripts()
104     {
105         parent::showScripts();
106         $this->script(Plugin::staticPath('Bookmark', 'bookmarkpopup.js'));
107     }
108 }