/** * Obtain a reference to the active upgrade handler. */ public static function instance() { if (!self::$instance) { // FIXME auto-generate self::$instance = new CRM_Speakcivi_Upgrader('eu.wemove.speakcivi', realpath(__DIR__ . '/../../../')); } return self::$instance; }
/** * @return CRM_Speakcivi_Upgrader */ function _speakcivi_civix_upgrader() { if (!file_exists(__DIR__ . '/CRM/Speakcivi/Upgrader.php')) { return NULL; } else { return CRM_Speakcivi_Upgrader_Base::instance(); } }