CORE/core/view.php : 237 CORE/core/view.php : 196 CORE/core/controller.php : 120 APP/controller/tools/source.php : 75 CORE/core/controller.php : 89 CORE/core/controller.php : 70 CORE/core.php : 170 BASE/index.php : 9 0.00185 - Loading view "view/page/source.html" CORE/core/view.php : 237 CORE/core/view.php : 196 CORE/core/controller.php : 120 APP/controller/index.php : 55 APP/controller/tools/source.php : 73 CORE/core/controller.php : 89 CORE/core/controller.php : 70 CORE/core.php : 170 BASE/index.php : 9 0.00222 - Loading view "view/page.html" UltraLight Showcase

Source for controller:errors

<?php
namespace App\Controller;
/**
 * Page displaying the various error messages.
 *
 * note: This page breaks some code design principles on purpose.
 */
class Errors extends Index
{

    protected function _run()
    {
        echo $this->_output('Error Example', $this->_show('page/errors', null, true));
        $array = [true, 1, "String", 'last' => null];
        $obj = new \stdClass();
        $obj->boolean = true;
        $obj->integer = 1;
        $obj->string = "String";
        $obj->null = null;
        $test = [
            'This is an example',
            $array,
            $obj,
            "<a href=''></a>",
            'alert("Test!");',
            'Unescaped GET' => $_GET,
            'Sanitized GET' => \Sanitize::clean($_GET),
        ];
        \Show::debug($test);
        \Show::info('Info message example.');
        \Show::error('Error message example.');
        \Show::info('Message with custom color/title', 'Custom Title', '#00FF00');
        Example_Of_Non_Existent_Class::test();
    }
}
CORE/core.php : 185 BASE/index.php : 9 0.00233 - Loaded classes array (14) ( 'Show' => array (2) ( 'file' => "CORE/show.php", 'time' => 0.0002, ), 'Config' => array (2) ( 'file' => "CORE/config.php", 'time' => 0.00022, ), 'Core\Cache' => array (2) ( 'file' => "CORE/core/cache.php", 'time' => 0.00026, ), 'Core\Cache\File' => array (2) ( 'file' => "CORE/core/cache/file.php", 'time' => 0.00026, ), 'Core\Arrays' => array (2) ( 'file' => "CORE/core/arrays.php", 'time' => 0.00045, ), 'Request' => array (2) ( 'file' => "CORE/request.php", 'time' => 0.00072, ), 'Sanitize' => array (2) ( 'file' => "CORE/sanitize.php", 'time' => 0.00074, ), 'Core\Controller' => array (2) ( 'file' => "CORE/core/controller.php", 'time' => 0.00079, ), 'App\Controller\Index' => array (2) ( 'file' => "APP/controller/index.php", 'time' => 0.00079, ), '\App\Controller\Tools\Source' => array (2) ( 'file' => "APP/controller/tools/source.php", 'time' => 0.0008, ), 'Core\View' => array (2) ( 'file' => "CORE/core/view.php", 'time' => 0.00083, ), 'App\Library\Sourcelist' => array (2) ( 'file' => "APP/library/sourcelist.php", 'time' => 0.00178, ), 'Core\Format\Variable' => array (2) ( 'file' => "CORE/core/format/variable.php", 'time' => 0.00205, ), 'Core\Bootstrap\Navbar' => array (2) ( 'file' => "CORE/core/bootstrap/navbar.php", 'time' => 0.00218, ), ) CORE/core.php : 186 BASE/index.php : 9 0.00381 - Debug "Done."