function linkit_image_default_styles in Linkit 7.3
Same name and namespace in other branches
- 7.2 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 994 - 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;
}