码迷,mamicode.com
首页 > 其他好文 > 详细

新增页面跳转

时间:2016-11-18 22:30:06      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:tool   ceo   info   static   获取   ati   error   实例化   rect   

<?php
//跳转类
class Redirect {
    //用于存放实例化的对象
    static private $_instance = null;
    
    //公共静态方法获取实例化的对象
    static public function getInstance() {
        if (!(self::$_instance instanceof self)) {
            self::$_instance = new self();
            self::$_instance->_tpl = $_tpl;
        }
        return self::$_instance;
    }
    
    //私有克隆
    private function __clone() {}
    
    //私有构造
    private function __construct() {}
    
    //成功跳转
    public function succ() {
        $this->_tpl->assign(‘message‘, $_info);
        $this->_tpl->assign(‘url‘, $_url);
        $this->_tpl->display(SMARTY_ADMIN.‘public/succ.tpl‘);
        exit();
    }
    
    //失败返回
    public function error($_info) {
        $this->_tpl->assign(‘message‘, $_info);
        $this->_tpl->assign(‘prev‘, Tool::getPrevPage());
        $this->_tpl->display(SMARTY_ADMIN.‘public/error.tpl‘);
        exit();
    }
}
?>

 

新增页面跳转

标签:tool   ceo   info   static   获取   ati   error   实例化   rect   

原文地址:http://www.cnblogs.com/xujing6/p/6078967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!