Exemplo n.º 1
0
Arquivo: html.php Projeto: cmsx/html
 function testInput()
 {
     $i = HTML::Input('hello', 123);
     $this->assertSelectCount('input[type=text]', true, $i, 'Тип');
     $this->assertSelectCount('input[name=hello]', true, $i, 'Имя');
     $this->assertSelectCount('input[value=123]', true, $i, 'Значение');
     $i = HTML::Hidden('hello', 123, 'myclass');
     $this->assertSelectCount('input[class=myclass]', true, $i, 'Атрибуты');
 }
Exemplo n.º 2
0
Arquivo: Hidden.php Projeto: cmsx/form
 public function render()
 {
     return HTML::Hidden($this->getName(), $this->getTaintedValue(), $this->getAttributes(false));
 }