setupLocale(); } /** * return some info */ function getInfo() { return array( 'author' => 'Etienne M.', 'email' => 'emauvaisfr@yahoo.fr', 'date' => @file_get_contents(DOKU_PLUGIN.'listeabo/VERSION'), 'name' => 'Abonnements / Subscriptions', 'desc' => 'Affiche tous les abonnements actifs / Displays all active subscriptions', 'url' => 'http://www.dokuwiki.org/fr:plugin:listeabo', ); } /** * return prompt for admin menu */ function getMenuText($language) { if (!$this->disabled) return parent::getMenuText($language); return ''; } /** * return sort order for position in admin menu */ function getMenuSort() { return 5000; } /** * handle user request */ function handle() { } /** * output appropriate html */ function html() { //Bourrin... Voir plutot avec la fonction handle(), un jour... print ''; } } // vim:ts=4:sw=4:et:enc=utf-8: