人人商城

aliapp.ctrl.php 373B

1234567891011121314
  1. <?php
  2. /**
  3. * [WeEngine System] Copyright (c) 2014 WE7.CC
  4. * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
  5. */
  6. defined('IN_IA') or exit('Access Denied');
  7. $site = WeUtility::createModuleAliapp($entry['module']);
  8. $method = 'doPage' . ucfirst($entry['do']);
  9. if(!is_error($site)) {
  10. exit($site->$method());
  11. }
  12. exit();