isCsrf() public method

Get whether the form element object is a csrf element.
public isCsrf ( ) : boolean
return boolean
Exemplo n.º 1
0
 public function testElementType()
 {
     $e = new Element('text', 'email');
     $this->assertFalse($e->isCaptcha());
     $this->assertFalse($e->isCheckbox());
     $this->assertFalse($e->isCsrf());
     $this->assertFalse($e->isRadio());
     $this->assertFalse($e->isSelect());
     $this->assertFalse($e->isTextarea());
 }