add missing diogenes.text.inc.php
[diogenes.git] / plugins / LinksMagic.php
index 7301c0f..4ba04bd 100644 (file)
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-require_once 'Plugin/Filter.php';
+require_once 'Plugin/Skel/Filter.php';
 require_once 'diogenes/diogenes.hermes.inc.php';
 
 /** The MailForm plugin allows you to insert a form to send
  *  an e-mail to a fixed recipient.
 */  
-class LinksMagic extends Diogenes_Plugin_Filter
+class LinksMagic extends Diogenes_Plugin_Skel_Filter
 {  
   /** Plugin name */
   var $name = "LinksMagic";
   
   /** Plugin description */
   var $description = "This plugin allows you to mark external and secure (HTTPS) links in your pages.";
-  
-  /** Plugin parameters */
-  var $params = array('main' => 1, 'sidebar' => 1);
 
+  /** Constructor.
+   */
+  function LinksMagic()
+  {
+    $this->declareParam('main', 1);
+    $this->declareParam('sidebar', 1);
+  }
+
+  
   /** Apply filtering to the input and return an output.
    *
    * @param $input
@@ -43,12 +50,12 @@ class LinksMagic extends Diogenes_Plugin_Filter
   {
     global $page;
  
-    if ($this->params['sidebar'])
+    if ($this->getParamValue('sidebar'))
     {
       array_unshift($page->head, '<link rel="stylesheet" href="'.$page->url('links-sidebar.css').'" type="text/css" />');
     }
 
-    if ($this->params['main'])
+    if ($this->getParamValue('main'))
     {
       array_unshift($page->head, '<link rel="stylesheet" href="'.$page->url('links-main.css').'" type="text/css" />');
     }