You are here

function flexiform_add_modal_button_content_type_admin_title in Flexiform 7

Returns the administrative title for a type.

File

plugins/content_types/add_modal_button.inc, line 98
Plugin to handle attached entity content types

Code

function flexiform_add_modal_button_content_type_admin_title($subtype, $conf, $context) {
  $flexiform = entity_load_single('flexiform', $subtype);
  return t('Flexiform Add Modal Button: @form', array(
    '@form' => $flexiform->label,
  ));
}