Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Как можно сгделать проверку главной страницы в файле header.twig


meln1337
 Share

Recommended Posts

Здраствуйте! Я только начал улить опенкарт, и у меня возник вопрос: Как в header,twig можно сгделать проверку на главную страницу, тоесть

{% if isHome %}

{% include ... %}

{% endif; %}

Надо реализовать переменную isHome, но как и в каком файле? Помогите плз

Link to comment
Share on other sites


Еещё раз

 

catalog\controller\common\header.php
if (!isset($this->request->get['route']) || (isset($this->request->get['route']) && $this->request->get['route'] == 'common/home')) {
	$data['isHome'] = true;
} else {
	$data['isHome'] = false;
}
catalog\view\theme\default\template\common\header.twig
{% if isHome %}
	home
{% else %}
	not home
{% endif %}

 

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.