You are here

function panels_admin_title_user_picture in Panels 6.2

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

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

1 string reference to 'panels_admin_title_user_picture'
panels_user_picture_panels_content_types in content_types/user_picture.inc
Callback function to supply a list of content types.

File

content_types/user_picture.inc, line 52

Code

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