当前位置: 首页>>代码示例>>PHP>>正文


PHP HTML_QuickForm::addHeader方法代码示例

本文整理汇总了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();
开发者ID:laiello,项目名称:coopcrucial,代码行数:31,代码来源:multiple-labels.php


注:本文中的HTML_QuickForm::addHeader方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。