コード例 #1
0
ファイル: rtkWebResponse.php プロジェクト: kc5nra/RevTK
 /**
  * Adds a stylesheet to the current web response.
  * 
  * @see  coreWebResponse::addStylesheet()
  */
 public function addStylesheet($css, $position = '', $options = array())
 {
     $css = $this->getVersionUrl($css);
     parent::addStylesheet($css, $position = '', $options);
 }
コード例 #2
0
ファイル: demoWebResponse.php プロジェクト: nikitakit/RevTK
 /**
  * Adds a stylesheet to the current web response.
  * 
  * @see  coreWebResponse::addStylesheet()
  */
 public function addStylesheet($css, $position = '', $options = array())
 {
     $css = $this->getRevvedResourceUrl($css);
     parent::addStylesheet($css, $position = '', $options);
 }