• Main Page
  • Related Pages
  • Modules
  • Classes
  • Files
  • File List
  • File Members

handlers/views_handler_sort_menu_hierarchy.inc

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 }

Generated on Sun Feb 26 2012 12:52:51 for Views by  doxygen 1.7.1