You are here

function private_theme in Private 7

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

Implements hook_theme().

File

./private.module, line 273
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(
      'variables' => array(),
    ),
  );
}