function title_field_ui_save in Title field UI 7
1 call to title_field_ui_save()
File
- ./
title_field_ui.module, line 177 - Allows administrators to configure the title field from the Field UI.
Code
function title_field_ui_save($entity_type, $bundle, array $title_field) {
variable_set('title_field_' . $entity_type . ':' . $bundle, $title_field);
if ($entity_type == 'node') {
$node_type = node_type_get_type($bundle);
$node_type->has_title = 1;
$node_type->title_label = $title_field['label'];
node_type_save($node_type);
}
}