]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/uapplugin.php
CSS ids and classes fixed in UAPPlugin
[quix0rs-gnu-social.git] / lib / uapplugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * UAP (Universal Ad Package) plugin
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  Action
23  * @package   StatusNet
24  * @author    Sarven Capadisli <csarven@status.net>
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * Abstract superclass for advertising plugins
37  *
38  * Plugins for showing ads should derive from this plugin.
39  *
40  * Outputs the following ad types (based on UAP):
41  *
42  * Medium Rectangle 300x250
43  * Rectangle        180x150
44  * Leaderboard      728x90
45  * Wide Skyscraper  160x600
46  *
47  * @category Plugin
48  * @package  StatusNet
49  * @author   Sarven Capadisli <csarven@status.net>
50  * @author   Evan Prodromou <evan@status.net>
51  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
52  * @link     http://status.net/
53  */
54
55 abstract class UAPPlugin extends Plugin
56 {
57     public $MediumRectangle = null;
58     public $Rectangle       = null;
59     public $Leaderboard     = null;
60     public $WideSkyscraper  = null;
61
62     /**
63      * Output our dedicated stylesheet
64      *
65      * @param Action $action Action being shown
66      *
67      * @return boolean hook flag
68      */
69
70     function onEndShowStatusNetStyles($action)
71     {
72         // XXX: allow override by theme
73         $action->cssLink('css/uap.css', 'base', 'screen, projection, tv');
74         return true;
75     }
76
77     /**
78      * Add a medium rectangle ad at the beginning of sidebar
79      *
80      * @param Action $action Action being shown
81      *
82      * @return boolean hook flag
83      */
84
85     function onStartShowAside($action)
86     {
87         if (!is_null($this->mediumRectangle)) {
88
89             $action->elementStart('div',
90                                   array('id' => 'ad_medium-rectangle',
91                                         'class' => 'ad'));
92
93             $this->showMediumRectangle($action);
94
95             $action->elementEnd('div');
96         }
97
98         return true;
99     }
100
101     /**
102      * Add a leaderboard and/or rectangle in the header
103      *
104      * @param Action $action Action being shown
105      *
106      * @return boolean hook flag
107      */
108
109     function onStartShowHeader($action)
110     {
111         if (!is_null($this->leaderboard)) {
112             $action->elementStart('div',
113                                   array('id' => 'ad_leaderboard',
114                                         'class' => 'ad'));
115             $this->showLeaderboard($action);
116             $action->elementEnd('div');
117         }
118
119         if (!is_null($this->rectangle)) {
120             $action->elementStart('div',
121                                   array('id' => 'ad_rectangle',
122                                         'class' => 'ad'));
123             $this->showRectangle($action);
124             $action->elementEnd('div');
125         }
126
127         return true;
128     }
129
130     /**
131      * Add a wide skyscraper after the aside
132      *
133      * @param Action $action Action being shown
134      *
135      * @return boolean hook flag
136      */
137
138     function onEndShowAside($action)
139     {
140         if (!is_null($this->wideSkyscraper)) {
141             $action->elementStart('div',
142                                   array('id' => 'ad_wide-skyscraper',
143                                         'class' => 'ad'));
144
145             $this->showWideSkyscraper($action);
146
147             $action->elementEnd('div');
148         }
149         return true;
150     }
151
152     /**
153      * Show a medium rectangle ad
154      *
155      * @param Action $action Action being shown
156      *
157      * @return void
158      */
159
160     abstract protected function showMediumRectangle($action);
161
162     /**
163      * Show a rectangle ad
164      *
165      * @param Action $action Action being shown
166      *
167      * @return void
168      */
169
170     abstract protected function showRectangle($action);
171
172     /**
173      * Show a wide skyscraper ad
174      *
175      * @param Action $action Action being shown
176      *
177      * @return void
178      */
179
180     abstract protected function showWideSkyscraper($action);
181
182     /**
183      * Show a leaderboard ad
184      *
185      * @param Action $action Action being shown
186      *
187      * @return void
188      */
189
190     abstract protected function showLeaderboard($action);
191 }