You are here

function node_gallery_api_image_default_styles in Node Gallery 7

Implements hook_image_default_styles().

File

./node_gallery_api.module, line 941
Node Gallery module.

Code

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