View

Views are the web pages that are displayed within client's browers, and can be created using the create view CLI command, such as:

apex create view <PACKAGE> <URI>

apex create view my-shop admin/shop/orders

Using the above example, this will create two new files at /views/html/admin/shop/orders.html and /views/php/admin/shop/orders.php, the .html being the contents of the view and the .php file executing any necessary functionality for the view acting as a bridge between the front-end views and the back-end application.

The view can now be accessed via web browser at the URL http://localhost/admin/shop/orders.

For full details on creating and developing with views, please consult the Create Views section of the documentation.