index.php 677 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Error reporting setup and loading of Classes and Constants.
  4. *
  5. * @package bones
  6. * @link https://git.lattuga.net/netico/code-library/src/master/Framework
  7. * @copyright Copyright (c) 2016, 2022 netico <netico@riseup.net>
  8. * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License
  9. * @author netico <netico@riseup.net>
  10. */
  11. // Error reporting
  12. ini_set('display_errors', '1');
  13. ini_set('xdebug.scream', '1');
  14. error_reporting(E_ALL);
  15. // Constants
  16. require __DIR__ . "/constants.php";
  17. // Classes
  18. require __DIR__ . "/Configuration.php";
  19. require __DIR__ . "/SQLite.php";
  20. require __DIR__ . "/Template.php";
  21. require __DIR__ . "/Obfuscation.php";