本文整理汇总了PHP中YDForm::render方法的典型用法代码示例。如果您正苦于以下问题:PHP YDForm::render方法的具体用法?PHP YDForm::render怎么用?PHP YDForm::render使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类YDForm
的用法示例。
在下文中一共展示了YDForm::render方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionDefault
function actionDefault()
{
// Create the form
$form = new YDForm('form1', 'GET', '', '_self', array('class' => 'myform'));
// Add elements
$form->addElement('text', 'txt1', 'Enter text 1:');
$form->addElement('text', 'txt2', 'Enter text 2:');
$form->addElement('submit', 'cmdSubmit', 'submit');
$form->addRule('txt1', 'required', 'txt1 is required');
$form->addRule('txt1', 'maxlength', 'txt1 must be smaller than 15', 15);
$form->addCompareRule(array('txt1', 'txt2'), 'equal', 'txt1 and txt2 must be equal');
$form->addFormRule('formrule1');
$form->addFormRule(array('YDValidateRule', 'formrule2'));
$form->addFilter('txt1', 'trim');
$form->addFilter('txt2', 'trim');
// Convert the form to XML
$xml = $form->render('xml');
YDDebugUtil::dump($xml, 'Form as XML data');
//YDDebugUtil::dump( $form );
// Recreate a new form from the XML data
$form2 = new YDForm('form1');
$form2->import('xml', $xml);
//YDDebugUtil::dump( $form2 );
YDDebugUtil::dump(array_diff_assoc($form->toArray(), $form2->toArray()), 'toArray difference');
YDDebugUtil::dump(array_diff_assoc($form->_attributes, $form2->_attributes), '_attributes difference');
YDDebugUtil::dump(array_diff_assoc($form->_elements, $form2->_elements), '_elements difference');
YDDebugUtil::dump(array_diff_assoc($form->_rules, $form2->_rules), '_rules difference');
YDDebugUtil::dump(array_diff_assoc($form->_filters, $form2->_filters), '_filters difference');
YDDebugUtil::dump(array_diff_assoc($form->_comparerules, $form2->_comparerules), '_comparerules difference');
YDDebugUtil::dump(array_diff_assoc($form->_formrules, $form2->_formrules), '_formrules difference');
YDDebugUtil::dump(array_diff_assoc($form->_regElements, $form2->_regElements), '_regElements difference');
YDDebugUtil::dump(array_diff_assoc($form->_regRules, $form2->_regRules), '_regRules difference');
YDDebugUtil::dump(array_diff_assoc($form->_regFilters, $form2->_regFilters), '_regFilters difference');
YDDebugUtil::dump(array_diff_assoc($form->_regRenderers, $form2->_regRenderers), '_regRenderers difference');
}
示例2: actionDefault
function actionDefault()
{
// create a form with two select buttons
$form = new YDForm('myform');
$form->addElement('select', 'car', '', array(), array('Please select your car', 'Ferrari', 'Fiat', 'BMW'));
$form->addElement('select', 'model', '', array());
// create ajax object
$this->ajax = new YDAjax($this->tpl, $form);
// register event to element 'car' and send to 'getmodel' method its dynamic value
$this->ajax->addEvent('car', array(&$this, 'getmodel'), array('car'));
$this->ajax->processEvents();
// assign form and display template
$this->tpl->assign('title', 'Dependency with two select elements:');
$this->tpl->assign('form', $form->render('html'));
$this->tpl->display('general');
}
示例3: actionDefault
function actionDefault()
{
// create form
$form = new YDForm('myform');
$form->addElement('text', 'mytext', 'Write something, eg: "David" (case sensitive)');
$form->addElement('select', 'items', '', array(), array('Francisco' => 'Francisco', 'Pieter' => 'Pieter', 'David' => 'David'));
// create ajax object
$this->ajax = new YDAjax($this->tpl, $form);
// assign event to mytext
$this->ajax->addEvent('mytext', array(&$this, 'setSelect'), 'mytext', 'onkeyup');
// process all events
$this->ajax->processEvents();
// assign title, form and display template
$this->tpl->assign('title', 'Change selected value on-the-fly example');
$this->tpl->assign('form', $form->render('html'));
$this->tpl->display('general');
}