예제 #1
0
/**
 * (Delegated) Implements hook_civicrm_disable().
 *
 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
 * @return mixed
 */
function _accountsync_civix_civicrm_disable()
{
    _accountsync_civix_civicrm_config();
    if ($upgrader = _accountsync_civix_upgrader()) {
        if (is_callable(array($upgrader, 'onDisable'))) {
            $upgrader->onDisable();
        }
    }
}
예제 #2
0
파일: accountsync.php 프로젝트: kidaa30/yes
/**
 * Implements hook_civicrm_config().
 */
function accountsync_civicrm_config(&$config)
{
    _accountsync_civix_civicrm_config($config);
}