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'; $scriptProperties['outputMode'] = 'calendar'; $scriptProperties['currentMonth'] = is_numeric($_GET['m']) ? $_GET['m']:date('m'); $scriptProperties['currentYear'] = is_numeric($_GET['y']) ? $_GET['y']:date('Y'); $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'] == 1) { $modx->regClientStartupScript($gca->c['jsPath']); } if($gca->c['includeCSS'] == 1) { $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']][$gca->c['currentYear'].$gca->c['currentMonth']]; } else { return $gca->debug(); }