Ejemplo n.º 1
0
 /**
  * Obtain a reference to the active upgrade handler.
  */
 public static function instance()
 {
     if (!self::$instance) {
         // FIXME auto-generate
         self::$instance = new CRM_Tournament_Upgrader('org.agloa.tournament', realpath(__DIR__ . '/../../../'));
     }
     return self::$instance;
 }
Ejemplo n.º 2
0
/**
 * @return CRM_Tournament_Upgrader
 */
function _tournament_civix_upgrader()
{
    if (!file_exists(__DIR__ . '/CRM/Tournament/Upgrader.php')) {
        return NULL;
    } else {
        return CRM_Tournament_Upgrader_Base::instance();
    }
}