10c17c53aSMichael Große<?php 20c17c53aSMichael Große 30c17c53aSMichael Großenamespace dokuwiki\plugin\struct\test\mock; 40c17c53aSMichael Große 5*0549dcc5SAndreas Gohrclass action_plugin_struct_edit extends \action_plugin_struct_edit 6*0549dcc5SAndreas Gohr{ 70c17c53aSMichael Große 80c17c53aSMichael Große /** 90c17c53aSMichael Große * Create the form to edit schemadata 100c17c53aSMichael Große * 110c17c53aSMichael Große * @param string $tablename 120c17c53aSMichael Große * @return string The HTML for this schema's form 130c17c53aSMichael Große */ 14*0549dcc5SAndreas Gohr public function createForm($tablename) 15*0549dcc5SAndreas Gohr { 160c17c53aSMichael Große return parent::createForm($tablename); 170c17c53aSMichael Große } 180c17c53aSMichael Große 19*0549dcc5SAndreas Gohr public static function getVAR() 20*0549dcc5SAndreas Gohr { 210c17c53aSMichael Große return self::$VAR; 220c17c53aSMichael Große } 230c17c53aSMichael Große 240c17c53aSMichael Große} 25