You are here

function tca_node_tca in Token Content Access 7

Implements hook_tca().

File

tca_node/tca_node.module, line 13
Main module file for Token Content Access nodes module.

Code

function tca_node_tca() {
  return array(
    'tca_node' => array(
      'entity type' => 'node',
      'base table' => 'node',
      'view path' => 'node/%/view',
    ),
  );
}