function ctools_user_form_component_content_type_admin_title

Ctools plugin admin title function for the a selectable form field.

File

plugins/content_types/user_form/user_form_component.inc, line 40

Code

function ctools_user_form_component_content_type_admin_title($subtype, $conf, $context) {
    return t('"@s" user form @field field', array(
        '@s' => $context->identifier,
        '@field' => $conf['field'],
    ));
}