active=$a; init_session(); $this->screen_width =$_SESSION["screen_width" ]; $this->screen_height=$_SESSION["screen_height" ]; if($this->screen_width>$this->screen_height) //横向布局 { $this->sidebar_width=1; } else //纵向布局 { $this->sidebar_width=2; } } private function echo_item($link,$text) { echo ''.$text.''; } private function echo_header() { echo_html_header("ChinaMall ERP System"); //echo_hr(); } public function start() { $this->echo_header(); echo '
'; echo_html_end(); } };//class UISideBar ?>