function title_field_ui_disable in Title field UI 7
1 call to title_field_ui_disable()
File
- ./
title_field_ui.module, line 187 - Allows administrators to configure the title field from the Field UI.
Code
function title_field_ui_disable($entity_type, $bundle) {
variable_del('title_field_' . $entity_type . ':' . $bundle);
if ($entity_type == 'node') {
$node_type = node_type_get_type($bundle);
$node_type->has_title = 0;
node_type_save($node_type);
}
}