Lines Matching defs:form

19  * When printed, the form class calls functions named 'form_$type' for each
30 * it is still widely used in the core and the related form events. Until those have been rewritten,
41 // Draw a border around form fields.
45 // Hidden form fields.
58 * @param mixed $params Parameters for the HTML form element; Using the deprecated
59 * calling convention this is the ID attribute of the form
94 * Usually results in a border drawn around the form.
144 * Appends a content element to the form.
148 * @param string|array $elem Pseudo-tag or string to add to the form.
163 * @param string|array $elem Pseudo-tag or string to add to the form.
178 * @param string|array $elem Pseudo-tag or string to add to the form.
268 * Return the assembled HTML for the form.
270 * Each element in the form will be passed to a function named
275 * @return string html of the form
280 $form = '';
282 $form .= '<form ' . buildAttributes($this->params, false) . '><div class="no">' . DOKU_LF;
285 $form .= form_hidden(array('name' => $name, 'value' => $value));
291 $form .= call_user_func('form_' . $elem_type, $element) . DOKU_LF;
294 $form .= $element;
297 if ($this->_infieldset) $form .= form_closefieldset() . DOKU_LF;
298 $form .= '</div></form>' . DOKU_LF;
300 return $form;
304 * Print the assembled form
316 * This function adds a set of radio buttons to the form. If $_POST[$name]
340 * Create a form element for a non-specific empty tag.
357 * Create a form element for a non-specific opening tag.
375 * Create a form element for a non-specific closing tag.
391 * Create a form element for a textarea containing wiki text.
412 * Create a form element for an action button.
438 * Create a form element for a labelled input element.
465 * Create a form element for a labelled input element.
492 * Create a form element for a text input element with label.
517 * Create a form element for a password input element with label.
542 * Create a form element for a file input element with label
566 * Create a form element for a checkbox input element with label.
594 * Create a form element for a radio button input element with label.
620 * Create a form element for a drop-down menu with label.
668 * Create a form element for a list box with label.
846 * Print the HTML for a form button.
866 * Print the HTML for a form input field.
891 * Print the HTML for a form input field. (right-aligned)