/**
 * (Delegated) Implementation of hook_civicrm_disable
 */
function _clickatell_civix_civicrm_disable()
{
    _clickatell_civix_civicrm_config();
    if ($upgrader = _clickatell_civix_upgrader()) {
        if (is_callable(array($upgrader, 'onDisable'))) {
            return $upgrader->onDisable();
        }
    }
}
/**
 * Implementation of hook_civicrm_config
 */
function clickatell_civicrm_config(&$config)
{
    _clickatell_civix_civicrm_config($config);
}