Beispiel #1
0
 /**
  * Obtain a refernece to the active upgrade handler
  */
 public static function instance()
 {
     if (!self::$instance) {
         // FIXME auto-generate
         self::$instance = new CRM_HRRecruitment_Upgrader('org.civicrm.hrrecruitment', realpath(__DIR__ . '/../../../'));
     }
     return self::$instance;
 }
/**
 * @return CRM_HRRecruitment_Upgrader
 */
function _hrrecruitment_civix_upgrader()
{
    if (!file_exists(__DIR__ . '/CRM/HRRecruitment/Upgrader.php')) {
        return NULL;
    } else {
        return CRM_HRRecruitment_Upgrader_Base::instance();
    }
}