function focal_point_image_default_styles in Focal Point 7
Implements hook_image_default_styles().
File
- ./
focal_point.module, line 102
Code
function focal_point_image_default_styles() {
$styles = array();
$styles['focal_point_preview'] = array(
'label' => 'Focal Point Preview',
'effects' => array(
array(
'name' => 'image_scale',
'data' => array(
'width' => 250,
'height' => NULL,
'upscale' => 1,
),
'weight' => 0,
),
),
);
return $styles;
}