示例#1
0
 function SC_SmartphoneView($setPrevURL = true)
 {
     parent::SC_SiteView($setPrevURL);
     $this->_smarty->template_dir = SMARTPHONE_TEMPLATE_REALDIR;
     $this->_smarty->compile_dir = SMARTPHONE_COMPILE_REALDIR;
     $this->assignTemplatePath(DEVICE_TYPE_SMARTPHONE);
 }
示例#2
0
 function SC_MobileView($setPrevURL = true)
 {
     parent::SC_SiteView($setPrevURL);
     $this->_smarty->template_dir = MOBILE_TEMPLATE_REALDIR;
     $this->_smarty->compile_dir = MOBILE_COMPILE_REALDIR;
     $this->assignTemplatePath(DEVICE_TYPE_MOBILE);
 }
示例#3
0
 function SC_UserView($template_dir, $compile_dir = COMPILE_REALDIR)
 {
     parent::SC_SiteView();
     $this->_smarty->template_dir = $template_dir;
     $this->_smarty->compile_dir = $compile_dir;
 }