summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-27 07:51:25 -0500
committerEvan Prodromou <evan@status.net>2010-01-27 16:34:17 -0500
commite4393ee6dbcfbcf660d898dd1eb5fe91c4e3b80d (patch)
treefb75b15267d1c0ad8711a1d1e84f96fdf7c2035a
parentb2b95bd21fa3995b77af5096da80d52bf6938c3b (diff)
Add the moved BlankAdPlugin
-rw-r--r--plugins/BlankAd/BlankAdPlugin.php45
1 files changed, 24 insertions, 21 deletions
diff --git a/plugins/BlankAd/BlankAdPlugin.php b/plugins/BlankAd/BlankAdPlugin.php
index bf3a225c0..5f46ddd48 100644
--- a/plugins/BlankAd/BlankAdPlugin.php
+++ b/plugins/BlankAd/BlankAdPlugin.php
@@ -35,14 +35,13 @@ if (!defined('STATUSNET')) {
* Plugin for testing ad layout
*
* This plugin uses the UAPPlugin framework to output ad content. However,
- * its ad content is just paragraphs with defined background colors. It's
- * mostly useful for debugging theme layout.
+ * its ad content is just images with one red pixel stretched to the
+ * right size. It's mostly useful for debugging theme layout.
*
* To use this plugin, set the parameter for the ad size you want to use
- * to the background you want to use. For example, to make a leaderboard
- * that's red:
+ * to true (or anything non-null). For example, to make a leaderboard:
*
- * addPlugin('BlankAd', array('leaderboard' => 'red'));
+ * addPlugin('BlankAd', array('leaderboard' => true));
*
* @category Plugin
* @package StatusNet
@@ -65,10 +64,11 @@ class BlankAdPlugin extends UAPPlugin
protected function showMediumRectangle($action)
{
- $style = 'width: 300px; height: 250px; background-color: ' .
- $this->mediumRectangle;
-
- $action->element('p', array('style' => $style), '');
+ $action->element('img',
+ array('width' => 300,
+ 'height' => 250,
+ 'src' => common_path('plugins/BlankAd/redpixel.png')),
+ '');
}
/**
@@ -81,10 +81,11 @@ class BlankAdPlugin extends UAPPlugin
protected function showRectangle($action)
{
- $style = 'width: 180px; height: 150px; background-color: ' .
- $this->rectangle;
-
- $action->element('p', array('style' => $style), '');
+ $action->element('img',
+ array('width' => 180,
+ 'height' => 50,
+ 'src' => common_path('plugins/BlankAd/redpixel.png')),
+ '');
}
/**
@@ -97,10 +98,11 @@ class BlankAdPlugin extends UAPPlugin
protected function showWideSkyscraper($action)
{
- $style = 'width: 160px; height: 600px; background-color: ' .
- $this->wideSkyscraper;
-
- $action->element('p', array('style' => $style), '');
+ $action->element('img',
+ array('width' => 160,
+ 'height' => 600,
+ 'src' => common_path('plugins/BlankAd/redpixel.png')),
+ '');
}
/**
@@ -113,9 +115,10 @@ class BlankAdPlugin extends UAPPlugin
protected function showLeaderboard($action)
{
- $style = 'width: 728px; height: 90px; background-color: ' .
- $this->leaderboard;
-
- $action->element('p', array('style' => $style), '');
+ $action->element('img',
+ array('width' => 728,
+ 'height' => 90,
+ 'src' => common_path('plugins/BlankAd/redpixel.png')),
+ '');
}
} \ No newline at end of file