本文整理汇总了PHP中HTML_QuickForm::addHeader方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML_QuickForm::addHeader方法的具体用法?PHP HTML_QuickForm::addHeader怎么用?PHP HTML_QuickForm::addHeader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTML_QuickForm
的用法示例。
在下文中一共展示了HTML_QuickForm::addHeader方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
* @version CVS: $Id: multiple-labels.php,v 1.2 2007/05/29 19:12:26 avb Exp $
* @ignore
*/
require_once 'HTML/QuickForm.php';
$template = '<tr>
<td align="right" valign="top">
<!-- BEGIN required --><font color="red">*</font><!-- END required -->
<b>{label}</b>
</td>
<td nowrap="nowrap" valign="top" align="left">
{element}
<!-- BEGIN error --><br/><font color="red">{error}</font><br/><!-- END error -->
<!-- BEGIN label_2 --><br/><font size="-1">{label_2}</font><!-- END label_2 -->
</td>
</tr>';
// Create the form, and add a header to it.
$form = new HTML_QuickForm('labels_example', 'post');
$form->addHeader('QuickForm Labels Example');
// Do the magic! Just pass your label to the element as an array!
$form->addElement('text', 'name', array('Name', 'The name that you would like to enter in this element.'));
$form->addElement('checkbox', 'check', array('Check Me!', 'If you check this box, it will have tick in it.'));
// More boring stuff.
$form->addElement('submit', null, 'Submit');
if ($form->validate()) {
$form->freeze();
}
// customize the element template
$renderer =& $form->defaultRenderer();
$renderer->setElementTemplate($template);
// output the form
$form->display();