route.php 904 B

123456789101112131415161718192021
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: Dean <zxxjjforever@163.com>
  10. // +----------------------------------------------------------------------
  11. $_h5ios_route_file = EXTEND_PATH."huosdk/h5ios/helper.php";
  12. if (file_exists($_h5ios_route_file)) {
  13. require $_h5ios_route_file;
  14. }
  15. if (file_exists(CMF_ROOT."data/conf/route.php")) {
  16. $runtimeRoutes = include CMF_ROOT."data/conf/route.php";
  17. } else {
  18. $runtimeRoutes = [];
  19. }
  20. return $runtimeRoutes;