本文整理汇总了PHP中HTML_QuickForm2::setAttribute方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML_QuickForm2::setAttribute方法的具体用法?PHP HTML_QuickForm2::setAttribute怎么用?PHP HTML_QuickForm2::setAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTML_QuickForm2
的用法示例。
在下文中一共展示了HTML_QuickForm2::setAttribute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testIdAndMethodAreReadonly
public function testIdAndMethodAreReadonly()
{
$form = new HTML_QuickForm2('foo', 'get');
try {
$form->removeAttribute('id');
} catch (HTML_QuickForm2_InvalidArgumentException $e) {
try {
$form->setAttribute('method', 'post');
} catch (HTML_QuickForm2_InvalidArgumentException $e) {
try {
$form->setId('newId');
} catch (HTML_QuickForm2_InvalidArgumentException $e) {
return;
}
}
}
$this->fail('Expected HTML_QuickForm2_InvalidArgumentException was not thrown');
}
示例2: check_password
output_element($element);
}
echo "</fieldset>\n";
}
// in real application the password check will a bit be different, of course
function check_password($password)
{
return $password == 'qwerty';
}
//
// Form setup
//
require_once 'HTML/QuickForm2.php';
$form = new HTML_QuickForm2('basicRules');
// for file upload to work
$form->setAttribute('enctype', 'multipart/form-data');
// data source with default values:
$form->addDataSource(new HTML_QuickForm2_DataSource_Array(array('testUsername' => 'luser')));
// override whatever value was submitted
$form->addElement('hidden', 'MAX_FILE_SIZE')->setValue('102400');
//
// Simple fields validation, rule chaining
//
$fsAuth = $form->addElement('fieldset')->setLabel('Auth credentials');
$username = $fsAuth->addElement('text', 'testUsername', array('style' => 'width: 200px;'))->setLabel('Username (letters only):');
$fsPasswords = $fsAuth->addElement('fieldset')->setLabel('Supply password only if you want to change it');
$oldPassword = $fsPasswords->addElement('password', 'oldPassword', array('style' => 'width: 200px;'))->setLabel('Old password (<i>qwerty</i>):');
$newPassword = $fsPasswords->addElement('password', 'newPassword', array('style' => 'width: 200px;'))->setLabel('New password (min 6 chars):');
$repPassword = $fsPasswords->addElement('password', 'newPasswordRepeat', array('style' => 'width: 200px;'))->setLabel('Repeat new password:');
$username->addRule('required', 'Username is required');
$username->addRule('regex', 'Username should contain only letters', '/^[a-zA-Z]+$/');