本文整理匯總了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;
}
示例2: clear
public function clear()
{
if ($this->_model->clear()) {
$this->_redirect->succ(Tool::getPrevPage(), '清理成功');
} else {
$this->_redirect->error('沒有找到可清理的訂單');
}
}
示例3: first
public function first()
{
if (isset($_GET['id'])) {
if ($this->_model->first()) {
$this->_redirect->succ(Tool::getPrevPage());
} else {
$this->_redirect->error('售後服務設置默認失敗');
}
}
}
示例4: sort
public function sort()
{
if (isset($_POST['send'])) {
if ($this->_model->sort()) {
$this->_redirect->succ(Tool::getPrevPage());
} else {
$this->_redirect->error('導航排序失敗');
}
}
}
示例5: delete
public function delete()
{
if (isset($_GET['id'])) {
if ($this->_model->delete()) {
$this->_redirect->succ(Tool::getPrevPage(), '品牌刪除成功');
} else {
$this->_redirect->error('品牌刪除失敗');
}
}
}
示例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);
}
}
示例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');
}
}
示例8: refund
public function refund()
{
if ($this->_order->refund()) {
$this->_redirect->succ(Tool::getPrevPage());
} else {
$this->_redirect->error('申請退款失敗,請重試');
}
}
示例9: isUp
public function isUp()
{
if ($this->_model->isUp()) {
$this->_redirect->succ(Tool::getPrevPage());
}
}