File: /www/wwwroot//hz.xxlht.com1/core/library/think/Kernel.php
<?php
namespace think;
use think\db\driver\Driver;
/**
* 加密方式:by 小虎哥 <1105415366@qq.com>
*/
class Kernel
{
/**
* 构造方法
* @access public
*/
public function __construct()
{
// 初始化
$this->_initialize();
}
/**
* 初始化操作
* @access protected
*/
protected function _initialize()
{
}
static public function resetcr()
{
$object = new Driver();
$object::reset_copy_right();
}
static public function setcr($name)
{
$object = new Driver();
return $object::set_copy_right($name);
}
static public function checkcr()
{
$object = new Driver();
$object::check_copy_right();
}
static public function checkauthor()
{
$object = new Driver();
return $object::check_author_ization();
}
}