Download the PHP package icanboogie/view without Composer

On this page you can find all versions of the php package icanboogie/view. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package view

View

Release Code Coverage Downloads

The icanboogie/view package provides the view part of the model-view-controller (MVC) architectural pattern. It extends the features of the icanboogie/routing package—more precisely its controllers—and together with the icanboogie/render package it helps in separating presentation from logic.

Installation

Getting started

Before you get started you'll need to define some prototype methods to bind some render components to View instances, and View instances to the Controller instances that use them.

If you use the icanboogie/view package with ICanBoogie, you can simply require the icanboogie/bind-view package and let it deal with bindings.

The following code demonstrates how to bind view prototype property of Controller instances. The binding is defined by the ControllerBindings traits.

Views and controllers

Views are associated with controllers through the lazy getter view, thus $this->view is all is takes to start a view inside a controller. The view then waits for the Controller::action event, to perform its rendering.

The following example demonstrates how a query of some articles is set as the view content, a title is also added to the view variables:

Note: The model getter is provided by the icanboogie/module package, and is only available if the route has a module property, which is automatic for routes defined by modules.

The assign() method may be used to assign multiple values to the view with a single call:

Altering the view before it is returned to the controller

The event View::alter of class View\AlterEvent is fired when the instance is created by the view getter. Event hooks may used this event to alter the view before it is returned to the controller.

The following example demonstrates how a view can be altered before it is returned to the controller. If the route has a module property, the "template" directory of the module is added to the template resolver:

Rendering a view

Views are rendered using templates and layouts. Templates render the content of views, while layouts decorate the templates. For instance an "articles/list" template would be used to render a collection of articles, while a "page" layout would be used to decorate that rendered collection with the layout of a website.

The template used to present the content of the view is resolved as follows:

The layout used to decorate the template is resolved as follows:

Because the template and layout properties are lazily created, you can define them instead of letting View find the right template names. The following example demonstrates how to cancel the template and define "admin" as layout:

The templates and layouts are usually specified as names e.g. "page" or "articles/show", and not by path e.g. "/path/to/my/template.phtml". A template resolver and an engine collection are used to resolve these names into pathname, and the engine collection is used to render the templates with the appropriate engines. The reason for this is that templates are usually defined as a hierarchy in your application, and using this hierarchy they can be replaced to better suit your application.

For instance, the framework ICanBoogie decorates the default template resolver to add additional features, and also to add the application directories to the template resolver.

Please take a look at the icanboogie/render package for more details about template resolvers and engine collections.

Providing a cached result

The event View::render:before of class View\BeforeRenderEvent is fired before a view is rendered. Event hooks may use this event to provide a cached result and save the cost of rendering.

The following example demonstrates how an event hook may provide a cached result of a previously rendered view. Because the JSON of a view instance includes its template, layout, and variables, its hash is perfect as cache key:

Rendering JSON and stuff

Views are often used to render HTML, but they can also render JSON, XML and other nice things, and it's rather simple since all you have to do is alter the Response instance of your controller according to what you are rendering. This is not really a View feature, but its something to remember.

The following example demonstrates how the response is altered to suit the JSON response:

Cancelling a view

A view can be cancelled when you need to return a different result or when you want to cancel its rendering. Views are automatically cancelled when the controller they are attached to returns a result. A view can also be cancelled by setting the view property of its controller to null.

The following example demonstrates how views can be cancelled using these methods:

Rendering a partial

The partial() method renders a partial using the view's renderer:

Remember that the view is included in the variables passed to the template.

Prototype methods

The following prototypes method are used. The ControllerBindings trait may be used to help hinting code.

Events


Continuous Integration

The project is continuously tested by GitHub actions.

Tests Static Analysis Code Style

Code of Conduct

This project adheres to a Contributor Code of Conduct. By participating in this project and its community, you're expected to uphold this code.

Contributing

See CONTRIBUTING for details.


All versions of view with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
ext-json Version *
icanboogie/event Version ^4.0
icanboogie/render Version ^0.7|^0.8
icanboogie/routing Version ^5.0|^4.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package icanboogie/view contains the following files

Loading the files please wait ....