You are here

function uc_catalog_image_default_styles in Ubercart 7.3

Implements hook_image_default_styles().

File

uc_catalog/uc_catalog.module, line 98
Ubercart Catalog module.

Code

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