]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Bookmark/bookmarkpopup.php
Remove inline reply forms on click-away if they have initial text as well as if empty...
[quix0rs-gnu-social.git] / plugins / Bookmark / 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
53     function showTitle()
54     {
55         // TRANS: Title for mini-posting window loaded from bookmarklet.
56         // TRANS: %s is the StatusNet site name.
57         $this->element('title', 
58                        null, sprintf(_('Bookmark on %s'), 
59                                      common_config('site', 'name')));
60     }
61
62     /**
63      * Show the header section of the page
64      *
65      * Shows a stub page and the bookmark form.
66      *
67      * @return void
68      */
69
70     function showHeader()
71     {
72         $this->elementStart('div', array('id' => 'header'));
73         $this->elementStart('address');
74         $this->element('a', array('class' => 'url',
75                                   'href' => common_local_url('public')),
76                          '');
77         $this->elementEnd('address');
78         if (common_logged_in()) {
79             $form = new BookmarkForm($this,
80                                      $this->title,
81                                      $this->url);
82             $form->show();
83         }
84         $this->elementEnd('div');
85     }
86
87     /**
88      * Hide the core section of the page
89      * 
90      * @return void
91      */
92
93     function showCore()
94     {
95     }
96
97     /**
98      * Hide the footer section of the page
99      *
100      * @return void
101      */
102
103     function showFooter()
104     {
105     }
106
107     function showScripts()
108     {
109         parent::showScripts();
110         $this->script(Plugin::staticPath('Bookmark', 'bookmarkpopup.js'));
111     }
112 }