nodefamily_views_arguments

Versions
5
nodefamily_views_arguments()

Code

contributions/nodefamily/nodefamily.module, line 934

<?php
function nodefamily_views_arguments() {
  $arguments = array(
    'parent_nid' => array(
      'name' => t('Nodefamily: Parent ID'),
      'handler' => 'nodefamily_views_handler_arg_parent_nid',
      'help' => t('This argument is the Node ID of the parent node of a node.'),
    ),
    'child_nid' => array(
      'name' => t('Nodefamily: Child ID'),
      'handler' => 'nodefamily_views_handler_arg_child_nid',
      'help' => t('This argument is the Node ID of the child node of a node.'),
    ),
    'grandchild_nid' => array(
      'name' => t('Nodefamily: Grandchild ID'),
      'handler' => 'nodefamily_views_handler_arg_grand_child_nid',
      'help' => t('This argument is the Node ID of a grandchild node of a node.'),
    ),
    'grandparent_nid' => array(
      'name' => t('Nodefamily: Grandparent ID'),
      'handler' => 'nodefamily_views_handler_arg_grand_parent_nid',
      'help' => t('This argument is the Node ID of a grandparent node of a node.'),
    ),
  );
  return $arguments;
}
?>

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • Web page addresses and e-mail addresses turn into links automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters (without spaces) shown in the image.