3 * StatusNet, the distributed open-source microblogging tool
5 * Plugin for testing ad layout
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.
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.
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/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2010 StatusNet Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET')) {
35 * Plugin for testing ad layout
37 * This plugin uses the UAPPlugin framework to output ad content. However,
38 * its ad content is just images with one red pixel stretched to the
39 * right size. It's mostly useful for debugging theme layout.
41 * To use this plugin, set the parameter for the ad size you want to use
42 * to true (or anything non-null). For example, to make a leaderboard:
44 * addPlugin('BlankAd', array('leaderboard' => true));
48 * @author Evan Prodromou <evan@status.net>
49 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
50 * @link http://status.net/
54 class BlankAdPlugin extends UAPPlugin
57 * Show a medium rectangle 'ad'
59 * @param Action $action Action being shown
63 protected function showMediumRectangle($action)
65 $action->element('img',
68 'src' => $this->path('redpixel.png')),
73 * Show a rectangle 'ad'
75 * @param Action $action Action being shown
79 protected function showRectangle($action)
81 $action->element('img',
84 'src' => $this->path('redpixel.png')),
89 * Show a wide skyscraper ad
91 * @param Action $action Action being shown
95 protected function showWideSkyscraper($action)
97 $action->element('img',
100 'src' => $this->path('redpixel.png')),
105 * Show a leaderboard ad
107 * @param Action $action Action being shown
111 protected function showLeaderboard($action)
113 $action->element('img',
114 array('width' => 728,
116 'src' => $this->path('redpixel.png')),
120 function onPluginVersion(&$versions)
122 $versions[] = array('name' => 'BlankAd',
123 'version' => STATUSNET_VERSION,
124 'author' => 'Evan Prodromou',
125 'homepage' => 'http://status.net/wiki/Plugin:BlankAdPlugin',
127 // TRANS: Plugin description.
128 _m('Plugin for testing ad layout.'));