1<?php
2/**
3 * Frooty Search
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     i-net software <tools@inetsoftware.de>
7 * @author     Gerry Weissbach <gweissbach@inetsoftware.de>
8 */
9
10// must be run within Dokuwiki
11if (!defined('DOKU_INC')) die();
12
13if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC.'lib/plugins/');
14
15class helper_plugin_frootysearch extends DokuWiki_Plugin { // DokuWiki_Helper_Plugin
16
17 /**
18   * Constructor loads some config settings
19   */
20  function helper_plugin_include(){
21  }
22
23  function getInfo(){
24    return array(
25      'author' => 'i-net software',
26      'email'  => 'tools@inetsoftware.de',
27      'date'   => '2009-03-23',
28      'name'   => 'frooty Search',
29      'desc'   => 'Transforms the DokuWiki search field into the WebKit search bar variant.',
30      'url'    => 'http://www.inetsoftware.de/other-products/dokuwiki-plugins/frootysearch',
31    );
32  }
33
34  function getMethods(){
35    return array();
36  }
37}
38
39//Setup VIM: ex: et ts=4 enc=utf-8 :
40