index.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. error_reporting(E_ALL);
  3. /**
  4. * is Xhprof Hierarchical Profiler enabled?
  5. */
  6. $minimalConfig = @parse_ini_file('config/yalf.ini');
  7. if (@$minimalConfig['XHPROF']) {
  8. define('XHPROF', 1);
  9. } else {
  10. define('XHPROF', 0);
  11. }
  12. /**
  13. * rcms-like commons consts defines
  14. */
  15. define('CONFIG_PATH', 'config/');
  16. define('DATA_PATH', 'content/');
  17. define('USERS_PATH', 'content/users/');
  18. define('MODULES_PATH', 'modules/general/');
  19. /**
  20. * Profiler init
  21. */
  22. if (XHPROF) {
  23. $yalfConf = parse_ini_file(CONFIG_PATH . 'yalf.ini');
  24. if ($yalfConf['XHPROF_PATH']) {
  25. $xhProfLibsPath = $yalfConf['XHPROF_PATH'];
  26. } else {
  27. $xhProfLibsPath = 'xhprof';
  28. }
  29. define("XHPROF_ROOT", __DIR__ . '/' . $xhProfLibsPath);
  30. require_once (XHPROF_ROOT . '/xhprof_lib/utils/xhprof_lib.php');
  31. require_once (XHPROF_ROOT . '/xhprof_lib/utils/xhprof_runs.php');
  32. //append XHPROF_FLAGS_NO_BUILTINS if your PHP instance crashes
  33. xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
  34. }
  35. /**
  36. * Default headers
  37. */
  38. header('Last-Modified: ' . gmdate('r'));
  39. header('Content-Type: text/html; charset=UTF-8');
  40. header("Cache-Control: no-store, no-cache, must-revalidate");
  41. header("Pragma: no-cache");
  42. /**
  43. * Page generation time counters begins
  44. */
  45. $starttime = explode(' ', microtime());
  46. $starttime = $starttime[1] + $starttime[0];
  47. $query_counter = 0;
  48. /**
  49. * System initialization
  50. */
  51. require_once('api/autoloader.php'); //preloaging required libs
  52. define('LOGGED_IN', $system->getLoggedInState()); //emulating RCMS LOGGED_IN state
  53. require_once ($system->getIndexModulePath()); //react to some module routes
  54. if (XHPROF) {
  55. $xhprof_data = xhprof_disable();
  56. $xhprof_runs = new XHProfRuns_Default();
  57. $xhprof_run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_yalf");
  58. $xhprof_link = wf_modal(wf_img_sized('skins/xhprof.png', __('XHPROF'), 20), 'XHProf current page results', '<iframe src="' . $xhProfLibsPath . '/xhprof_html/index.php?run=' . $xhprof_run_id . '&source=xhprof_yalf" width="100%" height="750"></iframe>', '', '1024', '768');
  59. }
  60. //web based renderer template load
  61. if ($system->getRenderer() == 'WEB') {
  62. require_once($system->getSkinPath() . $system::SKIN_TEMPLATE_NAME);
  63. }