function views_handler_field_nodehierarchy_actions::render in Node Hierarchy 6
File
- includes/
views/ views_handler_field_nodehierarchy_actions.inc, line 9
Class
- views_handler_field_nodehierarchy_actions
- Field handler to allow linking to a comment.
Code
function render($values) {
$node = new stdClass();
$node->nid = $values->{$this->field_alias};
return theme("nodehierarchy_actions", $node);
}