CLASS_AJAX::__construct PHP Метод

__construct() публичный Метод

日志
public __construct ( )
    function __construct()
    {
        //构造函数
        $this->obj_base = $GLOBALS["obj_base"];
        //基类
        $this->config = $this->obj_base->config;
        $this->alert = (include_once BG_PATH_LANG . $this->config["lang"] . "/alert.php");
        //载入提示信息
        $this->log = (include_once BG_PATH_LANG . $this->config["lang"] . "/log.php");
        //载入日志内容
        $this->type = (include_once BG_PATH_LANG . $this->config["lang"] . "/type.php");
        //载入类型文件
        $this->opt = (include_once BG_PATH_LANG . $this->config["lang"] . "/opt.php");
        //载入设置配置
    }