コード例 #1
0
 public function isCdnEnabled()
 {
     // If CDN object is not already populated, try to populate it.
     if (null === $this->cdn) {
         $this->refreshCdnObject();
     }
     return $this->cdn instanceof CDNContainer && $this->cdn->isCdnEnabled();
 }
コード例 #2
0
ファイル: Container.php プロジェクト: Kevin-ZK/vaneDisk
 public function isCdnEnabled()
 {
     return $this->cdn instanceof CDNContainer && $this->cdn->isCdnEnabled();
 }