X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2FHtmlHead.php;h=8e53ffaf9d6e51882e18f4bc3b6b2877cec9492a;hb=b2c16bf312cd037e252e568974a5523407e42099;hp=a1be65c6137133d1eea7d518548c3659f2b0457f;hpb=7bece6dda8f9092028ce2ecd469edc29338f3828;p=diogenes.git diff --git a/plugins/HtmlHead.php b/plugins/HtmlHead.php index a1be65c..8e53ffa 100644 --- a/plugins/HtmlHead.php +++ b/plugins/HtmlHead.php @@ -30,9 +30,15 @@ class HtmlHead extends Diogenes_Plugin_Filter /** Plugin description */ var $description = "This plugin allows you to add entries to a page's <head> block."; - - /** Plugin parameters */ - var $params = array('contents' => ''); + + + /** Constructor. + */ + function HtmlHead() + { + $this->declareParam('contents', ''); + } + /** Apply filtering to the input and return an output. * @@ -41,10 +47,10 @@ class HtmlHead extends Diogenes_Plugin_Filter function filter($input) { global $page; - - if ($this->params['contents']) + $contents = $this->getParamValue('content'); + if (!empty($contents)) { - array_push($page->head, $this->params['contents']); + array_push($page->head, $contents); } return $input;