You are here

function context_node_permission in Context Node 7

Implements hook_permission()

File

./context_node.module, line 6

Code

function context_node_permission() {
  return array(
    'set context on nodes' => array(
      'title' => t('Set context on nodes'),
      'description' => t('Allow the user to set a context on each node.'),
    ),
  );
}