loadBootstrap(); } protected function initMetas() { return array( array('name' => 'viewport', 'content' => 'width=device-width, initial-scale=1.0'), array('name' => 'format-detection', 'content' => 'telephone=yes'), array('charset' => 'utf-8'), array("http-equiv" => 'expires', 'content' => '0'), array("name" => 'robots', 'content' => 'noarchive'), ); } protected function initRawFields() { return array(); } protected function initTitle() { return "Welcome"; } } class WelcomeBody extends SimpleBody { public function __construct($document) { parent::__construct($document); } protected function getContent() { return "

Congratulations!

Your Web-Base Installation is now ready to use!


You can now login into your Administrator Dashboard to adjust your settings and add routes & pages. You can add new documents and views by adding classes in the corresponding directories and link to them, by creating rules in the Administrator Dashboard.

"; } } }