vendor/contao/core-bundle/src/Resources/contao/modules/ModuleCustomnav.php line 72

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Contao.
  4.  *
  5.  * (c) Leo Feyer
  6.  *
  7.  * @license LGPL-3.0-or-later
  8.  */
  9. namespace Contao;
  10. use Contao\CoreBundle\Security\ContaoCorePermissions;
  11. use Symfony\Component\Routing\Exception\ExceptionInterface;
  12. /**
  13.  * Front end module "custom navigation".
  14.  */
  15. class ModuleCustomnav extends Module
  16. {
  17.     /**
  18.      * Template
  19.      * @var string
  20.      */
  21.     protected $strTemplate 'mod_customnav';
  22.     /**
  23.      * Redirect to the selected page
  24.      *
  25.      * @return string
  26.      */
  27.     public function generate()
  28.     {
  29.         $request System::getContainer()->get('request_stack')->getCurrentRequest();
  30.         if ($request && System::getContainer()->get('contao.routing.scope_matcher')->isBackendRequest($request))
  31.         {
  32.             $objTemplate = new BackendTemplate('be_wildcard');
  33.             $objTemplate->wildcard '### ' $GLOBALS['TL_LANG']['FMD']['customnav'][0] . ' ###';
  34.             $objTemplate->title $this->headline;
  35.             $objTemplate->id $this->id;
  36.             $objTemplate->link $this->name;
  37.             $objTemplate->href StringUtil::specialcharsUrl(System::getContainer()->get('router')->generate('contao_backend', array('do'=>'themes''table'=>'tl_module''act'=>'edit''id'=>$this->id)));
  38.             return $objTemplate->parse();
  39.         }
  40.         // Always return an array (see #4616)
  41.         $this->pages StringUtil::deserialize($this->pagestrue);
  42.         if (empty($this->pages) || !$this->pages[0])
  43.         {
  44.             return '';
  45.         }
  46.         $strBuffer parent::generate();
  47.         return $this->Template->items $strBuffer '';
  48.     }
  49.     /**
  50.      * Generate the module
  51.      */
  52.     protected function compile()
  53.     {
  54.         /** @var PageModel $objPage */
  55.         global $objPage;
  56.         $items = array();
  57.         // Get all active pages and also include root pages if the language is added to the URL (see #72)
  58.         $objPages PageModel::findPublishedRegularByIds($this->pages, array('includeRoot'=>true));
  59.         // Return if there are no pages
  60.         if ($objPages === null)
  61.         {
  62.             return;
  63.         }
  64.         $objTemplate = new FrontendTemplate($this->navigationTpl ?: 'nav_default');
  65.         $objTemplate->type = static::class;
  66.         $objTemplate->cssID $this->cssID// see #4897 and 6129
  67.         $objTemplate->level 'level_1';
  68.         $objTemplate->module $this// see #155
  69.         $container System::getContainer();
  70.         $security $container->get('security.helper');
  71.         $isMember $security->isGranted('ROLE_MEMBER');
  72.         /** @var PageModel[] $objPages */
  73.         foreach ($objPages as $objModel)
  74.         {
  75.             $objModel->loadDetails();
  76.             // Hide the page if it is not protected and only visible to guests (backwards compatibility)
  77.             if ($objModel->guests && !$objModel->protected && $isMember)
  78.             {
  79.                 trigger_deprecation('contao/core-bundle''4.12''Using the "show to guests only" feature has been deprecated an will no longer work in Contao 5.0. Use the "protect page" function instead.');
  80.                 continue;
  81.             }
  82.             // PageModel->groups is an array after calling loadDetails()
  83.             if (!$objModel->protected || $this->showProtected || $security->isGranted(ContaoCorePermissions::MEMBER_IN_GROUPS$objModel->groups))
  84.             {
  85.                 // Get href
  86.                 switch ($objModel->type)
  87.                 {
  88.                     case 'redirect':
  89.                         $href $objModel->url;
  90.                         break;
  91.                     case 'root':
  92.                         // Overwrite the alias to link to the empty URL or language URL (see #1641)
  93.                         $objModel->alias 'index';
  94.                         $href $objModel->getFrontendUrl();
  95.                         break;
  96.                     case 'forward':
  97.                         if ($objModel->jumpTo)
  98.                         {
  99.                             $objNext PageModel::findPublishedById($objModel->jumpTo);
  100.                         }
  101.                         else
  102.                         {
  103.                             $objNext PageModel::findFirstPublishedRegularByPid($objModel->id);
  104.                         }
  105.                         if ($objNext instanceof PageModel)
  106.                         {
  107.                             $href $objNext->getFrontendUrl();
  108.                             break;
  109.                         }
  110.                         // no break
  111.                     default:
  112.                         try
  113.                         {
  114.                             $href $objModel->getFrontendUrl();
  115.                         }
  116.                         catch (ExceptionInterface $exception)
  117.                         {
  118.                             continue 2;
  119.                         }
  120.                         break;
  121.                 }
  122.                 $trail \in_array($objModel->id$objPage->trail);
  123.                 // Use the path without query string to check for active pages (see #480)
  124.                 list($path) = explode('?'Environment::get('request'), 2);
  125.                 // Active page
  126.                 if ($objPage->id == $objModel->id && $href == $path)
  127.                 {
  128.                     $strClass trim($objModel->cssClass);
  129.                     $row $objModel->row();
  130.                     $row['isActive'] = true;
  131.                     $row['isTrail'] = false;
  132.                     $row['class'] = trim('active ' $strClass);
  133.                     $row['title'] = StringUtil::specialchars($objModel->titletrue);
  134.                     $row['pageTitle'] = StringUtil::specialchars($objModel->pageTitletrue);
  135.                     $row['link'] = $objModel->title;
  136.                     $row['href'] = $href;
  137.                     $row['rel'] = '';
  138.                     $row['nofollow'] = false// backwards compatibility
  139.                     $row['target'] = '';
  140.                     $row['description'] = str_replace(array("\n""\r"), array(' '''), (string) $objModel->description);
  141.                     $arrRel = array();
  142.                     // Override the link target
  143.                     if ($objModel->type == 'redirect' && $objModel->target)
  144.                     {
  145.                         $arrRel[] = 'noreferrer';
  146.                         $arrRel[] = 'noopener';
  147.                         $row['target'] = ' target="_blank"';
  148.                     }
  149.                     // Set the rel attribute
  150.                     if (!empty($arrRel))
  151.                     {
  152.                         $row['rel'] = ' rel="' implode(' '$arrRel) . '"';
  153.                     }
  154.                     $items[] = $row;
  155.                 }
  156.                 // Regular page
  157.                 else
  158.                 {
  159.                     $strClass trim($objModel->cssClass . ($trail ' trail' ''));
  160.                     $row $objModel->row();
  161.                     $row['isActive'] = false;
  162.                     $row['isTrail'] = $trail;
  163.                     $row['class'] = $strClass;
  164.                     $row['title'] = StringUtil::specialchars($objModel->titletrue);
  165.                     $row['pageTitle'] = StringUtil::specialchars($objModel->pageTitletrue);
  166.                     $row['link'] = $objModel->title;
  167.                     $row['href'] = $href;
  168.                     $row['rel'] = '';
  169.                     $row['nofollow'] = false// backwards compatibility
  170.                     $row['target'] = '';
  171.                     $row['description'] = str_replace(array("\n""\r"), array(' '''), (string) $objModel->description);
  172.                     $arrRel = array();
  173.                     // Override the link target
  174.                     if ($objModel->type == 'redirect' && $objModel->target)
  175.                     {
  176.                         $arrRel[] = 'noreferrer';
  177.                         $arrRel[] = 'noopener';
  178.                         $row['target'] = ' target="_blank"';
  179.                     }
  180.                     // Set the rel attribute
  181.                     if (!empty($arrRel))
  182.                     {
  183.                         $row['rel'] = ' rel="' implode(' '$arrRel) . '"';
  184.                     }
  185.                     $items[] = $row;
  186.                 }
  187.             }
  188.         }
  189.         // Add classes first and last if there are items
  190.         if (!empty($items))
  191.         {
  192.             $items[0]['class'] = trim($items[0]['class'] . ' first');
  193.             $last \count($items) - 1;
  194.             $items[$last]['class'] = trim($items[$last]['class'] . ' last');
  195.         }
  196.         $objTemplate->items $items;
  197.         $this->Template->request Environment::get('indexFreeRequest');
  198.         $this->Template->skipId 'skipNavigation' $this->id;
  199.         $this->Template->skipNavigation StringUtil::specialchars($GLOBALS['TL_LANG']['MSC']['skipNavigation']);
  200.         $this->Template->items = !empty($items) ? $objTemplate->parse() : '';
  201.     }
  202. }
  203. class_alias(ModuleCustomnav::class, 'ModuleCustomnav');