Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
design_area_menu_recursive_management.inc
1 <?php
19 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
20 
32 {
33 
34 
40  {
41  Asset_Management::__construct($pm);
42 
43  $this->vars = Array(
44  'min_num_levels' => Array(
45  'added' => '0.0.1',
46  'type' => 'int',
47  'default' => 0,
48  'description' => 'The minimum number of levels into the hierarchy to always show. Set to zero to emulate "show_subs" == "on_current", set to number greater than zero to be "show_sub" == "always" for that many levels',
49  ),
50  'max_num_levels' => Array(
51  'added' => '0.0.1',
52  'type' => 'int',
53  'default' => 0,
54  'description' => 'The maximum number of levels into the hierarchy to show, blank or zero means no maximum',
55  ),
56  );
57 
58  }//end constructor
59 
60 
61 }//end class
62 ?>