You are here

function advanced_forum_forum_search_content_type_admin_title in Advanced Forum 7.2

Same name and namespace in other branches
  1. 6.2 plugins/content_types/forum_search.inc \advanced_forum_forum_search_content_type_admin_title()

Callback for admin title.

File

plugins/content_types/forum_search.inc, line 80
Forum topic search.

Code

function advanced_forum_forum_search_content_type_admin_title($subtype, $conf, $context) {
  return t('"@s" search', array(
    '@s' => $context->identifier,
  ));
}