Open
Description
The Config.php support many more config parameters, but README is not documented it.
Besides this, a note on "basePath" parameter:
By reading the code, I see Config.php support "basePath" parameter. This is needed if user where to place ui.php in a sub path of web server document root. Example (http://myhost/my-app/ui.php). In this case, you must set config like this:
$config = new Config(array(
'basePath' => '/my-app/ui.php'
...
));
Note that the ui.php
part is required, or else the style will not render properly!