home.php 303 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * cms首页
  4. *
  5. *
  6. *
  7. */
  8. //use Shopnc\Tpl;
  9. defined('InShopNC') or exit('Access Invalid!');
  10. class homeControl extends indexControl
  11. {
  12. public function __construct()
  13. {
  14. $_POST['client_type'] = 'wap';
  15. $_GET['client_type'] = 'wap';
  16. parent::__construct();
  17. }
  18. }