setupLocale(); } /** * return some info */ function getInfo() { return array( 'author' => 'Gina Häußge, Michael Klier', 'email' => 'dokuwiki@chimeric.de', 'date' => @file_get_contents(DOKU_PLUGIN.'tag/VERSION'), 'name' => 'Tagindex Manager', 'desc' => 'Allows to rebuild the tag index', 'url' => 'http://www.dokuwiki.org/plugin:tag', ); } /** * return sort order for position in admin menu */ function getMenuSort() { return 42; } /** * handle user request */ function handle() { } /** * output appropriate html */ function html() { print $this->plugin_locale_xhtml('intro'); print '
'; print ''; print '
'; print ''; print '
'; } } // vim:ts=4:sw=4:et:enc=utf-8: