function node_type_delete

7.x node.module node_type_delete($type)
6.x node.module node_type_delete($type)

Deletes a node type from the database.

Parameters

$type: The machine-readable name of the node type to be deleted.

2 calls to node_type_delete()
node_types_rebuild in drupal-6.x/modules/node/node.module
Resets the database cache of node types, and saves all new or non-modified module-defined node types to the database.
node_type_delete_confirm_submit in drupal-6.x/modules/node/content_types.inc
Process content type delete confirm submissions.

File

drupal-6.x/modules/node/node.module, line 524
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

function node_type_delete($type) {
  $info = node_get_types('type', $type);
  db_query("DELETE FROM {node_type} WHERE type = '%s'", $type);
  module_invoke_all('node_type', 'delete', $info);
}