You are here

function vsf_management_image_default_styles in Visual select file 7

Implements hook_image_default_styles().

Return value

array

File

submodules/vsf_management/vsf_management.module, line 159

Code

function vsf_management_image_default_styles() {
  return array(
    'vsf_management_thumbnail' => array(
      'label' => 'VSF Management Thumbnail',
      'effects' => array(
        array(
          'name' => 'image_scale_and_crop',
          'data' => array(
            'width' => 50,
            'height' => 50,
          ),
          'weight' => 0,
        ),
      ),
    ),
  );
}