TYPO3 CMS  TYPO3_6-2
AbstractContentObject.php
Go to the documentation of this file.
1 <?php
3 
22 abstract class AbstractContentObject {
23 
27  protected $cObj;
28 
32  protected $fileFactory = NULL;
33 
39  public function __construct(\TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer $cObj) {
40  $this->cObj = $cObj;
42  }
43 
50  abstract public function render($conf = array());
51 
57  public function getContentObject() {
58  return $this->cObj;
59  }
60 }
__construct(\TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer $cObj)