00001 <?php 00002 require_once("GenieGate/View.php"); 00003 00017 class GenieGate_View_Ganged extends GenieGate_View { 00018 var $views = array(); 00019 00025 function GenieGate_View_Ganged($v = array()){ 00026 $this->views = $v; 00027 } 00033 function addView($view){ 00034 array_push($this->views,$view); 00035 } 00036 00042 function getViews(){ 00043 return($this->views); 00044 } 00045 00049 function display(){ 00050 foreach($this->views as $v){ 00051 $v->display(); 00052 } 00053 } 00054 } 00055
Documentation generated by DoxyGen