# view **Repository Path**: mirrors_yiisoft/view ## Basic Information - **Project Name**: view - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Yii

Yii View Rendering Library


[![Latest Stable Version](https://poser.pugx.org/yiisoft/view/v)](https://packagist.org/packages/yiisoft/view) [![Total Downloads](https://poser.pugx.org/yiisoft/view/downloads)](https://packagist.org/packages/yiisoft/view) [![Build status](https://github.com/yiisoft/view/actions/workflows/build.yml/badge.svg)](https://github.com/yiisoft/view/actions/workflows/build.yml) [![Code Coverage](https://codecov.io/gh/yiisoft/view/branch/master/graph/badge.svg)](https://codecov.io/gh/yiisoft/view) [![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fyiisoft%2Fview%2Fmaster)](https://dashboard.stryker-mutator.io/reports/github.com/yiisoft/view/master) [![Static analysis](https://github.com/yiisoft/view/actions/workflows/static.yml/badge.svg?branch=master)](https://github.com/yiisoft/view/actions/workflows/static.yml?query=branch%3Amaster) [![type-coverage](https://shepherd.dev/github/yiisoft/view/coverage.svg)](https://shepherd.dev/github/yiisoft/view) This library provides templates rendering abstraction supporting layout-view-subview hierarchy, custom renderers with PHP-based as default, and more. It's used in [Yii Framework](https://www.yiiframework.com/) but is usable separately. ## Requirements - PHP 8.1 - 8.5. ## Installation The package could be installed with [Composer](https://getcomposer.org): ```shell composer require yiisoft/view ``` ## General usage The package provides two use cases for managing view templates: - [Basic functionality](docs/guide/en/basic-functionality.md) for use in any environment. - Advanced functionality for [use in a web environment](docs/guide/en/use-in-web-environment.md). ### State of `View` and `WebView` services While being immutable and, by itself, stateless, both `View` and `WebView` services have sets of stateful and mutable data. `View` service: - parameters, - blocks, - theme, - locale. `WebView` service: - parameters, - blocks, - theme, - locale, - title, - meta and link tags, - JS/CSS strings, - JS/CSS files. The state of `View` and `WebView` isn't cloned when the services are cloned. So when using `with*()`, both new and old instances are sharing the same set of stateful mutable data. It allows, for example, to get `WebView` via type-hinting in a controller and change context path: ```php final class BlogController { private WebView $view; public function __construct (WebView $view) { $this->view = $view->withContextPath(__DIR__.'/views'); } } ``` and then register CSS in a widget: ```php final class LastPosts extends Widget { private WebView $view; public function __construct (WebView $view) { $this->view = $view; } protected function run(): string { ... $this->view->registerCss('.lastPosts { background: #f1f1f1; }'); ... } } ``` #### Locale state You can change the locale by using `setLocale()`, which will be applied to all other instances that used current state including existing ones. If you need to change the locale only for a single instance, you can use the immutable `withLocale()` method. Locale will be applied to all views rendered within views with `render()` calls. Example with mutable method: ```php final class LocaleMiddleware implements MiddlewareInterface { ... private WebView $view; ... public function __construct ( ... WebView $view ... ) { $this->view = $view; } public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { ... $this->view->setLocale($locale); ... } } ``` Example with immutable method: ```php final class BlogController { private WebView $view; public function __construct (WebView $view) { $this->view = $view; } public function index() { return $this->view->withLocale('es')->render('index'); } } ``` #### Reset state To get a deep cloned `View` or `WebView` with a reset state use `withClearedState()`: ```php $view = $view->withClearedState(); ``` #### Deep clone To get a deep cloned `View` or `WebView`, including state cloning, use `deepClone()` method: ```php $view = $view->deepClone(); ``` ## Extensions - [Yii View Renderer](https://github.com/yiisoft/yii-view-renderer) - a wrapper that's used in [Yii Framework](https://www.yiiframework.com/). Adds extra functionality for a web environment and compatibility with [PSR-7](https://www.php-fig.org/psr/psr-7) interfaces. - [yiisoft/view-twig](https://github.com/yiisoft/view-twig) - an extension that provides a view renderer that will allow you to use the [Twig](https://twig.symfony.com) view template engine, instead of the default PHP renderer. ## Documentation - Guide: [English](docs/guide/en/README.md), [Português - Brasil](docs/guide/pt-BR/README.md) - [Internals](docs/internals.md) If you need help or have a question, the [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) is a good place for that. You may also check out other [Yii Community Resources](https://www.yiiframework.com/community). ## License The Yii View Rendering Library is free software. It's released under the terms of the BSD License. Please see [`LICENSE`](./LICENSE.md) for more information. Maintained by [Yii Software](https://www.yiiframework.com/). ### Support the project [![Open Collective](https://img.shields.io/badge/Open%20Collective-sponsor-7eadf1?logo=open%20collective&logoColor=7eadf1&labelColor=555555)](https://opencollective.com/yiisoft) ### Follow updates [![Official website](https://img.shields.io/badge/Powered_by-Yii_Framework-green.svg?style=flat)](https://www.yiiframework.com/) [![Twitter](https://img.shields.io/badge/twitter-follow-1DA1F2?logo=twitter&logoColor=1DA1F2&labelColor=555555?style=flat)](https://twitter.com/yiiframework) [![Telegram](https://img.shields.io/badge/telegram-join-1DA1F2?style=flat&logo=telegram)](https://t.me/yii3en) [![Facebook](https://img.shields.io/badge/facebook-join-1DA1F2?style=flat&logo=facebook&logoColor=ffffff)](https://www.facebook.com/groups/yiitalk) [![Slack](https://img.shields.io/badge/slack-join-1DA1F2?style=flat&logo=slack)](https://yiiframework.com/go/slack)