You are here

function image_theme in Image 6

Implementation of hook_theme().

File

./image.module, line 38

Code

function image_theme() {
  return array(
    'image_settings_sizes_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'image_teaser' => array(
      'arguments' => array(
        'node' => NULL,
        'size' => IMAGE_THUMBNAIL,
      ),
    ),
    'image_body' => array(
      'arguments' => array(
        'node' => NULL,
        'size' => IMAGE_PREVIEW,
      ),
    ),
    'image_block_random' => array(
      'arguments' => array(
        'images' => NULL,
        'size' => IMAGE_THUMBNAIL,
      ),
    ),
    'image_block_latest' => array(
      'arguments' => array(
        'images' => NULL,
        'size' => IMAGE_THUMBNAIL,
      ),
    ),
    'image_display' => array(
      'arguments' => array(
        'node' => NULL,
        'label' => NULL,
        'url' => NULL,
        'attributes' => NULL,
      ),
    ),
  );
}