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