Ejemplo n.º 1
0
 public function index()
 {
     if (isAjaxTable()) {
         return $this->_index();
     }
     $this->view()->assign('my_shop', getMyShop())->display();
 }
Ejemplo n.º 2
0
Archivo: Role.php Proyecto: frycnx/jxc
 public function index()
 {
     if (isAjaxTable()) {
         return $this->_index();
     }
     $this->view()->display();
 }
Ejemplo n.º 3
0
Archivo: Goods.php Proyecto: frycnx/jxc
 public function index()
 {
     if (isAjaxTable()) {
         return $this->_index();
     }
     $this->view()->assign('category', getCategory())->display();
 }
Ejemplo n.º 4
0
Archivo: Stock.php Proyecto: frycnx/jxc
 public function detail()
 {
     if (isAjaxTable()) {
         return $this->_detail();
     }
     $this->view()->assign('my_shop', getMyShop())->assign('category', getCategory())->display();
 }
Ejemplo n.º 5
0
 public function detail()
 {
     if (isAjaxTable()) {
         return $this->_detail();
     }
     $this->view()->display();
 }
Ejemplo n.º 6
0
 public function member()
 {
     if (isAjaxTable()) {
         return $this->_member();
     }
     $this->view()->assign('my_shop', getMyShop())->assign('member_level', getMemberLevel())->display();
 }
Ejemplo n.º 7
0
 public function goods()
 {
     if (isAjaxTable()) {
         return $this->_goods();
     }
     $this->view()->assign('my_shop', getMyShop())->assign('category', getCategory())->display('goodssale_goods');
 }