Laravel 5 Implementing template Theme features, laravel templates _php Tutorials

Source: Internet
Author: User

Laravel 5 Implementing template Theme features, laravel templates


As we all know, the Laravel rendering template is implemented through View::make (), and you need to explicitly specify the template file path:

Copy the Code code as follows:
Function index ()
{
Return View::make (' Index.index ');
}

In this case, we can implement the template theme function, we just need to put the template file in a topic name corresponding to the directory, such as the default theme is the defaults, we wrote:

Copy the Code code as follows:
Function index ()
{
Return View::make (' Default.index.index ');
}

Customizing the theme Custom:

Copy the Code code as follows:
Function index ()
{
Return View::make (' Custom.index.index ');
}

To read the subject name from the configuration file:

Copy the Code code as follows:
Function index ()
{
Return View::make (Config::get (' app.theme ', ' Default '). Index.index ');
}

This basically implements the theme of the template function, but there is a problem, that is, the custom theme must implement all the default theme of all templates, otherwise it will cause some page template file does not exist error, then further optimization:

Copy the Code code as follows:
Function index ()
{
$theme = Config::get (' app.theme ', ' Default ');
$TPL = $theme. '. Index.index ';
if (! View::exists ($TPL)) {
$TPL = ' Default.index.index ';
}
Return View::make ($TPL);
}

is to detect if the template file exists before rendering the template, and use the corresponding template in the default theme if it does not exist.

So many lines of code, we can continue to encapsulate, this time to use the Response object, we know that Response::view () is equivalent to View::make (), and Response has a method Response::macro () Method can be used to define a macro, we can encapsulate the logic into the macro:

Copy the Code code as follows:
Response::macro (' Render ', function ($path, $data =array ()) {
$theme = Config::get (' app.theme ', ' Default ');
$TPL = $theme. '. '. $path;
if (! View::exists ($TPL)) {
$TPL = ' Default '. $path;
}
Return Response::view ($TPL, $data);
});

Use:

Copy the Code code as follows:
Function index ()
{
$bindings = Array (
' title ' = ' Home '
);
Return Response::render (' Index.index ', $bindings);
}

It is important to note that the variables passed into the template pass the second parameter of Response::render.

Today's tutorial first come here, follow-up we have to further analysis, I hope you can enjoy.

http://www.bkjia.com/PHPjc/963120.html www.bkjia.com true http://www.bkjia.com/PHPjc/963120.html techarticle Laravel 5 implements the template theme feature, Laravel template is well known, laravel rendering template is implemented through View::make (), you need to explicitly specify the template file path: Copy code code as follows ...

  • 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.