AdminPageFramework_Format_PageResource_Style::get PHP Метод

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

public get ( )
    public function get()
    {
        return $this->_getFormatted($this->asSubject);
    }

Usage Example

 private function _enqueueAsset_style($asPageStyle)
 {
     $_oFormatter = new AdminPageFramework_Format_PageResource_Style($asPageStyle);
     $_aPageStyle = $_oFormatter->get();
     $_sSRC = $_aPageStyle['src'];
     if (file_exists($_sSRC) || filter_var($_sSRC, FILTER_VALIDATE_URL)) {
         return $this->oFactory->enqueueStyle($_sSRC, $this->sCurrentPageSlug, $this->sCurrentTabSlug, $_aPageStyle);
     }
     $this->aCSSRules[] = $_sSRC;
 }
AdminPageFramework_Format_PageResource_Style