You are here

function theme_content_type_overview_group_title in Content type overview 6

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

Render a group heading

1 theme call to theme_content_type_overview_group_title()
_content_type_overview_preprocess in ./content_type_overview.module
Preprocessor for node type forms.

File

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

Code

function theme_content_type_overview_group_title($title) {
  return '<strong>' . $title . '</strong>';
}