00001 <?php 00002 00011 class views_handler_sort_menu_hierarchy extends views_handler_sort { 00012 function query() { 00013 $this->ensure_my_table(); 00014 $max_depth = isset($this->definition['max depth']) ? $this->definition['max depth'] : MENU_MAX_DEPTH; 00015 for ($i = 1; $i <= $max_depth; ++$i) { 00016 $this->query->add_orderby($this->table_alias, $this->field . $i, $this->options['order']); 00017 } 00018 } 00019 }