nodefamily_views_arguments()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;
}
?>