Nette\Forms\Rules::isRequired PHP Method

isRequired() public method

Is control mandatory?
public isRequired ( ) : boolean
return boolean
    public function isRequired()
    {
        return (bool) $this->required;
    }

Usage Example

コード例 #1
0
ファイル: BaseControl.php プロジェクト: pdostal/nette-blog
 /**
  * Is control mandatory?
  * @return bool
  */
 public function isRequired()
 {
     return $this->rules->isRequired();
 }