function menu_icons_imagecache_default_presets in Menu Icons 8
Implementation of hook_theme().
File
- ./
menu_icons.module, line 287 - Module to associate icons with menu items
Code
function menu_icons_imagecache_default_presets() {
$presets = array();
$presets['menu_icon'] = array(
'presetname' => 'menu_icon',
'actions' => array(
0 => array(
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_scale',
'data' => array(
'width' => '45',
'height' => '45',
),
),
),
);
return $presets;
}