You are here

function nat_handler_argument_term_node_tid_depth::option_definition in Node Auto Term [NAT] 6

Same name and namespace in other branches
  1. 6.2 includes/nat_handler_argument_term_node_tid_depth.inc \nat_handler_argument_term_node_tid_depth::option_definition()
  2. 7.2 includes/nat_handler_argument_term_node_tid_depth.inc \nat_handler_argument_term_node_tid_depth::option_definition()
  3. 7 includes/nat_handler_argument_term_node_tid_depth.inc \nat_handler_argument_term_node_tid_depth::option_definition()

File

includes/nat_handler_argument_term_node_tid_depth.inc, line 16
NAT (Node Auto Term) nid views argument with depth handler.

Class

nat_handler_argument_term_node_tid_depth
Argument handler for NAT terms over NAT nid with depth.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['depth'] = array(
    'default' => 0,
  );
  $options['break_phrase'] = array(
    'default' => FALSE,
  );
  $options['set_breadcrumb'] = array(
    'default' => FALSE,
  );
  return $options;
}