コード例 #1
0
/**
 * (Delegated) Implements hook_civicrm_disable().
 *
 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
 * @return mixed
 */
function _chapters_civix_civicrm_disable()
{
    _chapters_civix_civicrm_config();
    if ($upgrader = _chapters_civix_upgrader()) {
        if (is_callable(array($upgrader, 'onDisable'))) {
            $upgrader->onDisable();
        }
    }
}
コード例 #2
0
/**
 * Implements hook_civicrm_config().
 *
 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
 */
function chapters_civicrm_config(&$config)
{
    _chapters_civix_civicrm_config($config);
}