/** * (Delegated) Implementation of hook_civicrm_disable */ function _volunteer_civix_civicrm_disable() { _volunteer_civix_civicrm_config(); if ($upgrader = _volunteer_civix_upgrader()) { if (is_callable(array($upgrader, 'onDisable'))) { return $upgrader->onDisable(); } } }
/** * Implementation of hook_civicrm_config */ function volunteer_civicrm_config(&$config) { _volunteer_civix_civicrm_config($config); }