IViewRenderer
IViewRenderer interface is implemented by a view renderer class.
A view renderer is
viewRenderer application component whose wants to replace the default view rendering logic implemented in
CBaseController.
Public Methods
| Method |
Description |
Defined By |
| renderFile() | Renders a view file. | IViewRenderer |
Method Details
abstract public mixed renderFile(CBaseController $context, string $file, mixed $data, boolean $return) |
| $context | CBaseController | the controller or widget who is rendering the view file. |
| $file | string | the view file path |
| $data | mixed | the data to be passed to the view |
| $return | boolean | whether the rendering result should be returned |
| {return} | mixed | the rendering result, or null if the rendering result is not needed. |
Renders a view file.