Exemplo n.º 1
0
 /**
  * Obtain a refernece to the active upgrade handler
  */
 public static function instance()
 {
     if (!self::$instance) {
         // FIXME auto-generate
         self::$instance = new CRM_HRJob_Upgrader('org.civicrm.hrjob', realpath(__DIR__ . '/../../../'));
     }
     return self::$instance;
 }
Exemplo n.º 2
0
/**
 * @return CRM_HRJob_Upgrader
 */
function _hrjob_civix_upgrader()
{
    if (!file_exists(__DIR__ . '/CRM/HRJob/Upgrader.php')) {
        return NULL;
    } else {
        return CRM_HRJob_Upgrader_Base::instance();
    }
}