You are here

function panels_image_content_types in Image 5.2

Return all content types available.

1 string reference to 'panels_image_content_types'
image_image_panels_content_types in content_types/image.inc
Callback function to supply a list of content types.

File

content_types/image.inc, line 26

Code

function panels_image_content_types() {
  return array(
    'image' => array(
      'title' => t('Image'),
      'weight' => 5,
      'icon' => 'icon_node.png',
      'path' => panels_get_path('content_types/node'),
      'description' => t('Add a image as content.'),
      'category' => array(
        t('Images'),
        5,
      ),
    ),
  );
}