‪TYPO3CMS  9.5
AbstractContentObject.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
19 
24 {
28  protected ‪$cObj;
29 
33  protected ‪$pageRenderer;
34 
41  {
42  $this->cObj = ‪$cObj;
43  }
44 
51  abstract public function ‪render($conf = []);
52 
58  public function ‪getContentObjectRenderer()
59  {
60  return ‪$this->cObj;
61  }
62 
66  protected function ‪getPageRenderer()
67  {
68  if ($this->pageRenderer === null) {
69  $this->pageRenderer = GeneralUtility::makeInstance(PageRenderer::class);
70  }
71 
73  }
74 }
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject\$pageRenderer
‪PageRenderer $pageRenderer
Definition: AbstractContentObject.php:31
‪TYPO3\CMS\Frontend\ContentObject
Definition: AbstractContentObject.php:2
‪TYPO3\CMS\Core\Page\PageRenderer
Definition: PageRenderer.php:35
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject
Definition: AbstractContentObject.php:24
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject\$cObj
‪ContentObjectRenderer $cObj
Definition: AbstractContentObject.php:27
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject\__construct
‪__construct(ContentObjectRenderer $cObj)
Definition: AbstractContentObject.php:38
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject\getContentObjectRenderer
‪ContentObjectRenderer getContentObjectRenderer()
Definition: AbstractContentObject.php:56
‪TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer
Definition: ContentObjectRenderer.php:91
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject\getPageRenderer
‪PageRenderer getPageRenderer()
Definition: AbstractContentObject.php:64
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject\render
‪string render($conf=[])