b16296e910d4d74abbfd0d16ffe028d1f87f08a6
[plcapi.git] / demo / server / _bootstrap.php
1 <?php
2 /**
3  * Hackish code used to make the demos both viewable as source, runnable, and viewable as html
4  */
5
6 // Make errors visible
7 ini_set('display_errors', true);
8 error_reporting(E_ALL);
9
10 if (isset($_GET['showSource']) && $_GET['showSource']) {
11     $file = debug_backtrace()[0]['file'];
12     highlight_file($file);
13     die();
14 }
15
16 // Use the custom class autoloader. These two lines not needed when the phpxmlrpc library is installed using Composer
17 include_once __DIR__ . '/../../src/Autoloader.php';
18 PhpXmlRpc\Autoloader::register();