function features_test_image_default_styles in Features 7.2
Same name and namespace in other branches
- 7 tests/features_test.features.inc \features_test_image_default_styles()
Implements hook_image_default_styles().
File
- tests/
features_test/ features_test.features.inc, line 27 - features_test.features.inc
Code
function features_test_image_default_styles() {
$styles = array();
// Exported image style: features_test.
$styles['features_test'] = array(
'effects' => array(
2 => array(
'name' => 'image_scale',
'data' => array(
'width' => 100,
'height' => 100,
'upscale' => 0,
),
'weight' => 1,
),
),
'label' => 'features_test',
);
return $styles;
}