2010-01-27 12:34:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Plugin for testing ad layout
|
|
|
|
*
|
|
|
|
* 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 Ads
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin for testing ad layout
|
|
|
|
*
|
|
|
|
* This plugin uses the UAPPlugin framework to output ad content. However,
|
2010-01-27 12:51:25 +00:00
|
|
|
* its ad content is just images with one red pixel stretched to the
|
|
|
|
* right size. It's mostly useful for debugging theme layout.
|
2010-01-27 12:34:31 +00:00
|
|
|
*
|
|
|
|
* To use this plugin, set the parameter for the ad size you want to use
|
2010-01-27 12:51:25 +00:00
|
|
|
* to true (or anything non-null). For example, to make a leaderboard:
|
2010-01-27 12:34:31 +00:00
|
|
|
*
|
2010-01-27 12:51:25 +00:00
|
|
|
* addPlugin('BlankAd', array('leaderboard' => true));
|
2010-01-27 12:34:31 +00:00
|
|
|
*
|
|
|
|
* @category Plugin
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*
|
|
|
|
* @seeAlso Location
|
|
|
|
*/
|
|
|
|
class BlankAdPlugin extends UAPPlugin
|
|
|
|
{
|
2019-06-03 01:56:52 +01:00
|
|
|
const PLUGIN_VERSION = '2.0.0';
|
2010-01-27 12:34:31 +00:00
|
|
|
/**
|
|
|
|
* Show a medium rectangle 'ad'
|
|
|
|
*
|
|
|
|
* @param Action $action Action being shown
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function showMediumRectangle($action)
|
|
|
|
{
|
2010-01-27 12:51:25 +00:00
|
|
|
$action->element('img',
|
|
|
|
array('width' => 300,
|
|
|
|
'height' => 250,
|
2011-02-03 15:46:56 +00:00
|
|
|
'src' => $this->path('redpixel.png')),
|
2010-01-27 12:51:25 +00:00
|
|
|
'');
|
2010-01-27 12:34:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a rectangle 'ad'
|
|
|
|
*
|
|
|
|
* @param Action $action Action being shown
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function showRectangle($action)
|
|
|
|
{
|
2010-01-27 12:51:25 +00:00
|
|
|
$action->element('img',
|
|
|
|
array('width' => 180,
|
2010-01-27 13:13:05 +00:00
|
|
|
'height' => 150,
|
2011-02-03 15:46:56 +00:00
|
|
|
'src' => $this->path('redpixel.png')),
|
2010-01-27 12:51:25 +00:00
|
|
|
'');
|
2010-01-27 12:34:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a wide skyscraper ad
|
|
|
|
*
|
|
|
|
* @param Action $action Action being shown
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function showWideSkyscraper($action)
|
|
|
|
{
|
2010-01-27 12:51:25 +00:00
|
|
|
$action->element('img',
|
|
|
|
array('width' => 160,
|
|
|
|
'height' => 600,
|
2011-02-03 15:46:56 +00:00
|
|
|
'src' => $this->path('redpixel.png')),
|
2010-01-27 12:51:25 +00:00
|
|
|
'');
|
2010-01-27 12:34:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a leaderboard ad
|
|
|
|
*
|
|
|
|
* @param Action $action Action being shown
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function showLeaderboard($action)
|
|
|
|
{
|
2010-01-27 12:51:25 +00:00
|
|
|
$action->element('img',
|
|
|
|
array('width' => 728,
|
|
|
|
'height' => 90,
|
2011-02-03 15:46:56 +00:00
|
|
|
'src' => $this->path('redpixel.png')),
|
2010-01-27 12:51:25 +00:00
|
|
|
'');
|
2010-01-27 12:34:31 +00:00
|
|
|
}
|
2010-09-20 18:36:09 +01:00
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
public function onPluginVersion(array &$versions): bool
|
2010-09-20 18:36:09 +01:00
|
|
|
{
|
2010-09-20 18:37:43 +01:00
|
|
|
$versions[] = array('name' => 'BlankAd',
|
2019-06-03 01:56:52 +01:00
|
|
|
'version' => self::PLUGIN_VERSION,
|
2010-09-20 18:36:09 +01:00
|
|
|
'author' => 'Evan Prodromou',
|
2016-01-22 16:38:42 +00:00
|
|
|
'homepage' => 'https://git.gnu.io/gnu/gnu-social/tree/master/plugins/BlankAdPlugin',
|
2010-09-20 18:36:09 +01:00
|
|
|
'rawdescription' =>
|
2011-04-06 15:36:35 +01:00
|
|
|
// TRANS: Plugin description.
|
2010-09-20 18:37:43 +01:00
|
|
|
_m('Plugin for testing ad layout.'));
|
2010-09-20 18:36:09 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|