function touch_icons_hook_info in Touch Icons 7.2
Implements hook_hook_info().
File
- ./
touch_icons.module, line 42 - Adds a fieldset to theme settings form which allows site administrators to specify Apple Touch icons for Drupal websites. The Touch icon settings behave in a similar manner to the Site Logo and Favicon settings provided by Drupal core.
Code
function touch_icons_hook_info() {
$hooks['form_system_theme_settings_alter'] = array(
'group' => 'admin',
);
return $hooks;
}