├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── SECURITY.md ├── copilot-instructions.md ├── styles │ └── .gitkeep └── workflows │ ├── docs.yml │ └── translation.yml ├── .gitignore ├── .styleci.yml ├── .vale.ini ├── 000-packages.md ├── 001-yii-values.md ├── 002-issue-workflow.md ├── 003-roadmap.md ├── 004-namespaces.md ├── 005-development-tool.md ├── 006-git-commit-messages.md ├── 007-exceptions.md ├── 008-interfaces.md ├── 009-design-decisions.md ├── 010-code-style.md ├── 011-error-correction.md ├── 012-tests.md ├── 013-code-review.md ├── 014-docs.md ├── 015-phpstorm.md ├── 016-security-workflow.md ├── 017-tags.md ├── 018-widgets.md ├── 019-view-code-style.md ├── 020-package-release.md ├── 021-changelog-upgrade.md ├── 022-config-groups.md ├── LICENSE.md ├── README.md ├── _config.yml ├── _translations ├── cookbook │ ├── po │ │ └── ru │ │ │ ├── README.md.po │ │ │ ├── configuring-webservers_apache.md.po │ │ │ ├── configuring-webservers_general.md.po │ │ │ ├── configuring-webservers_iis.md.po │ │ │ ├── configuring-webservers_lighttpd.md.po │ │ │ ├── configuring-webservers_nginx-unit.md.po │ │ │ ├── configuring-webservers_nginx.md.po │ │ │ ├── disabling-csrf-protection.md.po │ │ │ ├── organizing-code_structuring-by-use-case-with-vertical-slices.md.po │ │ │ ├── preface.md.po │ │ │ └── sentry-integration.md.po │ ├── po4a.cfg │ └── pot │ │ ├── README.md.pot │ │ ├── configuring-webservers_apache.md.pot │ │ ├── configuring-webservers_general.md.pot │ │ ├── configuring-webservers_iis.md.pot │ │ ├── configuring-webservers_lighttpd.md.pot │ │ ├── configuring-webservers_nginx-unit.md.pot │ │ ├── configuring-webservers_nginx.md.pot │ │ ├── disabling-csrf-protection.md.pot │ │ ├── organizing-code_structuring-by-use-case-with-vertical-slices.md.pot │ │ ├── preface.md.pot │ │ └── sentry-integration.md.pot └── guide │ ├── po │ ├── es │ │ ├── README.md.po │ │ ├── caching_data.md.po │ │ ├── caching_overview.md.po │ │ ├── concept_aliases.md.po │ │ ├── concept_autoloading.md.po │ │ ├── concept_configuration.md.po │ │ ├── concept_di-container.md.po │ │ ├── concept_events.md.po │ │ ├── concept_immutability.md.po │ │ ├── databases_db-migrations.md.po │ │ ├── glossary.md.po │ │ ├── intro_upgrade-from-v2.md.po │ │ ├── intro_what-is-yii.md.po │ │ ├── runtime_cookies.md.po │ │ ├── runtime_handling-errors.md.po │ │ ├── runtime_logging.md.po │ │ ├── runtime_request.md.po │ │ ├── runtime_response.md.po │ │ ├── runtime_routing.md.po │ │ ├── runtime_sessions.md.po │ │ ├── security_authentication.md.po │ │ ├── security_authorization.md.po │ │ ├── security_best-practices.md.po │ │ ├── security_cryptography.md.po │ │ ├── security_overview.md.po │ │ ├── security_passwords.md.po │ │ ├── security_trusted-request.md.po │ │ ├── start_creating-project.md.po │ │ ├── start_databases.md.po │ │ ├── start_forms.md.po │ │ ├── start_gii.md.po │ │ ├── start_hello.md.po │ │ ├── start_looking-ahead.md.po │ │ ├── start_prerequisites.md.po │ │ ├── start_workflow.md.po │ │ ├── structure_action.md.po │ │ ├── structure_application.md.po │ │ ├── structure_domain.md.po │ │ ├── structure_entry-script.md.po │ │ ├── structure_handler.md.po │ │ ├── structure_middleware.md.po │ │ ├── structure_overview.md.po │ │ ├── structure_package.md.po │ │ ├── structure_service.md.po │ │ ├── tutorial_console-applications.md.po │ │ ├── tutorial_mailing.md.po │ │ ├── tutorial_performance-tuning.md.po │ │ ├── tutorial_using-with-event-loop.md.po │ │ ├── tutorial_using-yii-with-roadrunner.md.po │ │ ├── tutorial_using-yii-with-swoole.md.po │ │ └── views_view-injections.md.po │ ├── id │ │ ├── README.md.po │ │ ├── caching_data.md.po │ │ ├── caching_overview.md.po │ │ ├── concept_aliases.md.po │ │ ├── concept_autoloading.md.po │ │ ├── concept_configuration.md.po │ │ ├── concept_di-container.md.po │ │ ├── concept_events.md.po │ │ ├── concept_immutability.md.po │ │ ├── databases_db-migrations.md.po │ │ ├── glossary.md.po │ │ ├── intro_upgrade-from-v2.md.po │ │ ├── intro_what-is-yii.md.po │ │ ├── runtime_cookies.md.po │ │ ├── runtime_handling-errors.md.po │ │ ├── runtime_logging.md.po │ │ ├── runtime_request.md.po │ │ ├── runtime_response.md.po │ │ ├── runtime_routing.md.po │ │ ├── runtime_sessions.md.po │ │ ├── security_authentication.md.po │ │ ├── security_authorization.md.po │ │ ├── security_best-practices.md.po │ │ ├── security_cryptography.md.po │ │ ├── security_overview.md.po │ │ ├── security_passwords.md.po │ │ ├── security_trusted-request.md.po │ │ ├── start_creating-project.md.po │ │ ├── start_databases.md.po │ │ ├── start_forms.md.po │ │ ├── start_gii.md.po │ │ ├── start_hello.md.po │ │ ├── start_looking-ahead.md.po │ │ ├── start_prerequisites.md.po │ │ ├── start_workflow.md.po │ │ ├── structure_action.md.po │ │ ├── structure_application.md.po │ │ ├── structure_domain.md.po │ │ ├── structure_entry-script.md.po │ │ ├── structure_handler.md.po │ │ ├── structure_middleware.md.po │ │ ├── structure_overview.md.po │ │ ├── structure_package.md.po │ │ ├── structure_service.md.po │ │ ├── tutorial_console-applications.md.po │ │ ├── tutorial_mailing.md.po │ │ ├── tutorial_performance-tuning.md.po │ │ ├── tutorial_using-with-event-loop.md.po │ │ ├── tutorial_using-yii-with-roadrunner.md.po │ │ ├── tutorial_using-yii-with-swoole.md.po │ │ └── views_view-injections.md.po │ └── ru │ │ ├── README.md.po │ │ ├── caching_data.md.po │ │ ├── caching_overview.md.po │ │ ├── concept_aliases.md.po │ │ ├── concept_autoloading.md.po │ │ ├── concept_configuration.md.po │ │ ├── concept_di-container.md.po │ │ ├── concept_events.md.po │ │ ├── concept_immutability.md.po │ │ ├── databases_db-migrations.md.po │ │ ├── glossary.md.po │ │ ├── intro_upgrade-from-v2.md.po │ │ ├── intro_what-is-yii.md.po │ │ ├── runtime_cookies.md.po │ │ ├── runtime_handling-errors.md.po │ │ ├── runtime_logging.md.po │ │ ├── runtime_request.md.po │ │ ├── runtime_response.md.po │ │ ├── runtime_routing.md.po │ │ ├── runtime_sessions.md.po │ │ ├── security_authentication.md.po │ │ ├── security_authorization.md.po │ │ ├── security_best-practices.md.po │ │ ├── security_cryptography.md.po │ │ ├── security_overview.md.po │ │ ├── security_passwords.md.po │ │ ├── security_trusted-request.md.po │ │ ├── start_creating-project.md.po │ │ ├── start_databases.md.po │ │ ├── start_forms.md.po │ │ ├── start_gii.md.po │ │ ├── start_hello.md.po │ │ ├── start_looking-ahead.md.po │ │ ├── start_prerequisites.md.po │ │ ├── start_workflow.md.po │ │ ├── structure_action.md.po │ │ ├── structure_application.md.po │ │ ├── structure_domain.md.po │ │ ├── structure_entry-script.md.po │ │ ├── structure_handler.md.po │ │ ├── structure_middleware.md.po │ │ ├── structure_overview.md.po │ │ ├── structure_package.md.po │ │ ├── structure_service.md.po │ │ ├── tutorial_console-applications.md.po │ │ ├── tutorial_mailing.md.po │ │ ├── tutorial_performance-tuning.md.po │ │ ├── tutorial_using-with-event-loop.md.po │ │ ├── tutorial_using-yii-with-roadrunner.md.po │ │ ├── tutorial_using-yii-with-swoole.md.po │ │ └── views_view-injections.md.po │ ├── po4a.cfg │ └── pot │ ├── README.md.pot │ ├── caching_data.md.pot │ ├── caching_overview.md.pot │ ├── concept_aliases.md.pot │ ├── concept_autoloading.md.pot │ ├── concept_configuration.md.pot │ ├── concept_di-container.md.pot │ ├── concept_events.md.pot │ ├── concept_immutability.md.pot │ ├── databases_db-migrations.md.pot │ ├── glossary.md.pot │ ├── intro_upgrade-from-v2.md.pot │ ├── intro_what-is-yii.md.pot │ ├── runtime_cookies.md.pot │ ├── runtime_handling-errors.md.pot │ ├── runtime_logging.md.pot │ ├── runtime_request.md.pot │ ├── runtime_response.md.pot │ ├── runtime_routing.md.pot │ ├── runtime_sessions.md.pot │ ├── security_authentication.md.pot │ ├── security_authorization.md.pot │ ├── security_best-practices.md.pot │ ├── security_cryptography.md.pot │ ├── security_overview.md.pot │ ├── security_passwords.md.pot │ ├── security_trusted-request.md.pot │ ├── start_creating-project.md.pot │ ├── start_databases.md.pot │ ├── start_forms.md.pot │ ├── start_gii.md.pot │ ├── start_hello.md.pot │ ├── start_looking-ahead.md.pot │ ├── start_prerequisites.md.pot │ ├── start_workflow.md.pot │ ├── structure_action.md.pot │ ├── structure_application.md.pot │ ├── structure_domain.md.pot │ ├── structure_entry-script.md.pot │ ├── structure_handler.md.pot │ ├── structure_middleware.md.pot │ ├── structure_overview.md.pot │ ├── structure_package.md.pot │ ├── structure_service.md.pot │ ├── tutorial_console-applications.md.pot │ ├── tutorial_mailing.md.pot │ ├── tutorial_performance-tuning.md.pot │ ├── tutorial_using-with-event-loop.md.pot │ ├── tutorial_using-yii-with-roadrunner.md.pot │ ├── tutorial_using-yii-with-swoole.md.pot │ └── views_view-injections.md.pot ├── cookbook ├── en │ ├── README.md │ ├── configuring-webservers │ │ ├── apache.md │ │ ├── general.md │ │ ├── iis.md │ │ ├── lighttpd.md │ │ ├── nginx-unit.md │ │ └── nginx.md │ ├── deployment │ │ └── docker-swarm.md │ ├── disabling-csrf-protection.md │ ├── making-http-requests.md │ ├── organizing-code │ │ └── structuring-by-use-case-with-vertical-slices.md │ ├── preface.md │ └── sentry-integration.md └── ru │ ├── README.md │ ├── configuring-webservers │ ├── apache.md │ ├── general.md │ ├── iis.md │ ├── lighttpd.md │ ├── nginx-unit.md │ └── nginx.md │ ├── disabling-csrf-protection.md │ ├── organizing-code │ └── structuring-by-use-case-with-vertical-slices.md │ ├── preface.md │ └── sentry-integration.md ├── guide ├── en │ ├── README.md │ ├── caching │ │ ├── data.md │ │ └── overview.md │ ├── concept │ │ ├── aliases.md │ │ ├── autoloading.md │ │ ├── configuration.md │ │ ├── di-container.md │ │ ├── events.md │ │ └── immutability.md │ ├── databases │ │ └── db-migrations.md │ ├── glossary.md │ ├── intro │ │ ├── upgrade-from-v2.md │ │ └── what-is-yii.md │ ├── runtime │ │ ├── cookies.md │ │ ├── handling-errors.md │ │ ├── img │ │ │ ├── view-development-dark.png │ │ │ ├── view-development-light.png │ │ │ └── view-production.png │ │ ├── logging.md │ │ ├── request.md │ │ ├── response.md │ │ ├── routing.md │ │ └── sessions.md │ ├── security │ │ ├── authentication.md │ │ ├── authorization.md │ │ ├── best-practices.md │ │ ├── cryptography.md │ │ ├── img │ │ │ ├── rbac-access-check-1.graphml │ │ │ ├── rbac-access-check-1.svg │ │ │ ├── rbac-access-check-2.graphml │ │ │ ├── rbac-access-check-2.svg │ │ │ ├── rbac-access-check-3.graphml │ │ │ ├── rbac-access-check-3.svg │ │ │ ├── rbac-hierarchy-1.graphml │ │ │ ├── rbac-hierarchy-1.svg │ │ │ ├── rbac-hierarchy-2.graphml │ │ │ └── rbac-hierarchy-2.svg │ │ ├── overview.md │ │ ├── passwords.md │ │ └── trusted-request.md │ ├── start │ │ ├── creating-project.md │ │ ├── databases.md │ │ ├── forms.md │ │ ├── gii.md │ │ ├── hello.md │ │ ├── img │ │ │ ├── app-installed.png │ │ │ ├── form-error.png │ │ │ └── form-success.png │ │ ├── looking-ahead.md │ │ ├── prerequisites.md │ │ └── workflow.md │ ├── structure │ │ ├── action.md │ │ ├── application.md │ │ ├── domain.md │ │ ├── entry-script.md │ │ ├── handler.md │ │ ├── img │ │ │ ├── middleware.graphml │ │ │ ├── middleware.svg │ │ │ ├── middleware_alternative.graphml │ │ │ └── middleware_alternative.svg │ │ ├── middleware.md │ │ ├── overview.md │ │ ├── package.md │ │ └── service.md │ ├── tutorial │ │ ├── console-applications.md │ │ ├── mailing.md │ │ ├── performance-tuning.md │ │ ├── using-with-event-loop.md │ │ ├── using-yii-with-roadrunner.md │ │ └── using-yii-with-swoole.md │ └── views │ │ ├── asset.md │ │ ├── script-style-meta.md │ │ ├── template-engines.md │ │ ├── view-injections.md │ │ ├── view.md │ │ └── widget.md ├── es │ ├── README.md │ ├── caching │ │ ├── data.md │ │ └── overview.md │ ├── concept │ │ ├── aliases.md │ │ ├── autoloading.md │ │ ├── configuration.md │ │ ├── di-container.md │ │ ├── events.md │ │ └── immutability.md │ ├── databases │ │ └── db-migrations.md │ ├── glossary.md │ ├── intro │ │ ├── upgrade-from-v2.md │ │ └── what-is-yii.md │ ├── runtime │ │ ├── cookies.md │ │ ├── flash-messages.md │ │ ├── handling-errors.md │ │ ├── logging.md │ │ ├── request.md │ │ ├── response.md │ │ ├── routing.md │ │ └── sessions.md │ ├── security │ │ ├── authentication.md │ │ ├── authorization.md │ │ ├── best-practices.md │ │ ├── cryptography.md │ │ ├── img │ │ │ ├── rbac-access-check-1.graphml │ │ │ ├── rbac-access-check-1.svg │ │ │ ├── rbac-access-check-2.graphml │ │ │ ├── rbac-access-check-2.svg │ │ │ ├── rbac-access-check-3.graphml │ │ │ ├── rbac-access-check-3.svg │ │ │ ├── rbac-hierarchy-1.graphml │ │ │ ├── rbac-hierarchy-1.svg │ │ │ ├── rbac-hierarchy-2.graphml │ │ │ └── rbac-hierarchy-2.svg │ │ ├── overview.md │ │ ├── passwords.md │ │ └── trusted-request.md │ ├── start │ │ ├── creating-project.md │ │ ├── databases.md │ │ ├── forms.md │ │ ├── gii.md │ │ ├── hello.md │ │ ├── installation.md │ │ ├── looking-ahead.md │ │ ├── prerequisites.md │ │ └── workflow.md │ ├── structure │ │ ├── action.md │ │ ├── application.md │ │ ├── domain.md │ │ ├── entry-script.md │ │ ├── handler.md │ │ ├── img │ │ │ ├── middleware.graphml │ │ │ └── middleware.svg │ │ ├── middleware.md │ │ ├── overview.md │ │ ├── package.md │ │ └── service.md │ ├── tutorial │ │ ├── console-applications.md │ │ ├── mailing.md │ │ ├── performance-tuning.md │ │ ├── using-with-event-loop.md │ │ ├── using-yii-with-roadrunner.md │ │ └── using-yii-with-swoole.md │ └── views │ │ └── view-injections.md ├── id │ ├── README.md │ ├── caching │ │ ├── data.md │ │ └── overview.md │ ├── concept │ │ ├── aliases.md │ │ ├── autoloading.md │ │ ├── configuration.md │ │ ├── di-container.md │ │ ├── events.md │ │ └── immutability.md │ ├── databases │ │ └── db-migrations.md │ ├── glossary.md │ ├── intro │ │ ├── upgrade-from-v2.md │ │ └── what-is-yii.md │ ├── runtime │ │ ├── cookies.md │ │ ├── handling-errors.md │ │ ├── logging.md │ │ ├── request.md │ │ ├── response.md │ │ ├── routing.md │ │ └── sessions.md │ ├── security │ │ ├── authentication.md │ │ ├── authorization.md │ │ ├── best-practices.md │ │ ├── cryptography.md │ │ ├── overview.md │ │ ├── passwords.md │ │ └── trusted-request.md │ ├── start │ │ ├── creating-project.md │ │ ├── databases.md │ │ ├── forms.md │ │ ├── gii.md │ │ ├── hello.md │ │ ├── looking-ahead.md │ │ ├── prerequisites.md │ │ └── workflow.md │ ├── structure │ │ ├── action.md │ │ ├── application.md │ │ ├── domain.md │ │ ├── entry-script.md │ │ ├── handler.md │ │ ├── middleware.md │ │ ├── overview.md │ │ ├── package.md │ │ └── service.md │ ├── tutorial │ │ ├── console-applications.md │ │ ├── mailing.md │ │ ├── performance-tuning.md │ │ ├── using-with-event-loop.md │ │ ├── using-yii-with-roadrunner.md │ │ └── using-yii-with-swoole.md │ └── views │ │ └── view-injections.md ├── ru │ ├── README.md │ ├── caching │ │ ├── data.md │ │ └── overview.md │ ├── concept │ │ ├── aliases.md │ │ ├── autoloading.md │ │ ├── configuration.md │ │ ├── di-container.md │ │ ├── events.md │ │ └── immutability.md │ ├── databases │ │ └── db-migrations.md │ ├── glossary.md │ ├── intro │ │ ├── upgrade-from-v2.md │ │ └── what-is-yii.md │ ├── runtime │ │ ├── cookies.md │ │ ├── handling-errors.md │ │ ├── logging.md │ │ ├── request.md │ │ ├── response.md │ │ ├── routing.md │ │ └── sessions.md │ ├── security │ │ ├── authentication.md │ │ ├── authorization.md │ │ ├── best-practices.md │ │ ├── cryptography.md │ │ ├── overview.md │ │ ├── passwords.md │ │ └── trusted-request.md │ ├── start │ │ ├── creating-project.md │ │ ├── databases.md │ │ ├── forms.md │ │ ├── gii.md │ │ ├── hello.md │ │ ├── looking-ahead.md │ │ ├── prerequisites.md │ │ └── workflow.md │ ├── structure │ │ ├── action.md │ │ ├── application.md │ │ ├── domain.md │ │ ├── entry-script.md │ │ ├── handler.md │ │ ├── middleware.md │ │ ├── overview.md │ │ ├── package.md │ │ └── service.md │ ├── tutorial │ │ ├── console-applications.md │ │ ├── mailing.md │ │ ├── performance-tuning.md │ │ ├── using-with-event-loop.md │ │ ├── using-yii-with-roadrunner.md │ │ └── using-yii-with-swoole.md │ └── views │ │ └── view-injections.md └── zh-CN │ ├── README.md │ └── intro │ ├── upgrade-from-v2.md │ └── what-is-yii.md └── images ├── 002-issue-workflow.svg └── yii_logo.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/styles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.github/workflows/translation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/.vale.ini -------------------------------------------------------------------------------- /000-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/000-packages.md -------------------------------------------------------------------------------- /001-yii-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/001-yii-values.md -------------------------------------------------------------------------------- /002-issue-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/002-issue-workflow.md -------------------------------------------------------------------------------- /003-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/003-roadmap.md -------------------------------------------------------------------------------- /004-namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/004-namespaces.md -------------------------------------------------------------------------------- /005-development-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/005-development-tool.md -------------------------------------------------------------------------------- /006-git-commit-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/006-git-commit-messages.md -------------------------------------------------------------------------------- /007-exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/007-exceptions.md -------------------------------------------------------------------------------- /008-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/008-interfaces.md -------------------------------------------------------------------------------- /009-design-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/009-design-decisions.md -------------------------------------------------------------------------------- /010-code-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/010-code-style.md -------------------------------------------------------------------------------- /011-error-correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/011-error-correction.md -------------------------------------------------------------------------------- /012-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/012-tests.md -------------------------------------------------------------------------------- /013-code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/013-code-review.md -------------------------------------------------------------------------------- /014-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/014-docs.md -------------------------------------------------------------------------------- /015-phpstorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/015-phpstorm.md -------------------------------------------------------------------------------- /016-security-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/016-security-workflow.md -------------------------------------------------------------------------------- /017-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/017-tags.md -------------------------------------------------------------------------------- /018-widgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/018-widgets.md -------------------------------------------------------------------------------- /019-view-code-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/019-view-code-style.md -------------------------------------------------------------------------------- /020-package-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/020-package-release.md -------------------------------------------------------------------------------- /021-changelog-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/021-changelog-upgrade.md -------------------------------------------------------------------------------- /022-config-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/022-config-groups.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_config.yml -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/README.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/README.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/configuring-webservers_apache.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/configuring-webservers_apache.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/configuring-webservers_general.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/configuring-webservers_general.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/configuring-webservers_iis.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/configuring-webservers_iis.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/configuring-webservers_lighttpd.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/configuring-webservers_lighttpd.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/configuring-webservers_nginx-unit.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/configuring-webservers_nginx-unit.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/configuring-webservers_nginx.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/configuring-webservers_nginx.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/disabling-csrf-protection.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/disabling-csrf-protection.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/organizing-code_structuring-by-use-case-with-vertical-slices.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/organizing-code_structuring-by-use-case-with-vertical-slices.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/preface.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/preface.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po/ru/sentry-integration.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po/ru/sentry-integration.md.po -------------------------------------------------------------------------------- /_translations/cookbook/po4a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/po4a.cfg -------------------------------------------------------------------------------- /_translations/cookbook/pot/README.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/README.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/configuring-webservers_apache.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/configuring-webservers_apache.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/configuring-webservers_general.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/configuring-webservers_general.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/configuring-webservers_iis.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/configuring-webservers_iis.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/configuring-webservers_lighttpd.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/configuring-webservers_lighttpd.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/configuring-webservers_nginx-unit.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/configuring-webservers_nginx-unit.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/configuring-webservers_nginx.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/configuring-webservers_nginx.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/disabling-csrf-protection.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/disabling-csrf-protection.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/organizing-code_structuring-by-use-case-with-vertical-slices.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/organizing-code_structuring-by-use-case-with-vertical-slices.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/preface.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/preface.md.pot -------------------------------------------------------------------------------- /_translations/cookbook/pot/sentry-integration.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/cookbook/pot/sentry-integration.md.pot -------------------------------------------------------------------------------- /_translations/guide/po/es/README.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/README.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/caching_data.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/caching_data.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/caching_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/caching_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/concept_aliases.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/concept_aliases.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/concept_autoloading.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/concept_autoloading.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/concept_configuration.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/concept_configuration.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/concept_di-container.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/concept_di-container.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/concept_events.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/concept_events.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/concept_immutability.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/concept_immutability.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/databases_db-migrations.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/databases_db-migrations.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/glossary.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/glossary.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/intro_upgrade-from-v2.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/intro_upgrade-from-v2.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/intro_what-is-yii.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/intro_what-is-yii.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/runtime_cookies.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/runtime_cookies.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/runtime_handling-errors.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/runtime_handling-errors.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/runtime_logging.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/runtime_logging.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/runtime_request.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/runtime_request.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/runtime_response.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/runtime_response.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/runtime_routing.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/runtime_routing.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/runtime_sessions.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/runtime_sessions.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/security_authentication.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/security_authentication.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/security_authorization.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/security_authorization.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/security_best-practices.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/security_best-practices.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/security_cryptography.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/security_cryptography.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/security_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/security_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/security_passwords.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/security_passwords.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/security_trusted-request.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/security_trusted-request.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_creating-project.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_creating-project.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_databases.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_databases.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_forms.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_forms.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_gii.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_gii.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_hello.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_hello.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_looking-ahead.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_looking-ahead.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_prerequisites.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_prerequisites.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/start_workflow.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/start_workflow.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_action.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_action.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_application.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_application.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_domain.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_domain.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_entry-script.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_entry-script.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_handler.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_handler.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_middleware.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_middleware.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_package.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_package.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/structure_service.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/structure_service.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/tutorial_console-applications.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/tutorial_console-applications.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/tutorial_mailing.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/tutorial_mailing.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/tutorial_performance-tuning.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/tutorial_performance-tuning.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/tutorial_using-with-event-loop.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/tutorial_using-with-event-loop.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/tutorial_using-yii-with-roadrunner.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/tutorial_using-yii-with-roadrunner.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/tutorial_using-yii-with-swoole.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/tutorial_using-yii-with-swoole.md.po -------------------------------------------------------------------------------- /_translations/guide/po/es/views_view-injections.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/es/views_view-injections.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/README.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/README.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/caching_data.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/caching_data.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/caching_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/caching_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/concept_aliases.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/concept_aliases.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/concept_autoloading.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/concept_autoloading.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/concept_configuration.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/concept_configuration.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/concept_di-container.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/concept_di-container.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/concept_events.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/concept_events.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/concept_immutability.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/concept_immutability.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/databases_db-migrations.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/databases_db-migrations.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/glossary.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/glossary.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/intro_upgrade-from-v2.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/intro_upgrade-from-v2.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/intro_what-is-yii.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/intro_what-is-yii.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/runtime_cookies.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/runtime_cookies.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/runtime_handling-errors.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/runtime_handling-errors.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/runtime_logging.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/runtime_logging.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/runtime_request.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/runtime_request.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/runtime_response.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/runtime_response.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/runtime_routing.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/runtime_routing.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/runtime_sessions.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/runtime_sessions.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/security_authentication.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/security_authentication.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/security_authorization.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/security_authorization.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/security_best-practices.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/security_best-practices.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/security_cryptography.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/security_cryptography.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/security_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/security_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/security_passwords.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/security_passwords.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/security_trusted-request.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/security_trusted-request.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_creating-project.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_creating-project.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_databases.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_databases.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_forms.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_forms.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_gii.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_gii.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_hello.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_hello.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_looking-ahead.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_looking-ahead.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_prerequisites.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_prerequisites.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/start_workflow.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/start_workflow.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_action.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_action.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_application.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_application.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_domain.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_domain.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_entry-script.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_entry-script.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_handler.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_handler.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_middleware.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_middleware.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_package.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_package.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/structure_service.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/structure_service.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/tutorial_console-applications.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/tutorial_console-applications.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/tutorial_mailing.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/tutorial_mailing.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/tutorial_performance-tuning.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/tutorial_performance-tuning.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/tutorial_using-with-event-loop.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/tutorial_using-with-event-loop.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/tutorial_using-yii-with-roadrunner.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/tutorial_using-yii-with-roadrunner.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/tutorial_using-yii-with-swoole.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/tutorial_using-yii-with-swoole.md.po -------------------------------------------------------------------------------- /_translations/guide/po/id/views_view-injections.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/id/views_view-injections.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/README.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/README.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/caching_data.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/caching_data.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/caching_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/caching_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/concept_aliases.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/concept_aliases.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/concept_autoloading.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/concept_autoloading.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/concept_configuration.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/concept_configuration.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/concept_di-container.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/concept_di-container.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/concept_events.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/concept_events.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/concept_immutability.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/concept_immutability.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/databases_db-migrations.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/databases_db-migrations.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/glossary.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/glossary.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/intro_upgrade-from-v2.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/intro_upgrade-from-v2.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/intro_what-is-yii.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/intro_what-is-yii.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/runtime_cookies.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/runtime_cookies.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/runtime_handling-errors.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/runtime_handling-errors.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/runtime_logging.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/runtime_logging.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/runtime_request.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/runtime_request.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/runtime_response.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/runtime_response.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/runtime_routing.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/runtime_routing.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/runtime_sessions.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/runtime_sessions.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/security_authentication.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/security_authentication.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/security_authorization.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/security_authorization.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/security_best-practices.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/security_best-practices.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/security_cryptography.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/security_cryptography.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/security_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/security_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/security_passwords.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/security_passwords.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/security_trusted-request.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/security_trusted-request.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_creating-project.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_creating-project.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_databases.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_databases.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_forms.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_forms.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_gii.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_gii.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_hello.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_hello.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_looking-ahead.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_looking-ahead.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_prerequisites.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_prerequisites.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/start_workflow.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/start_workflow.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_action.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_action.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_application.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_application.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_domain.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_domain.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_entry-script.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_entry-script.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_handler.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_handler.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_middleware.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_middleware.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_overview.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_overview.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_package.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_package.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/structure_service.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/structure_service.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/tutorial_console-applications.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/tutorial_console-applications.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/tutorial_mailing.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/tutorial_mailing.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/tutorial_performance-tuning.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/tutorial_performance-tuning.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/tutorial_using-with-event-loop.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/tutorial_using-with-event-loop.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/tutorial_using-yii-with-roadrunner.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/tutorial_using-yii-with-roadrunner.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/tutorial_using-yii-with-swoole.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/tutorial_using-yii-with-swoole.md.po -------------------------------------------------------------------------------- /_translations/guide/po/ru/views_view-injections.md.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po/ru/views_view-injections.md.po -------------------------------------------------------------------------------- /_translations/guide/po4a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/po4a.cfg -------------------------------------------------------------------------------- /_translations/guide/pot/README.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/README.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/caching_data.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/caching_data.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/caching_overview.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/caching_overview.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/concept_aliases.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/concept_aliases.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/concept_autoloading.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/concept_autoloading.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/concept_configuration.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/concept_configuration.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/concept_di-container.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/concept_di-container.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/concept_events.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/concept_events.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/concept_immutability.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/concept_immutability.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/databases_db-migrations.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/databases_db-migrations.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/glossary.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/glossary.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/intro_upgrade-from-v2.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/intro_upgrade-from-v2.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/intro_what-is-yii.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/intro_what-is-yii.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/runtime_cookies.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/runtime_cookies.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/runtime_handling-errors.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/runtime_handling-errors.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/runtime_logging.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/runtime_logging.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/runtime_request.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/runtime_request.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/runtime_response.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/runtime_response.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/runtime_routing.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/runtime_routing.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/runtime_sessions.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/runtime_sessions.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/security_authentication.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/security_authentication.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/security_authorization.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/security_authorization.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/security_best-practices.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/security_best-practices.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/security_cryptography.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/security_cryptography.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/security_overview.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/security_overview.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/security_passwords.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/security_passwords.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/security_trusted-request.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/security_trusted-request.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_creating-project.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_creating-project.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_databases.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_databases.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_forms.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_forms.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_gii.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_gii.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_hello.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_hello.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_looking-ahead.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_looking-ahead.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_prerequisites.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_prerequisites.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/start_workflow.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/start_workflow.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_action.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_action.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_application.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_application.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_domain.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_domain.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_entry-script.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_entry-script.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_handler.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_handler.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_middleware.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_middleware.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_overview.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_overview.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_package.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_package.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/structure_service.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/structure_service.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/tutorial_console-applications.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/tutorial_console-applications.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/tutorial_mailing.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/tutorial_mailing.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/tutorial_performance-tuning.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/tutorial_performance-tuning.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/tutorial_using-with-event-loop.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/tutorial_using-with-event-loop.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/tutorial_using-yii-with-roadrunner.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/tutorial_using-yii-with-roadrunner.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/tutorial_using-yii-with-swoole.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/tutorial_using-yii-with-swoole.md.pot -------------------------------------------------------------------------------- /_translations/guide/pot/views_view-injections.md.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/_translations/guide/pot/views_view-injections.md.pot -------------------------------------------------------------------------------- /cookbook/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/README.md -------------------------------------------------------------------------------- /cookbook/en/configuring-webservers/apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/configuring-webservers/apache.md -------------------------------------------------------------------------------- /cookbook/en/configuring-webservers/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/configuring-webservers/general.md -------------------------------------------------------------------------------- /cookbook/en/configuring-webservers/iis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/configuring-webservers/iis.md -------------------------------------------------------------------------------- /cookbook/en/configuring-webservers/lighttpd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/configuring-webservers/lighttpd.md -------------------------------------------------------------------------------- /cookbook/en/configuring-webservers/nginx-unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/configuring-webservers/nginx-unit.md -------------------------------------------------------------------------------- /cookbook/en/configuring-webservers/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/configuring-webservers/nginx.md -------------------------------------------------------------------------------- /cookbook/en/deployment/docker-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/deployment/docker-swarm.md -------------------------------------------------------------------------------- /cookbook/en/disabling-csrf-protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/disabling-csrf-protection.md -------------------------------------------------------------------------------- /cookbook/en/making-http-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/making-http-requests.md -------------------------------------------------------------------------------- /cookbook/en/organizing-code/structuring-by-use-case-with-vertical-slices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/organizing-code/structuring-by-use-case-with-vertical-slices.md -------------------------------------------------------------------------------- /cookbook/en/preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/preface.md -------------------------------------------------------------------------------- /cookbook/en/sentry-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/en/sentry-integration.md -------------------------------------------------------------------------------- /cookbook/ru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/README.md -------------------------------------------------------------------------------- /cookbook/ru/configuring-webservers/apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/configuring-webservers/apache.md -------------------------------------------------------------------------------- /cookbook/ru/configuring-webservers/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/configuring-webservers/general.md -------------------------------------------------------------------------------- /cookbook/ru/configuring-webservers/iis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/configuring-webservers/iis.md -------------------------------------------------------------------------------- /cookbook/ru/configuring-webservers/lighttpd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/configuring-webservers/lighttpd.md -------------------------------------------------------------------------------- /cookbook/ru/configuring-webservers/nginx-unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/configuring-webservers/nginx-unit.md -------------------------------------------------------------------------------- /cookbook/ru/configuring-webservers/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/configuring-webservers/nginx.md -------------------------------------------------------------------------------- /cookbook/ru/disabling-csrf-protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/disabling-csrf-protection.md -------------------------------------------------------------------------------- /cookbook/ru/organizing-code/structuring-by-use-case-with-vertical-slices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/organizing-code/structuring-by-use-case-with-vertical-slices.md -------------------------------------------------------------------------------- /cookbook/ru/preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/preface.md -------------------------------------------------------------------------------- /cookbook/ru/sentry-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/cookbook/ru/sentry-integration.md -------------------------------------------------------------------------------- /guide/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/README.md -------------------------------------------------------------------------------- /guide/en/caching/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/caching/data.md -------------------------------------------------------------------------------- /guide/en/caching/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/caching/overview.md -------------------------------------------------------------------------------- /guide/en/concept/aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/concept/aliases.md -------------------------------------------------------------------------------- /guide/en/concept/autoloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/concept/autoloading.md -------------------------------------------------------------------------------- /guide/en/concept/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/concept/configuration.md -------------------------------------------------------------------------------- /guide/en/concept/di-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/concept/di-container.md -------------------------------------------------------------------------------- /guide/en/concept/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/concept/events.md -------------------------------------------------------------------------------- /guide/en/concept/immutability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/concept/immutability.md -------------------------------------------------------------------------------- /guide/en/databases/db-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/databases/db-migrations.md -------------------------------------------------------------------------------- /guide/en/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/glossary.md -------------------------------------------------------------------------------- /guide/en/intro/upgrade-from-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/intro/upgrade-from-v2.md -------------------------------------------------------------------------------- /guide/en/intro/what-is-yii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/intro/what-is-yii.md -------------------------------------------------------------------------------- /guide/en/runtime/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/cookies.md -------------------------------------------------------------------------------- /guide/en/runtime/handling-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/handling-errors.md -------------------------------------------------------------------------------- /guide/en/runtime/img/view-development-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/img/view-development-dark.png -------------------------------------------------------------------------------- /guide/en/runtime/img/view-development-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/img/view-development-light.png -------------------------------------------------------------------------------- /guide/en/runtime/img/view-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/img/view-production.png -------------------------------------------------------------------------------- /guide/en/runtime/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/logging.md -------------------------------------------------------------------------------- /guide/en/runtime/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/request.md -------------------------------------------------------------------------------- /guide/en/runtime/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/response.md -------------------------------------------------------------------------------- /guide/en/runtime/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/routing.md -------------------------------------------------------------------------------- /guide/en/runtime/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/runtime/sessions.md -------------------------------------------------------------------------------- /guide/en/security/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/authentication.md -------------------------------------------------------------------------------- /guide/en/security/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/authorization.md -------------------------------------------------------------------------------- /guide/en/security/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/best-practices.md -------------------------------------------------------------------------------- /guide/en/security/cryptography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/cryptography.md -------------------------------------------------------------------------------- /guide/en/security/img/rbac-access-check-1.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-access-check-1.graphml -------------------------------------------------------------------------------- /guide/en/security/img/rbac-access-check-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-access-check-1.svg -------------------------------------------------------------------------------- /guide/en/security/img/rbac-access-check-2.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-access-check-2.graphml -------------------------------------------------------------------------------- /guide/en/security/img/rbac-access-check-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-access-check-2.svg -------------------------------------------------------------------------------- /guide/en/security/img/rbac-access-check-3.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-access-check-3.graphml -------------------------------------------------------------------------------- /guide/en/security/img/rbac-access-check-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-access-check-3.svg -------------------------------------------------------------------------------- /guide/en/security/img/rbac-hierarchy-1.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-hierarchy-1.graphml -------------------------------------------------------------------------------- /guide/en/security/img/rbac-hierarchy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-hierarchy-1.svg -------------------------------------------------------------------------------- /guide/en/security/img/rbac-hierarchy-2.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-hierarchy-2.graphml -------------------------------------------------------------------------------- /guide/en/security/img/rbac-hierarchy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/img/rbac-hierarchy-2.svg -------------------------------------------------------------------------------- /guide/en/security/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/overview.md -------------------------------------------------------------------------------- /guide/en/security/passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/passwords.md -------------------------------------------------------------------------------- /guide/en/security/trusted-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/security/trusted-request.md -------------------------------------------------------------------------------- /guide/en/start/creating-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/creating-project.md -------------------------------------------------------------------------------- /guide/en/start/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/databases.md -------------------------------------------------------------------------------- /guide/en/start/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/forms.md -------------------------------------------------------------------------------- /guide/en/start/gii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/gii.md -------------------------------------------------------------------------------- /guide/en/start/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/hello.md -------------------------------------------------------------------------------- /guide/en/start/img/app-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/img/app-installed.png -------------------------------------------------------------------------------- /guide/en/start/img/form-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/img/form-error.png -------------------------------------------------------------------------------- /guide/en/start/img/form-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/img/form-success.png -------------------------------------------------------------------------------- /guide/en/start/looking-ahead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/looking-ahead.md -------------------------------------------------------------------------------- /guide/en/start/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/prerequisites.md -------------------------------------------------------------------------------- /guide/en/start/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/start/workflow.md -------------------------------------------------------------------------------- /guide/en/structure/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/action.md -------------------------------------------------------------------------------- /guide/en/structure/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/application.md -------------------------------------------------------------------------------- /guide/en/structure/domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/domain.md -------------------------------------------------------------------------------- /guide/en/structure/entry-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/entry-script.md -------------------------------------------------------------------------------- /guide/en/structure/handler.md: -------------------------------------------------------------------------------- 1 | # Request handlers 2 | 3 | 4 | -------------------------------------------------------------------------------- /guide/en/structure/img/middleware.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/img/middleware.graphml -------------------------------------------------------------------------------- /guide/en/structure/img/middleware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/img/middleware.svg -------------------------------------------------------------------------------- /guide/en/structure/img/middleware_alternative.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/img/middleware_alternative.graphml -------------------------------------------------------------------------------- /guide/en/structure/img/middleware_alternative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/img/middleware_alternative.svg -------------------------------------------------------------------------------- /guide/en/structure/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/middleware.md -------------------------------------------------------------------------------- /guide/en/structure/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/overview.md -------------------------------------------------------------------------------- /guide/en/structure/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/package.md -------------------------------------------------------------------------------- /guide/en/structure/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/structure/service.md -------------------------------------------------------------------------------- /guide/en/tutorial/console-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/tutorial/console-applications.md -------------------------------------------------------------------------------- /guide/en/tutorial/mailing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/tutorial/mailing.md -------------------------------------------------------------------------------- /guide/en/tutorial/performance-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/tutorial/performance-tuning.md -------------------------------------------------------------------------------- /guide/en/tutorial/using-with-event-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/tutorial/using-with-event-loop.md -------------------------------------------------------------------------------- /guide/en/tutorial/using-yii-with-roadrunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/tutorial/using-yii-with-roadrunner.md -------------------------------------------------------------------------------- /guide/en/tutorial/using-yii-with-swoole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/tutorial/using-yii-with-swoole.md -------------------------------------------------------------------------------- /guide/en/views/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/views/asset.md -------------------------------------------------------------------------------- /guide/en/views/script-style-meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/views/script-style-meta.md -------------------------------------------------------------------------------- /guide/en/views/template-engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/views/template-engines.md -------------------------------------------------------------------------------- /guide/en/views/view-injections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/views/view-injections.md -------------------------------------------------------------------------------- /guide/en/views/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/views/view.md -------------------------------------------------------------------------------- /guide/en/views/widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/en/views/widget.md -------------------------------------------------------------------------------- /guide/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/README.md -------------------------------------------------------------------------------- /guide/es/caching/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/caching/data.md -------------------------------------------------------------------------------- /guide/es/caching/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/caching/overview.md -------------------------------------------------------------------------------- /guide/es/concept/aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/concept/aliases.md -------------------------------------------------------------------------------- /guide/es/concept/autoloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/concept/autoloading.md -------------------------------------------------------------------------------- /guide/es/concept/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/concept/configuration.md -------------------------------------------------------------------------------- /guide/es/concept/di-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/concept/di-container.md -------------------------------------------------------------------------------- /guide/es/concept/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/concept/events.md -------------------------------------------------------------------------------- /guide/es/concept/immutability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/concept/immutability.md -------------------------------------------------------------------------------- /guide/es/databases/db-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/databases/db-migrations.md -------------------------------------------------------------------------------- /guide/es/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/glossary.md -------------------------------------------------------------------------------- /guide/es/intro/upgrade-from-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/intro/upgrade-from-v2.md -------------------------------------------------------------------------------- /guide/es/intro/what-is-yii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/intro/what-is-yii.md -------------------------------------------------------------------------------- /guide/es/runtime/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/runtime/cookies.md -------------------------------------------------------------------------------- /guide/es/runtime/flash-messages.md: -------------------------------------------------------------------------------- 1 | # Flash messages 2 | 3 | 4 | -------------------------------------------------------------------------------- /guide/es/runtime/handling-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/runtime/handling-errors.md -------------------------------------------------------------------------------- /guide/es/runtime/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/runtime/logging.md -------------------------------------------------------------------------------- /guide/es/runtime/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/runtime/request.md -------------------------------------------------------------------------------- /guide/es/runtime/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/runtime/response.md -------------------------------------------------------------------------------- /guide/es/runtime/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/runtime/routing.md -------------------------------------------------------------------------------- /guide/es/runtime/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/runtime/sessions.md -------------------------------------------------------------------------------- /guide/es/security/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/authentication.md -------------------------------------------------------------------------------- /guide/es/security/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/authorization.md -------------------------------------------------------------------------------- /guide/es/security/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/best-practices.md -------------------------------------------------------------------------------- /guide/es/security/cryptography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/cryptography.md -------------------------------------------------------------------------------- /guide/es/security/img/rbac-access-check-1.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-access-check-1.graphml -------------------------------------------------------------------------------- /guide/es/security/img/rbac-access-check-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-access-check-1.svg -------------------------------------------------------------------------------- /guide/es/security/img/rbac-access-check-2.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-access-check-2.graphml -------------------------------------------------------------------------------- /guide/es/security/img/rbac-access-check-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-access-check-2.svg -------------------------------------------------------------------------------- /guide/es/security/img/rbac-access-check-3.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-access-check-3.graphml -------------------------------------------------------------------------------- /guide/es/security/img/rbac-access-check-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-access-check-3.svg -------------------------------------------------------------------------------- /guide/es/security/img/rbac-hierarchy-1.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-hierarchy-1.graphml -------------------------------------------------------------------------------- /guide/es/security/img/rbac-hierarchy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-hierarchy-1.svg -------------------------------------------------------------------------------- /guide/es/security/img/rbac-hierarchy-2.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-hierarchy-2.graphml -------------------------------------------------------------------------------- /guide/es/security/img/rbac-hierarchy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/img/rbac-hierarchy-2.svg -------------------------------------------------------------------------------- /guide/es/security/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/overview.md -------------------------------------------------------------------------------- /guide/es/security/passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/passwords.md -------------------------------------------------------------------------------- /guide/es/security/trusted-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/security/trusted-request.md -------------------------------------------------------------------------------- /guide/es/start/creating-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/creating-project.md -------------------------------------------------------------------------------- /guide/es/start/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/databases.md -------------------------------------------------------------------------------- /guide/es/start/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/forms.md -------------------------------------------------------------------------------- /guide/es/start/gii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/gii.md -------------------------------------------------------------------------------- /guide/es/start/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/hello.md -------------------------------------------------------------------------------- /guide/es/start/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/installation.md -------------------------------------------------------------------------------- /guide/es/start/looking-ahead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/looking-ahead.md -------------------------------------------------------------------------------- /guide/es/start/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/prerequisites.md -------------------------------------------------------------------------------- /guide/es/start/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/start/workflow.md -------------------------------------------------------------------------------- /guide/es/structure/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/action.md -------------------------------------------------------------------------------- /guide/es/structure/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/application.md -------------------------------------------------------------------------------- /guide/es/structure/domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/domain.md -------------------------------------------------------------------------------- /guide/es/structure/entry-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/entry-script.md -------------------------------------------------------------------------------- /guide/es/structure/handler.md: -------------------------------------------------------------------------------- 1 | # Request handlers 2 | 3 | 4 | -------------------------------------------------------------------------------- /guide/es/structure/img/middleware.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/img/middleware.graphml -------------------------------------------------------------------------------- /guide/es/structure/img/middleware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/img/middleware.svg -------------------------------------------------------------------------------- /guide/es/structure/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/middleware.md -------------------------------------------------------------------------------- /guide/es/structure/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/overview.md -------------------------------------------------------------------------------- /guide/es/structure/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/package.md -------------------------------------------------------------------------------- /guide/es/structure/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/structure/service.md -------------------------------------------------------------------------------- /guide/es/tutorial/console-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/tutorial/console-applications.md -------------------------------------------------------------------------------- /guide/es/tutorial/mailing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/tutorial/mailing.md -------------------------------------------------------------------------------- /guide/es/tutorial/performance-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/tutorial/performance-tuning.md -------------------------------------------------------------------------------- /guide/es/tutorial/using-with-event-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/tutorial/using-with-event-loop.md -------------------------------------------------------------------------------- /guide/es/tutorial/using-yii-with-roadrunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/tutorial/using-yii-with-roadrunner.md -------------------------------------------------------------------------------- /guide/es/tutorial/using-yii-with-swoole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/tutorial/using-yii-with-swoole.md -------------------------------------------------------------------------------- /guide/es/views/view-injections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/es/views/view-injections.md -------------------------------------------------------------------------------- /guide/id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/README.md -------------------------------------------------------------------------------- /guide/id/caching/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/caching/data.md -------------------------------------------------------------------------------- /guide/id/caching/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/caching/overview.md -------------------------------------------------------------------------------- /guide/id/concept/aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/concept/aliases.md -------------------------------------------------------------------------------- /guide/id/concept/autoloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/concept/autoloading.md -------------------------------------------------------------------------------- /guide/id/concept/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/concept/configuration.md -------------------------------------------------------------------------------- /guide/id/concept/di-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/concept/di-container.md -------------------------------------------------------------------------------- /guide/id/concept/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/concept/events.md -------------------------------------------------------------------------------- /guide/id/concept/immutability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/concept/immutability.md -------------------------------------------------------------------------------- /guide/id/databases/db-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/databases/db-migrations.md -------------------------------------------------------------------------------- /guide/id/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/glossary.md -------------------------------------------------------------------------------- /guide/id/intro/upgrade-from-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/intro/upgrade-from-v2.md -------------------------------------------------------------------------------- /guide/id/intro/what-is-yii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/intro/what-is-yii.md -------------------------------------------------------------------------------- /guide/id/runtime/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/runtime/cookies.md -------------------------------------------------------------------------------- /guide/id/runtime/handling-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/runtime/handling-errors.md -------------------------------------------------------------------------------- /guide/id/runtime/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/runtime/logging.md -------------------------------------------------------------------------------- /guide/id/runtime/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/runtime/request.md -------------------------------------------------------------------------------- /guide/id/runtime/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/runtime/response.md -------------------------------------------------------------------------------- /guide/id/runtime/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/runtime/routing.md -------------------------------------------------------------------------------- /guide/id/runtime/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/runtime/sessions.md -------------------------------------------------------------------------------- /guide/id/security/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/security/authentication.md -------------------------------------------------------------------------------- /guide/id/security/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/security/authorization.md -------------------------------------------------------------------------------- /guide/id/security/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/security/best-practices.md -------------------------------------------------------------------------------- /guide/id/security/cryptography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/security/cryptography.md -------------------------------------------------------------------------------- /guide/id/security/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/security/overview.md -------------------------------------------------------------------------------- /guide/id/security/passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/security/passwords.md -------------------------------------------------------------------------------- /guide/id/security/trusted-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/security/trusted-request.md -------------------------------------------------------------------------------- /guide/id/start/creating-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/creating-project.md -------------------------------------------------------------------------------- /guide/id/start/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/databases.md -------------------------------------------------------------------------------- /guide/id/start/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/forms.md -------------------------------------------------------------------------------- /guide/id/start/gii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/gii.md -------------------------------------------------------------------------------- /guide/id/start/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/hello.md -------------------------------------------------------------------------------- /guide/id/start/looking-ahead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/looking-ahead.md -------------------------------------------------------------------------------- /guide/id/start/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/prerequisites.md -------------------------------------------------------------------------------- /guide/id/start/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/start/workflow.md -------------------------------------------------------------------------------- /guide/id/structure/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/action.md -------------------------------------------------------------------------------- /guide/id/structure/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/application.md -------------------------------------------------------------------------------- /guide/id/structure/domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/domain.md -------------------------------------------------------------------------------- /guide/id/structure/entry-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/entry-script.md -------------------------------------------------------------------------------- /guide/id/structure/handler.md: -------------------------------------------------------------------------------- 1 | # Request handlers 2 | 3 | 4 | -------------------------------------------------------------------------------- /guide/id/structure/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/middleware.md -------------------------------------------------------------------------------- /guide/id/structure/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/overview.md -------------------------------------------------------------------------------- /guide/id/structure/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/package.md -------------------------------------------------------------------------------- /guide/id/structure/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/structure/service.md -------------------------------------------------------------------------------- /guide/id/tutorial/console-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/tutorial/console-applications.md -------------------------------------------------------------------------------- /guide/id/tutorial/mailing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/tutorial/mailing.md -------------------------------------------------------------------------------- /guide/id/tutorial/performance-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/tutorial/performance-tuning.md -------------------------------------------------------------------------------- /guide/id/tutorial/using-with-event-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/tutorial/using-with-event-loop.md -------------------------------------------------------------------------------- /guide/id/tutorial/using-yii-with-roadrunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/tutorial/using-yii-with-roadrunner.md -------------------------------------------------------------------------------- /guide/id/tutorial/using-yii-with-swoole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/tutorial/using-yii-with-swoole.md -------------------------------------------------------------------------------- /guide/id/views/view-injections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/id/views/view-injections.md -------------------------------------------------------------------------------- /guide/ru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/README.md -------------------------------------------------------------------------------- /guide/ru/caching/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/caching/data.md -------------------------------------------------------------------------------- /guide/ru/caching/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/caching/overview.md -------------------------------------------------------------------------------- /guide/ru/concept/aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/concept/aliases.md -------------------------------------------------------------------------------- /guide/ru/concept/autoloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/concept/autoloading.md -------------------------------------------------------------------------------- /guide/ru/concept/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/concept/configuration.md -------------------------------------------------------------------------------- /guide/ru/concept/di-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/concept/di-container.md -------------------------------------------------------------------------------- /guide/ru/concept/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/concept/events.md -------------------------------------------------------------------------------- /guide/ru/concept/immutability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/concept/immutability.md -------------------------------------------------------------------------------- /guide/ru/databases/db-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/databases/db-migrations.md -------------------------------------------------------------------------------- /guide/ru/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/glossary.md -------------------------------------------------------------------------------- /guide/ru/intro/upgrade-from-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/intro/upgrade-from-v2.md -------------------------------------------------------------------------------- /guide/ru/intro/what-is-yii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/intro/what-is-yii.md -------------------------------------------------------------------------------- /guide/ru/runtime/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/runtime/cookies.md -------------------------------------------------------------------------------- /guide/ru/runtime/handling-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/runtime/handling-errors.md -------------------------------------------------------------------------------- /guide/ru/runtime/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/runtime/logging.md -------------------------------------------------------------------------------- /guide/ru/runtime/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/runtime/request.md -------------------------------------------------------------------------------- /guide/ru/runtime/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/runtime/response.md -------------------------------------------------------------------------------- /guide/ru/runtime/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/runtime/routing.md -------------------------------------------------------------------------------- /guide/ru/runtime/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/runtime/sessions.md -------------------------------------------------------------------------------- /guide/ru/security/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/security/authentication.md -------------------------------------------------------------------------------- /guide/ru/security/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/security/authorization.md -------------------------------------------------------------------------------- /guide/ru/security/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/security/best-practices.md -------------------------------------------------------------------------------- /guide/ru/security/cryptography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/security/cryptography.md -------------------------------------------------------------------------------- /guide/ru/security/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/security/overview.md -------------------------------------------------------------------------------- /guide/ru/security/passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/security/passwords.md -------------------------------------------------------------------------------- /guide/ru/security/trusted-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/security/trusted-request.md -------------------------------------------------------------------------------- /guide/ru/start/creating-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/creating-project.md -------------------------------------------------------------------------------- /guide/ru/start/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/databases.md -------------------------------------------------------------------------------- /guide/ru/start/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/forms.md -------------------------------------------------------------------------------- /guide/ru/start/gii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/gii.md -------------------------------------------------------------------------------- /guide/ru/start/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/hello.md -------------------------------------------------------------------------------- /guide/ru/start/looking-ahead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/looking-ahead.md -------------------------------------------------------------------------------- /guide/ru/start/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/prerequisites.md -------------------------------------------------------------------------------- /guide/ru/start/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/start/workflow.md -------------------------------------------------------------------------------- /guide/ru/structure/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/action.md -------------------------------------------------------------------------------- /guide/ru/structure/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/application.md -------------------------------------------------------------------------------- /guide/ru/structure/domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/domain.md -------------------------------------------------------------------------------- /guide/ru/structure/entry-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/entry-script.md -------------------------------------------------------------------------------- /guide/ru/structure/handler.md: -------------------------------------------------------------------------------- 1 | # Request handlers 2 | 3 | 4 | -------------------------------------------------------------------------------- /guide/ru/structure/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/middleware.md -------------------------------------------------------------------------------- /guide/ru/structure/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/overview.md -------------------------------------------------------------------------------- /guide/ru/structure/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/package.md -------------------------------------------------------------------------------- /guide/ru/structure/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/structure/service.md -------------------------------------------------------------------------------- /guide/ru/tutorial/console-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/tutorial/console-applications.md -------------------------------------------------------------------------------- /guide/ru/tutorial/mailing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/tutorial/mailing.md -------------------------------------------------------------------------------- /guide/ru/tutorial/performance-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/tutorial/performance-tuning.md -------------------------------------------------------------------------------- /guide/ru/tutorial/using-with-event-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/tutorial/using-with-event-loop.md -------------------------------------------------------------------------------- /guide/ru/tutorial/using-yii-with-roadrunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/tutorial/using-yii-with-roadrunner.md -------------------------------------------------------------------------------- /guide/ru/tutorial/using-yii-with-swoole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/tutorial/using-yii-with-swoole.md -------------------------------------------------------------------------------- /guide/ru/views/view-injections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/ru/views/view-injections.md -------------------------------------------------------------------------------- /guide/zh-CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/zh-CN/README.md -------------------------------------------------------------------------------- /guide/zh-CN/intro/upgrade-from-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/zh-CN/intro/upgrade-from-v2.md -------------------------------------------------------------------------------- /guide/zh-CN/intro/what-is-yii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/guide/zh-CN/intro/what-is-yii.md -------------------------------------------------------------------------------- /images/002-issue-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/images/002-issue-workflow.svg -------------------------------------------------------------------------------- /images/yii_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/docs/HEAD/images/yii_logo.svg --------------------------------------------------------------------------------