<?php
/**
 * Frooty Search
 * 
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     i-net software <tools@inetsoftware.de>
 * @author     Gerry Weissbach <gweissbach@inetsoftware.de>
 */

// must be run within Dokuwiki
if (!defined('DOKU_INC')) die();

if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC.'lib/plugins/');

class helper_plugin_frootysearch extends DokuWiki_Plugin { // DokuWiki_Helper_Plugin

 /**
   * Constructor loads some config settings
   */
  function helper_plugin_include(){
  }
  
  function getInfo(){
    return array(
      'author' => 'i-net software',
      'email'  => 'tools@inetsoftware.de',
      'date'   => '2009-03-23',
      'name'   => 'frooty Search',
      'desc'   => 'Transforms the DokuWiki search field into the WebKit search bar variant.',
      'url'    => 'http://www.inetsoftware.de/other-products/dokuwiki-plugins/frootysearch',
    );
  }
  
  function getMethods(){
    return array();
  }
}
  
//Setup VIM: ex: et ts=4 enc=utf-8 :
