config.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. // Limonade configuration
  3. function configure() {
  4. option('env', ENV_PRODUCTION);
  5. option('debug', false);
  6. option('base_uri', '<TPL:NGINX_LOCATION>/');
  7. layout("layout.html.php");
  8. define('PUBLIC_DIR', '<TPL:NGINX_LOCATION>/public');
  9. }
  10. // Not found page
  11. function not_found($errno, $errstr, $errfile=null, $errline=null) {
  12. $msg = h(rawurldecode($errstr));
  13. return render($msg, 'error_layout.html.php');
  14. }
  15. function T_($string) {
  16. return gettext($string);
  17. }
  18. // Before routing
  19. function before($route) {
  20. /**
  21. * * Locale
  22. * */
  23. if (!isset($_SESSION['locale'])) {
  24. $locale = explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);
  25. $_SESSION['locale'] = strtolower(substr(chop($locale[0]),0,2));
  26. }
  27. $textdomain="localization";
  28. putenv('LANGUAGE='.$_SESSION['locale']);
  29. putenv('LANG='.$_SESSION['locale']);
  30. putenv('LC_ALL='.$_SESSION['locale']);
  31. putenv('LC_MESSAGES='.$_SESSION['locale']);
  32. setlocale(LC_ALL,$_SESSION['locale']);
  33. setlocale(LC_CTYPE,$_SESSION['locale']);
  34. $locales_dir = dirname(__FILE__).'/../i18n';
  35. bindtextdomain($textdomain,$locales_dir);
  36. bind_textdomain_codeset($textdomain, 'UTF-8');
  37. textdomain($textdomain);
  38. // Set the $locale variable in template
  39. set('locale', $_SESSION['locale']);
  40. }
  41. // After routing
  42. function after($output, $route) {
  43. /*
  44. $time = number_format( (float)substr(microtime(), 0, 10) - LIM_START_MICROTIME, 6);
  45. $output .= "\n<!-- page rendered in $time sec., on ".date(DATE_RFC822)." -->\n";
  46. $output .= "<!-- for route\n";
  47. $output .= print_r($route, true);
  48. $output .= "-->";
  49. */
  50. return $output;
  51. }