Example #1
0
 function getJsSrcGlobal($sJsFile)
 {
     $sHtml = "";
     if (file_exists(AnwComponent::getGlobalPathStaticDefault() . $sJsFile)) {
         $sHtml .= $this->tpl()->headJsSrc(AnwComponent::getGlobalUrlStaticDefault() . $sJsFile);
     }
     if (file_exists(AnwComponent::getGlobalPathStaticOverride() . $sJsFile)) {
         $sHtml .= $this->tpl()->headJsSrc(AnwComponent::getGlobalUrlStaticOverride() . $sJsFile);
     }
     return $sHtml;
 }