You are here

function panels_admin_title_form in Panels 5.2

Same name and namespace in other branches
  1. 6.2 content_types/form.inc \panels_admin_title_form()
1 string reference to 'panels_admin_title_form'
panels_form_panels_content_types in content_types/form.inc
Callback function to supply a list of content types.

File

content_types/form.inc, line 68

Code

function panels_admin_title_form($conf, $context) {
  return t('"@s" base form', array(
    '@s' => $context->identifier,
  ));
}