You are here

function theme_content_overview_links in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 includes/content.admin.inc \theme_content_overview_links()
1 theme call to theme_content_overview_links()
content_types_overview in includes/content.admin.inc
Menu callback; replacement for node_overview_types().

File

includes/content.admin.inc, line 58
Administrative interface for content type creation.

Code

function theme_content_overview_links() {
  return '<div class="content-overview-links">' . l(t('» Add a new content type'), 'admin/content/types/add') . '</div>';
}