You are here

function features_test_imagecache_default_presets in Features 6

Implementation of hook_imagecache_default_presets().

File

tests/features_test.features.inc, line 6

Code

function features_test_imagecache_default_presets() {
  $items = array(
    'features_test' => array(
      'presetname' => 'features_test',
      'actions' => array(
        '0' => array(
          'weight' => '0',
          'module' => 'imagecache',
          'action' => 'imagecache_scale',
          'data' => array(
            'width' => '100%',
            'height' => '100%',
            'upscale' => 0,
          ),
        ),
      ),
    ),
  );
  return $items;
}