AdminPageFramework_TaxonomyField_Router::_isInThePage PHP Метод

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

public _isInThePage ( )
    public function _isInThePage()
    {
        if ('admin-ajax.php' == $this->oProp->sPageNow) {
            return true;
        }
        if (!in_array($this->oProp->sPageNow, array('edit-tags.php', 'term.php'))) {
            return false;
        }
        if (isset($_GET['taxonomy']) && !in_array($_GET['taxonomy'], $this->oProp->aTaxonomySlugs)) {
            return false;
        }
        return true;
    }
AdminPageFramework_TaxonomyField_Router