AdminPageFramework_Form___FieldError::set PHP Method

set() public method

public set ( $aErrors )
    public function set($aErrors)
    {
        if (empty(self::$_aErrors)) {
            add_action('shutdown', array($this, '_replyToSave'));
        }
        self::$_aErrors[$this->sCallerID] = isset(self::$_aErrors[$this->sCallerID]) ? $this->uniteArrays(self::$_aErrors[$this->sCallerID], $aErrors) : $aErrors;
    }