function node_install

Implements hook_install().

Archivo

drupal-7.x/modules/node/node.install, line 434
Install, update and uninstall functions for the node module.

Código

function node_install() {
  // Populate the node access table.
  db_insert('node_access')->fields(array(
    'nid' => 0,
    'gid' => 0,
    'realm' => 'all',
    'grant_view' => 1,
    'grant_update' => 0,
    'grant_delete' => 0,
  ))->execute();
}