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