function node_uri

Implements callback_entity_info_uri().

2 string references to 'node_uri'

File

drupal/modules/node/node.module, line 249
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_uri($node) {
  return array(
    'path' => 'node/' . $node->nid,
  );
}