/**
 * (Delegated) Implementation of hook_civicrm_disable
 *
 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
 * @return mixed
 */
function _giftmemberships_civix_civicrm_disable()
{
    _giftmemberships_civix_civicrm_config();
    if ($upgrader = _giftmemberships_civix_upgrader()) {
        if (is_callable(array($upgrader, 'onDisable'))) {
            $upgrader->onDisable();
        }
    }
}
/**
* Implementation of hook_civicrm_config
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civihacrm_config
*/
function giftmemberships_civicrm_config(&$config)
{
    _giftmemberships_civix_civicrm_config($config);
}