Lines Matching refs:element

18  * Every pseudo-tag must have the key '_elem' set to the name of the element.
20 * element it contains.
22 * Standard practice is for non-attribute keys in a pseudo-element to start
23 * with '_'. Other keys are HTML attributes that will be included in the element
24 * tag. That way, the element output functions can pass the pseudo-element
58 * @param mixed $params Parameters for the HTML form element; Using the deprecated
144 * Appends a content element to the form.
145 * The element can be either a pseudo-tag or string.
160 * Inserts a content element at a position.
162 * @param string $pos 0-based index where the element will be inserted.
175 * Replace with NULL to remove an element.
177 * @param int $pos 0-based index the element will be placed at.
192 * Gets the position of the first of a type of element.
195 * @return int|false position of element if found, otherwise false
211 * Gets the position of the element with an ID attribute.
213 * @param string $id ID of the element to find.
214 * @return int|false position of element if found, otherwise false
230 * Gets the position of the first element with a matching attribute value.
234 * @return int|false position of element if found, otherwise false
250 * Returns a reference to the element at a position.
252 * first (underflow) or last (overflow) element.
255 * @return array reference pseudo-element
270 * Each element in the form will be passed to a function named
287 foreach ($this->_content as $element) {
288 if (is_array($element)) {
289 $elem_type = $element['_elem'];
291 $form .= call_user_func('form_' . $elem_type, $element) . DOKU_LF;
294 $form .= $element;
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.
392 * Only one wikitext element is allowed on a page. It will have
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.
806 * Print the HTML for a hidden input element.