Lines Matching defs:form
138 * used as default action form HTML_SECEDIT_BUTTON
170 * Just the back to top button (in its own form)
187 * Displays a button (using its own form)
223 $html = '<form class="button btn_' . $name . '" method="' . $method . '" action="' . $script . '"><div class="no">';
245 $html .= '</div></form>';
660 * Prints the registration form
672 * Print the update profile form
685 * Preprocess edit form data
698 * Display the default edit form
887 * Triggers an event with the form name: HTML_{$name}FORM_OUTPUT
891 * @param string $name The name of the form
892 * @param Doku_Form $form The form
896 function html_form($name, $form)
900 $form->endFieldset();
901 Event::createAndTrigger('HTML_' . strtoupper($name) . 'FORM_OUTPUT', $form, 'html_form_output', false);
906 * Just calls printForm() on the form object.
908 * @param Doku_Form $form The form
912 function html_form_output($form)
915 $form->printForm();
1044 * @param Doku_Form $form - (optional) form to add elements to
1047 function html_sizechange($sizechange, $form = null)
1061 if (!isset($form)) {
1064 $form->addElement(form_makeOpenTag('span', ['class' => $class]));
1065 $form->addElement($value);
1066 $form->addElement(form_makeCloseTag('span'));