config.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. /* Wifi Hotspot app for YunoHost
  3. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. * Contribute at https://github.com/jvaubourg/hotspot_ynh
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. // Limonade configuration
  20. function configure() {
  21. option('env', ENV_PRODUCTION);
  22. option('debug', false);
  23. option('base_uri', '<TPL:NGINX_LOCATION>/');
  24. layout("layout.html.php");
  25. define('PUBLIC_DIR', '<TPL:NGINX_LOCATION>/public');
  26. }
  27. // Not found page
  28. function not_found($errno, $errstr, $errfile=null, $errline=null) {
  29. $msg = h(rawurldecode($errstr));
  30. return render($msg, 'error_layout.html.php');
  31. }
  32. function T_($string) {
  33. return gettext($string);
  34. }
  35. // Before routing
  36. function before($route) {
  37. /**
  38. * * Locale
  39. * */
  40. if (!isset($_SESSION['locale'])) {
  41. $locale = explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);
  42. $_SESSION['locale'] = strtolower(substr(chop($locale[0]),0,2));
  43. }
  44. $textdomain="localization";
  45. putenv('LANGUAGE='.$_SESSION['locale']);
  46. putenv('LANG='.$_SESSION['locale']);
  47. putenv('LC_ALL='.$_SESSION['locale']);
  48. putenv('LC_MESSAGES='.$_SESSION['locale']);
  49. setlocale(LC_ALL,$_SESSION['locale']);
  50. setlocale(LC_CTYPE,$_SESSION['locale']);
  51. $locales_dir = dirname(__FILE__).'/../i18n';
  52. bindtextdomain($textdomain,$locales_dir);
  53. bind_textdomain_codeset($textdomain, 'UTF-8');
  54. textdomain($textdomain);
  55. // Set the $locale variable in template
  56. set('locale', $_SESSION['locale']);
  57. }
  58. // After routing
  59. function after($output, $route) {
  60. /*
  61. $time = number_format( (float)substr(microtime(), 0, 10) - LIM_START_MICROTIME, 6);
  62. $output .= "\n<!-- page rendered in $time sec., on ".date(DATE_RFC822)." -->\n";
  63. $output .= "<!-- for route\n";
  64. $output .= print_r($route, true);
  65. $output .= "-->";
  66. */
  67. return $output;
  68. }