Exemple #1
0
 /**
  * Obtain a refernece to the active upgrade handler
  */
 public static function instance()
 {
     if (!self::$instance) {
         // FIXME auto-generate
         self::$instance = new CRM_HRQual_Upgrader('org.civicrm.hrqual', realpath(__DIR__ . '/../../../'));
     }
     return self::$instance;
 }
Exemple #2
0
function _hrqual_civix_upgrader()
{
    if (!file_exists(__DIR__ . '/CRM/HRQual/Upgrader.php')) {
        return NULL;
    } else {
        return CRM_HRQual_Upgrader_Base::instance();
    }
}