AnaestheticAgent::rules PHP Method

rules() public method

public rules ( ) : array
return array validation rules for model attributes.
    public function rules()
    {
        // NOTE: you should only define rules for those attributes that
        // will receive user inputs.
        return array(array('name', 'required'), array('name', 'ext.validators.NotContainedInValidator', 'model' => 'OphTrOperationnote_OperationAnaestheticAgent', 'message' => $this->getCleanAttribute('name') . ' has been used in existing operation notes and cannot be edited'));
    }