AdminPageFrameworkLoader_Option::hasUpgraded PHP 메소드

hasUpgraded() 공개 메소드

Checks the version number
부터: 3.5.0
public hasUpgraded ( ) : boolean
리턴 boolean True if yes; otherwise, false.
    public function hasUpgraded()
    {
        $_sOptionVersion = $this->get('version_saved');
        if (!$_sOptionVersion) {
            return false;
        }
        $_sOptionVersion = $this->_getVersionByDepth($_sOptionVersion);
        $_sCurrentVersion = $this->_getVersionByDepth(AdminPageFrameworkLoader_Registry::VERSION);
        return version_compare($_sOptionVersion, $_sCurrentVersion, '<');
    }