function ctools_comment_created_content_type_admin_title

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,
    ));
}