You are here

function focal_point_theme in Focal Point 7

Same name and namespace in other branches
  1. 8 focal_point.module \focal_point_theme()

Implements hook_theme().

File

./focal_point.module, line 61

Code

function focal_point_theme($existing, $type, $theme, $path) {
  return array(
    // @see image_theme()
    'focal_point_image_style' => array(
      'variables' => array(
        'focal_point' => NULL,
        'style_name' => NULL,
        'path' => NULL,
        'width' => NULL,
        'height' => NULL,
        'alt' => '',
        'title' => NULL,
        'attributes' => array(),
      ),
      'file' => 'focal_point.theme.inc',
    ),
    'focal_point_image_resize_summary' => array(
      'variables' => array(
        'data' => NULL,
      ),
      'file' => 'focal_point.theme.inc',
    ),
    'focal_point_image_crop_summary' => array(
      'variables' => array(
        'data' => NULL,
      ),
      'file' => 'focal_point.theme.inc',
    ),
  );
}