12345678910111213141516171819202122 |
- <?php
- /**
- * cms首页
- *
- *
- *
- */
- //use Shopnc\Tpl;
- defined('InShopNC') or exit('Access Invalid!');
- class homeControl extends indexControl
- {
- public function __construct()
- {
- $_POST['client_type'] = 'wap';
- $_GET['client_type'] = 'wap';
- parent::__construct();
- }
- }
|