If my whole site is using the default.ctp layout specified in apps/view/layouts/default.ctp, how do I change only the home page layout to use homepage.ctp and leave the rest of the site using default.ctp?
Try changing the $layout property in the controller itself. Show activity on this post. In CakePHP 3.6. 2 you can not use $this->layout because is deprecated.
Certain parts of the web pages are repeated on multiple web pages, but at different locations. CakePHP can help us reuse these repeated parts. These reusable parts are called Elements - help box, extra menu, etc. An element is basically a mini-view. We can also pass variables in elements.
Copy the /cake/libs/controller/pages_controller.php
into your /app/controller/
dir and do either of the following:
display()
to switch the layout if 'home' is requested:if ($page == 'home') $this->layout = 'homepage';
home()
method (or named however you like) in which you set $this->layout
and re-route the /
route in /app/config/routes.php
to use this new method.Edit:
In summary, you need some custom method in which you'll set $this->layout = 'homepage'
, that's all. You can do this in any of your controllers at any point, reusing the PagesController
is just the most convenient and conventional way to do it in Cake.
The above answer is now out of date, but gives the right approach.
In modern versions of CakePHP, the controller he asks you to make is already present and is:
/app/Controller/PagesController.php
I had a template called "loggedoff", and added this as follows, just before the $this->render()
command (approx line 73).
$this->layout = 'loggedoff';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With