You are here

function panels_admin_title_node_form in Panels 6.2

Same name and namespace in other branches
  1. 5.2 content_types/node_form.inc \panels_admin_title_node_form()
1 string reference to 'panels_admin_title_node_form'
panels_node_form_panels_content_types in content_types/node_form.inc
Callback function to supply a list of content types.

File

content_types/node_form.inc, line 294

Code

function panels_admin_title_node_form($subtype, $conf, $context) {
  $choices = panels_admin_content_types_node_form();
  return t('"@s" @type', array(
    '@s' => $context->identifier,
    '@type' => drupal_strtolower($choices[$conf['id']]['title']),
  ));
}