示例#1
0
文件: Base.php 项目: JoeMurray/civihr
 /**
  * Obtain a refernece to the active upgrade handler
  */
 public static function instance()
 {
     if (!self::$instance) {
         // FIXME auto-generate
         self::$instance = new CRM_HREmerg_Upgrader('org.civicrm.hremerg', realpath(__DIR__ . '/../../../'));
     }
     return self::$instance;
 }
示例#2
0
function _hremerg_civix_upgrader()
{
    if (!file_exists(__DIR__ . '/CRM/HREmerg/Upgrader.php')) {
        return NULL;
    } else {
        return CRM_HREmerg_Upgrader_Base::instance();
    }
}