function features_test_image_default_styles in Features 7
Same name and namespace in other branches
- 7.2 tests/features_test/features_test.features.inc \features_test_image_default_styles()
Implements hook_image_default_styles().
File
- tests/
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(
'name' => 'features_test',
'effects' => array(
2 => array(
'label' => 'Scale',
'help' => 'Scaling will maintain the aspect-ratio of the original image. If only a single dimension is specified, the other dimension will be calculated.',
'effect callback' => 'image_scale_effect',
'dimensions callback' => 'image_scale_dimensions',
'form callback' => 'image_scale_form',
'summary theme' => 'image_scale_summary',
'module' => 'image',
'name' => 'image_scale',
'data' => array(
'width' => '100',
'height' => '100',
'upscale' => 0,
),
'weight' => '1',
),
),
);
return $styles;
}