Lines Matching refs:tag

18  * Every pseudo-tag must have the key '_elem' set to the name of the element.
24 * tag. That way, the element output functions can pass the pseudo-element
145 * The element can be either a pseudo-tag or string.
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.
340 * Create a form element for a non-specific empty tag.
342 * @param string $tag Tag name.
344 * @return array pseudo-tag
348 function form_makeTag($tag, $attrs = array())
350 $elem = array('_elem' => 'tag', '_tag' => $tag);
357 * Create a form element for a non-specific opening tag.
358 * Remember to put a matching close tag after this as well.
360 * @param string $tag Tag name.
362 * @return array pseudo-tag
366 function form_makeOpenTag($tag, $attrs = array())
368 $elem = array('_elem' => 'opentag', '_tag' => $tag);
375 * Create a form element for a non-specific closing tag.
378 * @param string $tag Tag name.
379 * @return array pseudo-tag
383 function form_makeCloseTag($tag)
385 return array('_elem' => 'closetag', '_tag' => $tag);
398 * @return array pseudo-tag
420 * @return array pseudo-tag
450 * @return array pseudo-tag
639 * @return array pseudo-tag
685 * @return array pseudo-tag
721 * Print the HTML for a generic empty tag.
722 * Requires '_tag' key with name of the tag.
728 * @return string html of tag
738 * Print the HTML for a generic opening tag.
739 * Requires '_tag' key with name of the tag.
745 * @return string html of tag
755 * Print the HTML for a generic closing tag.
756 * Requires '_tag' key with name of the tag.
762 * @return string html of tag
772 * Print the HTML for an opening fieldset tag.
791 * Print the HTML for a closing fieldset tag.
867 * _class : class attribute used on the label tag
869 * Other attributes are passed to buildAttributes() for the input tag.
892 * _class : class attribute used on the label tag
894 * Other attributes are passed to buildAttributes() for the input tag.
917 * _class : class attribute used on the label tag
919 * Other attributes are passed to buildAttributes() for the input tag.
944 * _class : class attribute used on the label tag
946 * Other attributes are passed to buildAttributes() for the input tag.
971 * _class : class attribute used on the label tag
975 * Other attributes are passed to buildAttributes() for the input tag
1001 * _class : class attribute used on the label tag
1003 * Other attributes are passed to buildAttributes() for the input tag.
1036 * _class : class attribute used on the label tag
1038 * Other attributes are passed to buildAttributes() for the input tag.
1066 * _class : class attribute used on the label tag
1068 * Other attributes are passed to buildAttributes() for the input tag.
1114 * _class : class attribute used on the label tag
1116 * Other attributes are passed to buildAttributes() for the input tag.