Created
September 4, 2014 01:08
-
-
Save Uriel29/8d6d16c79d311c33c52c to your computer and use it in GitHub Desktop.
Retirar o Content do Joomla da página inicial e de um Item de menu qualquer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
?php | |
$menu = &JSite::getMenu(); if ($menu->getActive() != $menu->getDefault()) // verifica se é a página inicial { ?> | |
<?php | |
$currentMenuId = JSite::getMenu()->getActive()->id ; | |
if ($currentMenuId != "119") // verifica se a página pertence ao Item de menu 119 { ?> | |
<jdoc:include type="component" /> | |
<?php } ?> | |
<?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment