예제 #1
0
파일: html.php 프로젝트: cmsx/html
 function testPassword()
 {
     $i = HTML::Password('hello', 123);
     $this->assertSelectCount('input[type=password]', true, $i, 'Тип');
     $this->assertSelectCount('input[name=hello]', true, $i, 'Имя');
     $this->assertSelectCount('input[value=123]', true, $i, 'Значение');
     $i = HTML::Password('hello', 123, 'myclass');
     $this->assertSelectCount('input[class=myclass]', true, $i, 'Атрибуты');
 }
예제 #2
0
파일: Password.php 프로젝트: cmsx/form
 public function render()
 {
     return HTML::Password($this->getName(), $this->getTaintedValue(), $this->getAttributes());
 }