Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 553 Bytes

File metadata and controls

23 lines (13 loc) · 553 Bytes

GDOv7 Bootstrap

The GDOv7 application framework uses itself to install.

The bootstrap process:

@include protected/config.php
require GDO7.php
Application::init();

That's it. GDO is useable.

GDOv7 Bootstrap: Init

Of course GDOv7 is humble. It does not do anything when bootstrapped.

Try to enable the logger, debugger and render something.

Debug::init(true, true) # init debugger with die and mail.
Logger::init('testuser', 0xffffffff); # all log levels
GDT_String::make()->initial("Hello world")->render();