You are here

function ctools_comment_created_content_type_admin_title in Chaos Tool Suite (ctools) 7

Returns the administrative title for a type.

File

plugins/content_types/comment/comment_created.inc, line 74

Code

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