AdminPageFramework_Form___FieldError::set PHP 메소드

set() 공개 메소드

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;
    }