You are here

function search_autocomplete_image_default_styles in Search Autocomplete 7.4

Implements image_default_styles().

Add an image style for Search Autocomplete module.

File

./search_autocomplete.module, line 120

Code

function search_autocomplete_image_default_styles() {
  $styles = array();
  $styles['autocompletion_style'] = array(
    'effects' => array(
      array(
        'name' => 'image_scale_and_crop',
        'data' => array(
          'width' => 50,
          'height' => 50,
        ),
        'weight' => 0,
      ),
    ),
  );
  return $styles;
}