index.php 318 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * cms首页
  4. *
  5. *
  6. ***/
  7. defined('InShopNC') or exit('Access Invalid!');
  8. class indexControl extends CMSHomeControl{
  9. public function __construct() {
  10. parent::__construct();
  11. Tpl::output('index_sign','index');
  12. }
  13. public function indexOp(){
  14. Tpl::showpage('index');
  15. }
  16. }