AdminPageFramework_PageMetaBox_Router::_isInThePage PHP Метод

_isInThePage() публичный Метод

public _isInThePage ( )
    public function _isInThePage()
    {
        if (!$this->oProp->bIsAdmin) {
            return false;
        }
        if (!isset($_GET['page'])) {
            return false;
        }
        if (array_key_exists($_GET['page'], $this->oProp->aPageSlugs)) {
            return true;
        }
        return in_array($_GET['page'], $this->oProp->aPageSlugs);
    }
AdminPageFramework_PageMetaBox_Router