/** * Obtain a reference to the active upgrade handler. */ public static function instance() { if (!self::$instance) { // FIXME auto-generate self::$instance = new CRM_Mappingacl_Upgrader('nl.sp.mappingacl', realpath(__DIR__ . '/../../../')); } return self::$instance; }
/** * @return CRM_Mappingacl_Upgrader */ function _mappingacl_civix_upgrader() { if (!file_exists(__DIR__ . '/CRM/Mappingacl/Upgrader.php')) { return NULL; } else { return CRM_Mappingacl_Upgrader_Base::instance(); } }