Пример #1
0
 function customChartQuery($chart)
 {
     if (file_exists('custom/Charts/' . $chart . '.php')) {
         require_once 'custom/Charts/' . $chart . '.php';
         return customChartQuery();
     } else {
         return false;
     }
 }
Пример #2
0
 function customChartQuery($chart)
 {
     if (SugarAutoLoader::existing('custom/Charts/' . $chart . '.php')) {
         require_once 'custom/Charts/' . $chart . '.php';
         return customChartQuery();
     } else {
         return false;
     }
 }