You are here

function uc_cart_image_default_styles in Ubercart 7.3

Implements hook_image_default_styles().

File

uc_cart/uc_cart.module, line 111

Code

function uc_cart_image_default_styles() {
  $styles = array();
  $styles['uc_cart'] = array(
    'effects' => array(
      array(
        'name' => 'image_scale',
        'data' => array(
          'width' => '50',
          'height' => '50',
          'upscale' => 0,
        ),
        'weight' => '0',
      ),
    ),
  );
  return $styles;
}