/**
  * Obtain a refernece to the active upgrade handler
  */
 public static function instance()
 {
     if (!self::$instance) {
         // FIXME auto-generate
         self::$instance = new CRM_Eventcalendar_Upgrader('com.osseed.eventcalendar', __DIR__ . '/../../../');
     }
     return self::$instance;
 }
function _eventcalendar_civix_upgrader()
{
    if (!file_exists(__DIR__ . '/CRM/Eventcalendar/Upgrader.php')) {
        return NULL;
    } else {
        return CRM_Eventcalendar_Upgrader_Base::instance();
    }
}