Calendar.php in Calendar Systems 8.2
Contains \Drupal\calendar_systems.
Namespace
Drupal\calendar_systems\CalendarFile
src/Calendar/Calendar.phpView source
<?php
/**
* @file
* Contains \Drupal\calendar_systems.
*/
namespace Drupal\calendar_systems\Calendar;
class Calendar {
/*
* @return \cmfcCalendar
*/
static function factory($name, $options) {
require_once __DIR__ . '/../../calendar/lib/exception.class.inc.php';
require_once __DIR__ . '/../../calendar/lib/classesCore.class.inc.php';
require_once __DIR__ . '/../../calendar/calendar.class.inc.php';
return \cmfcCalendar::factory($name, $options);
}
}