You are here

function oa_appearance_image_default_styles in Open Atrium Appearance 7.2

Implements hook_image_default_styles().

File

./oa_appearance.features.inc, line 19
oa_appearance.features.inc

Code

function oa_appearance_image_default_styles() {
  $styles = array();

  // Exported image style: oa_banner.
  $styles['oa_banner'] = array(
    'label' => 'oa_banner',
    'effects' => array(
      1 => array(
        'name' => 'image_scale',
        'data' => array(
          'width' => 800,
          'height' => 200,
          'upscale' => 0,
        ),
        'weight' => 1,
      ),
    ),
  );
  return $styles;
}