Implementation of hook_enable().

A node access module needs to force a rebuild of the node access table when it is enabled to ensure that things are set up.

File

developer/examples/node_access_example.install, line 35

Code

function node_access_example_enable() {
  node_access_rebuild();
}