Hooks::__construct PHP Method

__construct() public method

初始化相关信息
public __construct ( )
    public function __construct()
    {
        $this->mid = $_SESSION['mid'];
        $this->model = model('AddonData');
        $this->tVar = array();
    }

Usage Example

 public function __construct()
 {
     if (strtolower(ACTION_NAME) === 'index' && strtolower(MODULE_NAME) === 'profile' && strtolower(APP_NAME) === 'public') {
         $this->isRefresh = 1;
     }
     parent::__construct();
 }
All Usage Examples Of Hooks::__construct