In-depth analysis of yii2-gii custom template method, analysis of yii2-gii_PHP tutorial

Source: Internet
Author: User
Tags traits
In-depth analysis of yii2-gii custom template method, analysis of yii2-gii. In this paper, the method of yii2-gii custom template is deeply analyzed. what is Yii? Yii is a high-performance, component-based PHP Framework for rapid development of modern Web applications. In-depth analysis of yii2-gii custom templates, analysis of yii2-gii

Preface:

What is Yii?

Yii is a high-performance, component-based PHP Framework for rapid development of modern Web applications. The name Yii has two meanings: "Ultimate simplicity and constant evolution" in Chinese. It can also be seen as ** Yes It Is **! .

What is Yii most suitable?

Yii is a general Web programming framework that can be used to develop various PHP-based Web applications. Because of the component-based framework structure and well-designed cache support, Yii is particularly suitable for developing large applications, such as portal websites, forums, and content management systems (CMS) e-commerce projects and RESTful Web services.

Yii version

Yii currently has two major versions: 1.1 and 2.0. Version 1.1 is an old version of the previous generation and is currently under maintenance. Version 2.0 is a fully rewritten version that uses the latest technologies and protocols, including dependency package manager (Composer), PHP code specification (PSR), namespace, Traits (Traits) and so on. Version 2.0 represents the latest framework and is our main development version in the next few years. This guide is mainly based on the 2.0 version.

Body:

Gii in yii2 provides great convenience for our actual use.

However, in actual development, I believe that the template generated by gii will not change for many developers. why? Because they are all generated proactively using templates from other people's homes, they naturally do not meet the needs of thousands of homes, and their own needs are well customized. after all, the official website only provides a template case as much as possible.

For details about gii and how to use it, refer to the official documentation. if you do not know anything about gii, please share your comments below.

Yii2 only provides one template, but also provides us with a custom opportunity. Next, let's take a look at how to seize this opportunity to do something.

The template file used by the gii generator is located in the vendor \ yiisoft \ yii2-gii \ generators \ crud \ default directory. to customize the template, copy the default directory, paste it to any Directory. here we paste it under the giitemplate \ curd under the root directory, and then configure it as follows:

$ Config ['modules'] ['giii '] = ['class' => 'yii \ gii \ module', 'allowedips' => ['123. 0.0.1 ',': 1'], 'generator' => ['crud '=> [// Generator name 'class' => 'yii \ gii \ generators \ crud \ generator ', 'templates' => [// set our own template // template name => template path 'mycrud '=>' @ app/giitemplate/crud/default',] ,];

Then we open gii-curd, and in the last code template in curd generator, we can see the custom template. then, we can modify our gii template file as needed.

The above is a small Editor to introduce you to the yii2-gii custom template method, hope to help everyone!

Yii is a high-performance, component-based PHP Framework for rapid development of modern Web applications ....

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.