Exemple #1
0
 public function index()
 {
     if (isAjaxTable()) {
         return $this->_index();
     }
     $this->view()->assign('my_shop', getMyShop())->display();
 }
Exemple #2
0
 public function index()
 {
     if (isAjaxTable()) {
         return $this->_index();
     }
     $this->view()->display();
 }
Exemple #3
0
 public function index()
 {
     if (isAjaxTable()) {
         return $this->_index();
     }
     $this->view()->assign('category', getCategory())->display();
 }
Exemple #4
0
 public function detail()
 {
     if (isAjaxTable()) {
         return $this->_detail();
     }
     $this->view()->assign('my_shop', getMyShop())->assign('category', getCategory())->display();
 }
Exemple #5
0
 public function detail()
 {
     if (isAjaxTable()) {
         return $this->_detail();
     }
     $this->view()->display();
 }
Exemple #6
0
 public function member()
 {
     if (isAjaxTable()) {
         return $this->_member();
     }
     $this->view()->assign('my_shop', getMyShop())->assign('member_level', getMemberLevel())->display();
 }
Exemple #7
0
 public function goods()
 {
     if (isAjaxTable()) {
         return $this->_goods();
     }
     $this->view()->assign('my_shop', getMyShop())->assign('category', getCategory())->display('goodssale_goods');
 }