You are here

function imagecache_proportions_theme in Imagecache Proportions 6

Implements hook_theme().

File

./imagecache_proportions.module, line 26
CCK formatter for imagefields that allows the user to select between 3 different imagecache presets depending on the proportions of the original image uploaded. One preset would be squared for more or less squared images, another for wider images and…

Code

function imagecache_proportions_theme() {
  $theme = array(
    'imagecache_proportions_formatter_vertical_horizontal' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
  return $theme;
}