xref: /plugin/struct/_test/mock/action_plugin_struct_edit.php (revision 0c17c53a2f289689cfbc68eabb053b9d0e5395ea)
1*0c17c53aSMichael Große<?php
2*0c17c53aSMichael Große
3*0c17c53aSMichael Großenamespace dokuwiki\plugin\struct\test\mock;
4*0c17c53aSMichael Große
5*0c17c53aSMichael Großeclass action_plugin_struct_edit extends \action_plugin_struct_edit {
6*0c17c53aSMichael Große
7*0c17c53aSMichael Große    /**
8*0c17c53aSMichael Große     * Create the form to edit schemadata
9*0c17c53aSMichael Große     *
10*0c17c53aSMichael Große     * @param string $tablename
11*0c17c53aSMichael Große     * @return string The HTML for this schema's form
12*0c17c53aSMichael Große     */
13*0c17c53aSMichael Große    public function createForm($tablename) {
14*0c17c53aSMichael Große        return parent::createForm($tablename);
15*0c17c53aSMichael Große    }
16*0c17c53aSMichael Große
17*0c17c53aSMichael Große    public static function getVAR() {
18*0c17c53aSMichael Große        return self::$VAR;
19*0c17c53aSMichael Große    }
20*0c17c53aSMichael Große
21*0c17c53aSMichael Große}
22