You are here

function link_node_help in link node 7

Same name and namespace in other branches
  1. 5 link_node.module \link_node_help()
  2. 6 link_node.module \link_node_help()

Generates help text for this module

File

./link_node.module, line 173
Implements the link_node module.

Code

function link_node_help($path, $arg) {
  switch ($path) {
    case 'admin/help#link_node':
      $output = t('<p><strong>Nodes That Link To Other Nodes</strong></p>
      <p>
      You can link nodes to other nodes using the following syntax:<br>
      [node:<em>node_id</em>,title="val1"]<br><br>
      </p>
      <p>
      Some examples:<br>
      [node:123]<br>
      [node:123,title="original"]<br>
      </p><p>
      Site admin: If there are properties of a node that you want to allow your users to modify when referring to them,
      you can specify those in the filter configuration.
      </p>');
      return $output;
  }
}