You are here

function panels_profile_fields_configure_title in Panels 5.2

Same name and namespace in other branches
  1. 6.2 content_types/profile_fields.inc \panels_profile_fields_configure_title()

'Title' callback for the 'profile fields' content type.

1 string reference to 'panels_profile_fields_configure_title'
panels_profile_fields_panels_content_types in content_types/profile_fields.inc
Callback function to supply a list of content types.

File

content_types/profile_fields.inc, line 149

Code

function panels_profile_fields_configure_title($conf, $context) {
  return t('"@s" profile fields', array(
    '@s' => $conf['category'],
  ));
}