vendor/contao/core-bundle/src/Resources/contao/elements/ContentProxy.php line 65

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\Fragment\Reference\ContentElementReference;
  11. use Contao\Model\Collection;
  12. use Contao\Model\Registry;
  13. /**
  14.  * Proxy for new content element fragments, so they are accessible via $GLOBALS['TL_CTE'].
  15.  */
  16. class ContentProxy extends ContentElement
  17. {
  18.     /**
  19.      * @var ContentElementReference
  20.      */
  21.     private $reference;
  22.     /**
  23.      * @param ContentModel|Collection $objElement
  24.      */
  25.     public function __construct($objElement$strColumn 'main')
  26.     {
  27.         if ($objElement instanceof Collection)
  28.         {
  29.             $objElement $objElement->current();
  30.         }
  31.         if (!$objElement instanceof ContentModel)
  32.         {
  33.             throw new \RuntimeException('ContentProxy must be constructed with a ContentModel');
  34.         }
  35.         $this->reference = new ContentElementReference($objElement$strColumn, array(), !Registry::getInstance()->isRegistered($objElement));
  36.         $this->strColumn $strColumn;
  37.         // Do not call parent constructor
  38.     }
  39.     /**
  40.      * {@inheritdoc}
  41.      */
  42.     public function generate()
  43.     {
  44.         if ($this->isHidden())
  45.         {
  46.             return '';
  47.         }
  48.         $request System::getContainer()->get('request_stack')->getCurrentRequest();
  49.         if ($request && System::getContainer()->get('contao.routing.scope_matcher')->isBackendRequest($request))
  50.         {
  51.             $this->reference->setBackendScope();
  52.         }
  53.         return System::getContainer()->get('fragment.handler')->render($this->reference);
  54.     }
  55.     public function __set($strKey$varValue)
  56.     {
  57.         $this->reference->attributes['templateProperties'][$strKey] = $varValue;
  58.     }
  59.     public function __get($strKey)
  60.     {
  61.         return $this->reference->attributes['templateProperties'][$strKey] ?? null;
  62.     }
  63.     public function __isset($strKey)
  64.     {
  65.         return isset($this->reference->attributes['templateProperties'][$strKey]);
  66.     }
  67.     /**
  68.      * {@inheritdoc}
  69.      */
  70.     protected function compile()
  71.     {
  72.         // noop
  73.     }
  74. }
  75. class_alias(ContentProxy::class, 'ContentProxy');