home.php 428 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * cms首页
  4. *
  5. *
  6. *
  7. */
  8. //use Shopnc\Tpl;
  9. defined('InShopNC') or exit('Access Invalid!');
  10. require_once (BASE_ROOT_PATH . '/helper/util_helper.php');
  11. class homeControl extends mobileHomeControl
  12. {
  13. public function __construct()
  14. {
  15. parent::__construct();
  16. }
  17. public function memnoOp()
  18. {
  19. $mem_no = util::mem_no();
  20. return self::outsuccess(array('mem_no' => $mem_no));
  21. }
  22. }