Pop\Form\Element::isRadio PHP Метод

isRadio() публичный Метод

Get whether the form element object is a radio element.
public isRadio ( ) : boolean
Результат boolean
    public function isRadio()
    {
        return get_class($this) == 'Pop\\Form\\Element\\Radio';
    }

Usage Example

Пример #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());
 }