You are here

function menu_icons_image_default_styles in Menu Icons 7.3

Implements hook_image_default_styles(). Define the default menu_icons image style.

File

./menu_icons.module, line 468
Module to associate icons with menu items

Code

function menu_icons_image_default_styles() {
  $styles = array();
  $styles['menu_icon'] = array(
    'effects' => array(
      array(
        'name' => 'image_scale',
        'data' => array(
          'width' => 45,
          'height' => 45,
          'upscale' => 1,
        ),
        'weight' => 0,
      ),
    ),
  );
  return $styles;
}