PageRenderTime 38ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/application/config.php

https://bitbucket.org/chrispiechowicz/zepto
PHP | 45 lines | 28 code | 15 blank | 2 comment | 1 complexity | 0d1ee8ea6c73167881ab483d41f8546d MD5 | raw file
Possible License(s): LGPL-2.1, MIT, BSD-3-Clause
  1. <?php
  2. // cms variant
  3. if (!defined("CMS"))
  4. define("CMS", "lem");
  5. // Application main config
  6. $settings = array(
  7. "database" => array(
  8. "host" => "localhost",
  9. "dbname" => "zepto3-0",
  10. "user" => "root",
  11. "password" => "",
  12. "charset" => "utf8"
  13. ),
  14. "locale" => array(
  15. "timezone" => "Europe/Berlin",
  16. "language" => "pl_PL",
  17. "default" => "pl",
  18. ),
  19. "log" => array(
  20. "level" => 4,
  21. "enable" => TRUE
  22. ),
  23. "admin" => array(
  24. "email" => "kpiechowicz@gmail.com",
  25. "name" => CMS,
  26. "language" => "pl",
  27. ),
  28. );
  29. Config::registerSystemSettings($settings);
  30. ?>