| 123456789101112131415161718 |
- <?php
- /**
- * 洛阳赤炎鹰网络科技有限公司
- * https://www.cyyvip.com
- * Copyright (c) 2022 赤店商城 All rights reserved.
- */
- namespace Common\Controller;
- use Common\Controller\HomebaseController;
- class MemberbaseController extends HomebaseController{
-
- function _initialize() {
- parent::_initialize();
-
- $this->check_login();
- $this->check_user();
- }
-
- }
|