Prado\Web\UI\TClientScriptManager::registerStyleSheetFile PHP Метод

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

The CSS files in themes are registered in {@link OnPreRenderComplete onPreRenderComplete} if you want to override CSS styles in themes you need to register it after this event is completed. Example: Page->ClientScript->registerStyleSheetFile($url, $url); } }
public registerStyleSheetFile ( $key, $url, $media = '' )
    public function registerStyleSheetFile($key, $url, $media = '')
    {
        if ($media === '') {
            $this->_styleSheetFiles[$key] = $url;
        } else {
            $this->_styleSheetFiles[$key] = array($url, $media);
        }
        $params = func_get_args();
        $this->_page->registerCachingAction('Page.ClientScript', 'registerStyleSheetFile', $params);
    }