コード例 #1
0
ファイル: Javascript.php プロジェクト: claremontdesign/zbase
 /**
  * Retrieve the URL of an external script file
  * @return string
  */
 function getSrc()
 {
     if (zbase_view_cdn() && !is_null($this->cdn)) {
         return $this->cdn;
     }
     return $this->src;
 }
コード例 #2
0
ファイル: HeadLink.php プロジェクト: claremontdesign/zbase
 /**
  * @see class::$href
  * @return string
  */
 public function getHref()
 {
     if (zbase_view_cdn() && !is_null($this->cdn)) {
         return $this->cdn;
     }
     return $this->href;
 }