public function printform() { // Erzeuge ein neues "Form" Objekt $form = new dokuwiki\Form\Form(); $form->addHTML("

Hey, was geht?!

"); $form->addTextArea('blogtext', ''); $form->addHTML("
"); $form->addButton('submit', 'Senden'); // Generate the HTML-Representation of the form return $form->toHTML(); }