當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Tool::getPrevPage方法代碼示例

本文整理匯總了PHP中Tool::getPrevPage方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tool::getPrevPage方法的具體用法?PHP Tool::getPrevPage怎麽用?PHP Tool::getPrevPage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tool的用法示例。


在下文中一共展示了Tool::getPrevPage方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: error

 public function error($_info)
 {
     $this->_controll->assign('message', $_info);
     $this->_controll->assign('prev', Tool::getPrevPage());
     $this->_controll->display(SMARTY_ADMIN . 'public/error.html');
     exit;
 }
開發者ID:156248605,項目名稱:cishop,代碼行數:7,代碼來源:Redirect.class.php

示例2: clear

 public function clear()
 {
     if ($this->_model->clear()) {
         $this->_redirect->succ(Tool::getPrevPage(), '清理成功');
     } else {
         $this->_redirect->error('沒有找到可清理的訂單');
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:8,代碼來源:OrderAction.class.php

示例3: first

 public function first()
 {
     if (isset($_GET['id'])) {
         if ($this->_model->first()) {
             $this->_redirect->succ(Tool::getPrevPage());
         } else {
             $this->_redirect->error('售後服務設置默認失敗');
         }
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:10,代碼來源:ServiceAction.class.php

示例4: sort

 public function sort()
 {
     if (isset($_POST['send'])) {
         if ($this->_model->sort()) {
             $this->_redirect->succ(Tool::getPrevPage());
         } else {
             $this->_redirect->error('導航排序失敗');
         }
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:10,代碼來源:PriceAction.class.php

示例5: delete

 public function delete()
 {
     if (isset($_GET['id'])) {
         if ($this->_model->delete()) {
             $this->_redirect->succ(Tool::getPrevPage(), '品牌刪除成功');
         } else {
             $this->_redirect->error('品牌刪除失敗');
         }
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:10,代碼來源:BrandAction.class.php

示例6: error

 public function error($_url = '')
 {
     if (empty($_url)) {
         $this->_tpl->assign('message', $this->_message);
         $this->_tpl->assign('prev', Tool::getPrevPage());
         $this->_tpl->display(SMARTY_ADMIN . 'public/error.tpl');
         exit;
     } else {
         Redirect::getInstance()->succ($_url);
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:11,代碼來源:check.class.php

示例7: update

 public function update()
 {
     if (isset($_POST['send'])) {
         if ($this->_model->update()) {
             $this->_redirect->succ(Tool::getPrevPage(), '管理員修改成功');
         } else {
             $this->_redirect->error('管理員修改失敗');
         }
     }
     if (isset($_GET['id'])) {
         $this->_tpl->assign('AllLevel', Tool::setFormItem($this->_level->findAll(), 'id', 'level_name'));
         $this->_tpl->assign('OneManage', $this->_model->findOne());
         $this->_tpl->display(SMARTY_ADMIN . 'manage/update.tpl');
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:15,代碼來源:ManageAction.class.php

示例8: refund

 public function refund()
 {
     if ($this->_order->refund()) {
         $this->_redirect->succ(Tool::getPrevPage());
     } else {
         $this->_redirect->error('申請退款失敗,請重試');
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:8,代碼來源:MemberAction.class.php

示例9: isUp

 public function isUp()
 {
     if ($this->_model->isUp()) {
         $this->_redirect->succ(Tool::getPrevPage());
     }
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:6,代碼來源:GoodsAction.class.php


注:本文中的Tool::getPrevPage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。