示例#1
0
/**
 * (Delegated) Implementation of hook_civicrm_disable
 *
 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
 */
function _hrrecruitment_civix_civicrm_disable()
{
    _hrrecruitment_civix_civicrm_config();
    if ($upgrader = _hrrecruitment_civix_upgrader()) {
        if (is_callable(array($upgrader, 'onDisable'))) {
            return $upgrader->onDisable();
        }
    }
}
示例#2
0
/**
 * Implementation of hook_civicrm_config
 */
function hrrecruitment_civicrm_config(&$config)
{
    _hrrecruitment_civix_civicrm_config($config);
}