39 function __construct($a_title =
"", $a_value =
"", $a_info =
"")
53 $this->title = $a_title;
73 $this->info = $a_info;
93 $this->value = $a_value;
108 $this->disabled = $a_disabled;
123 $this->sub_items[] = $a_item;
138 $subInputItems = array();
140 foreach( $this->sub_items as $subItem )
142 if( $subItem->getType() ==
'section_header' )
147 $subInputItems[] = $subItem;
151 $subInputItems = array_merge( $subInputItems, $subItem->getSubInputItemsRecursive() );
155 return $subInputItems;