You are here

function collageformatter_theme in Collage Formatter 7

Same name and namespace in other branches
  1. 8 collageformatter.module \collageformatter_theme()

Implements hook_theme().

File

./collageformatter.module, line 970
Main file for Collage Formatter module.

Code

function collageformatter_theme($existing, $type, $theme, $path) {
  return array(
    'collageformatter_collage' => array(
      'variables' => array(
        'collage' => NULL,
        'collage_wrapper_class' => NULL,
        'collage_wrapper_style' => NULL,
        'collage_style' => NULL,
        'collage_bottom_style' => NULL,
      ),
      'template' => 'templates/collageformatter_collage',
    ),
    'collageformatter_collage_box' => array(
      'variables' => array(
        'box' => NULL,
        'box_style' => NULL,
      ),
      'template' => 'templates/collageformatter_collage_box',
    ),
    'collageformatter_collage_image' => array(
      'variables' => array(
        'image' => NULL,
        'image_wrapper_class' => NULL,
        'image_wrapper_style' => NULL,
        'image_style' => NULL,
      ),
      'template' => 'templates/collageformatter_collage_image',
    ),
  );
}