コード例 #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_HRIdent_Upgrader('org.civicrm.hrident', realpath(__DIR__ . '/../../../'));
     }
     return self::$instance;
 }
コード例 #2
0
ファイル: hrident.civix.php プロジェクト: JoeMurray/civihr
function _hrident_civix_upgrader()
{
    if (!file_exists(__DIR__ . '/CRM/HRIdent/Upgrader.php')) {
        return NULL;
    } else {
        return CRM_HRIdent_Upgrader_Base::instance();
    }
}