Many cms have template theme function. We can switch the theme through a configuration. How to implement this function in laravel? Today we will discuss this issue.
As we all know, laravel rendering template is implemented through View::make(), and the template file path needs to be explicitly specified:
The code is as follows:
In this case, we can implement the template theme function ourselves. We only need to put the template file in a directory corresponding to the theme name. For example, if the default theme is default, we will write like this:
The code is as follows:
Custom theme custom :
The code is as follows:
Read topic name from configuration file:
The code is as follows:
This basically realizes the function of template theming, but there is still a problem, that is, the custom theme must implement all templates of all default themes, otherwise it will cause errors in some page template files, so further optimization:
The code is as follows:
Before rendering the template, first check whether the template file exists. If it does not exist, use the corresponding template in the default theme.
With so many lines of code, we can continue to encapsulate it. At this time, we need to use the Response object. We know that Response::view() is equivalent to View::make(), and Response also has a method Response::macro The () method can be used to define a macro, and we can encapsulate logic into the macro:
The code is as follows:
Use:
The code is as follows:
It should be noted that the variables passed into the template must pass the second parameter of Response::render.
That’s it for today’s tutorial. We will analyze it in depth later. I hope you all like it.