You are here

function private_theme in Private 6

Same name and namespace in other branches
  1. 7.2 private.module \private_theme()
  2. 7 private.module \private_theme()

File

./private.module, line 228
A tremendously simple access control module -- it allows users to mark individual nodes as private; users with 'access private content' perms can read these nodes, while others cannot.

Code

function private_theme() {
  return array(
    'private_node_link' => array(
      'arguments' => array(
        'node' => NULL,
      ),
    ),
  );
}