You are here

class cmfcCalendar in Calendar Systems 6.3

Same name and namespace in other branches
  1. 8 calendar/calendar.class.inc.php \cmfcCalendar
  2. 8.2 calendar/calendar.class.inc.php \cmfcCalendar
  3. 5 calendar/calendar.class.inc.php \cmfcCalendar
  4. 6 calendar/calendar.class.inc.php \cmfcCalendar
  5. 7.3 calendar/calendar.class.inc.php \cmfcCalendar
  6. 7 calendar/calendar.class.inc.php \cmfcCalendar
  7. 7.2 calendar/calendar.class.inc.php \cmfcCalendar

@todo - esfahbod multi calendar should be used as of base of this package

Hierarchy

Expanded class hierarchy of cmfcCalendar

1 string reference to 'cmfcCalendar'
calendar_systems_load_dependenies in ./calendar_systems.module
It loads modules required files

File

calendar/calendar.class.inc.php, line 7

View source
class cmfcCalendar {
  function factory($name, $options) {
    if ($name == 'old') {

      //require_once('ca.class.inc.php');

      //return new cmfcEmailSenderOld($options);
    }
    if ($name == 'v1') {
      require_once dirname(__FILE__) . '/v1/calendarV1.class.inc.php';
      return cmfcCalendarV1::factory($options);
    }
  }

}

Members