Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/components/gcalevents/snippets/ |
<?php require_once MODX_CORE_PATH.'components/gcalevents/model/gcalevents/gcalevents.class.php'; $gca = new gCalEvents($modx, $scriptProperties); $gca->init(); /** *** Scripts and styles *** &jsPath=`` &cssPath=`` define a path to a stylesheet and a javascript file *** **/ if($gca->c['includeJS']) { $modx->regClientStartupScript($gca->c['jsPath']); } if($gca->c['includeCSS']) { $modx->regClientCSS($gca->c['cssPath']); } /** *** WARNING *** If you set the debug property, all scriptProperties will be printed. *** This includes your privateCookie if you supplied one in the snippet-call. **/ if(!isset($gca->c['debug'])) { return $gca->output[$gca->c['outputType']][$gca->c['outputMode']]; } else { return $gca->debug(); }