$viewManager $viewManager : \Omega\View\ViewManager ViewManager object. Type ViewManager — Holds an instance of ViewManager.
render() render(\Omega\View\View $view) : string Render a view. This method is responsible for rendering a View object and processing its contents. Parameters \Omega\View\View $view Holds an instance of View. Returns string — Return the view.
setManager() setManager(\Omega\View\ViewManager $viewManager) : $this Set the view manager object. Parameters \Omega\View\ViewManager $viewManager Holds an instance of ViewManager. Returns $this —
__call() __call(string $name, mixed $values) : mixed Magic call. This method handles dynamic method calls, typically for macros. Parameters string $name Holds the method name. mixed $values Holds the method params/values. Throws \Exception Returns mixed —
extends() extends(string $template) : $this Extends the template. This method extends the current template with another layout template. Parameters string $template Holds the template name. Returns $this —