1<?php
2
3/**
4 * GrenSladaWritezor Edit page.
5 *
6 * @license    GNU General Public License Version 2 (http://www.gnu.org/licenses/gpl.html)
7 * @author     Stanford Ng <stng@theculprit.com>
8 */
9
10if(!defined('DOKU_INC')) die();
11
12if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
13require_once(DOKU_PLUGIN.'action.php');
14
15
16class action_plugin_grensladawritezor extends DokuWiki_Action_Plugin {
17
18    function getInfo(){
19
20        return array(
21            'author' => 'Stanford Ng',
22            'email'  => 'stng@theculprit.com',
23            'date'   => '2007-03-24',
24            'name'   => 'GrenSladaWritezor',
25            'desc'   => 'Support awesome HTML edit in dokuwiki',
26            // 'url'    => 'TBD',
27            );
28    }
29
30    function register(&$controller) {
31        return false;
32    }
33}
34?>
35