| 386 | | if(($url=$this->getCssUrl())==='') |
| 387 | | $url=$this->getApplication()->getAssetManager()->publishFilePath(dirname(__FILE__).DIRECTORY_SEPARATOR.'assets'.DIRECTORY_SEPARATOR.'tabpanel.css'); |
| 388 | | $this->getPage()->getClientScript()->registerStyleSheetFile($url,$url); |
| | 386 | $url = $this->getCssUrl(); |
| | 387 | |
| | 388 | if($url === '') { |
| | 389 | return; |
| | 390 | } |
| | 391 | |
| | 392 | if($url === 'default') { |
| | 393 | $url = $this->getApplication()->getAssetManager()->publishFilePath(dirname(__FILE__).DIRECTORY_SEPARATOR.'assets'.DIRECTORY_SEPARATOR.'tabpanel.css'); |
| | 394 | } |
| | 395 | |
| | 396 | if($url !== '') { |
| | 397 | $this->getPage()->getClientScript()->registerStyleSheetFile($url, $url); |
| | 398 | } |