You are here

function content_type_overview_theme in Content type overview 6

Same name and namespace in other branches
  1. 7 content_type_overview.module \content_type_overview_theme()

Implementation of hook_theme().

File

./content_type_overview.module, line 37
Provides easy access to all basic content type settings.

Code

function content_type_overview_theme($existing, $type, $theme, $path) {
  return array(
    'content_type_overview_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'content_type_overview_group_title' => array(
      'arguments' => array(
        'title' => NULL,
      ),
    ),
  );
}