You are here

function domain_locale_hook_info in Domain Locale 7

Implements hook_hook_info().

Allows the use of $module.domain.inc files.

File

./domain_locale.module, line 575
Provides domain specific language settings.

Code

function domain_locale_hook_info() {
  $hooks = array(
    'delete_domain',
    'delete_domain_language',
    'features_export',
    'features_export_options',
    'features_export_render',
    'features_rebuild',
    'features_revert',
    'insert_domain',
    'install',
    'languages_delete_submit',
    'language_list',
    'list',
    'restore_default',
  );
  $module = 'domain_locale';
  foreach ($hooks as $hook) {
    $ret["{$module}_{$hook}"] = $module;
  }
  return $ret;
}