You are here

image_style.medium.inc in Configuration Management 7.2

File

tests/test_configs/image_style.medium.inc
View source
<?php

/**
 * @file
 * image_style.medium.inc
 */
$api = '2.0.0';
$data = array(
  'effects' => array(
    0 => 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' => 220,
        'height' => 220,
        'upscale' => 1,
      ),
      'weight' => 0,
    ),
  ),
  'name' => 'medium',
  'storage' => 4,
);
$dependencies = array();
$optional = array();
$modules = array(
  0 => 'image',
);