Pop\Form\Element::isCsrf PHP Method

isCsrf() public method

Get whether the form element object is a csrf element.
public isCsrf ( ) : boolean
return boolean
    public function isCsrf()
    {
        return get_class($this) == 'Pop\\Form\\Element\\Csrf';
    }

Usage Example

Beispiel #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());
 }