You are here

function linkit_image_default_styles in Linkit 7.2

Same name and namespace in other branches
  1. 7.3 linkit.module \linkit_image_default_styles()

Implements hook_image_default_styles().

Return value

An array of image styles, keyed by the style name.

File

./linkit.module, line 658
Main file for linkit module.

Code

function linkit_image_default_styles() {
  $styles = array();
  $styles['linkit_thumb'] = array(
    'effects' => array(
      array(
        'name' => 'image_scale',
        'data' => array(
          'width' => 50,
          'height' => 50,
          'upscale' => 0,
        ),
        'weight' => 0,
      ),
    ),
  );
  return $styles;
}