You are here

function panels_admin_title_user_profile in Panels 6.2

Same name and namespace in other branches
  1. 5.2 content_types/user_profile.inc \panels_admin_title_user_profile()

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

1 string reference to 'panels_admin_title_user_profile'
panels_user_profile_panels_content_types in content_types/user_profile.inc
Callback function to supply a list of content types.

File

content_types/user_profile.inc, line 72

Code

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