function ctools_user_profile_content_type_admin_title

Display the administrative title for a panel pane in the drag & drop UI.

File

plugins/content_types/user_context/user_profile.inc, line 63

Code

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