You are here

function finder_ui_hook_info in Finder 7.2

Implements hook_hook_info().

File

modules/finder_ui/finder_ui.module, line 112
The Finder UI module.

Code

function finder_ui_hook_info() {
  $hooks = array();
  if (module_exists('i18n_string')) {
    $i18n_string_hooks = array(
      'locale',
      'finder_render',
      'finder_presave',
      'finder_delete',
    );
    foreach ($i18n_string_hooks as $hook) {
      $hooks[$hook] = array(
        'group' => 'i18n_string',
      );
    }
  }
  return $hooks;
}