/**
 * (Delegated) Implements hook_civicrm_disable().
 *
 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
 * @return mixed
 */
function _membershipcustomisation_civix_civicrm_disable()
{
    _membershipcustomisation_civix_civicrm_config();
    if ($upgrader = _membershipcustomisation_civix_upgrader()) {
        if (is_callable(array($upgrader, 'onDisable'))) {
            $upgrader->onDisable();
        }
    }
}
/**
 * Implements hook_civicrm_config().
 *
 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
 */
function membershipcustomisation_civicrm_config(&$config)
{
    _membershipcustomisation_civix_civicrm_config($config);
}