public function __construct()
 {
     $this->tx_mmforum_postparser = GeneralUtility::makeInstance('tx_mmforum_postparser');
     $this->tx_mmforum_postqueue = GeneralUtility::makeInstance('tx_mmforum_postqueue');
     $this->pi_loadLL();
     parent::__construct();
 }
 /**
  * @param array $conf
  * @param \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer $cObj
  */
 public function __construct($conf, $cObj)
 {
     $this->injectCObj($cObj);
     $this->injectConf($conf);
     $this->tx_mmforum_rss = GeneralUtility::makeInstance('tx_mmforum_rss');
     $this->tx_mmforum_postparser = GeneralUtility::makeInstance('tx_mmforum_postparser');
     parent::__construct();
 }
Example #3
0
 public function __construct()
 {
     $this->tx_mmforum_indexing = GeneralUtility::makeInstance('tx_mmforum_indexing');
     $this->tx_mmforum_pi1 = GeneralUtility::makeInstance('tx_mmforum_pi1');
     parent::__construct();
 }
Example #4
0
 public function __construct()
 {
     $this->tx_mmforum_pi1 = GeneralUtility::makeInstance('tx_mmforum_pi1');
     $this->cObj = GeneralUtility::makeInstance('TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer');
     parent::__construct();
 }
Example #5
0
 /**
  * Constructor. takes the database handle from $GLOBALS['TYPO3_DB']
  */
 public function __construct()
 {
     // $this->tx_mmforum_postfunctions instanciated in main function to inject conf settings;
     $this->tx_mmforum_rss = GeneralUtility::makeInstance('tx_mmforum_rss');
     $this->tx_mmforum_havealook = GeneralUtility::makeInstance('tx_mmforum_havealook');
     $this->tx_mmforum_postalert = GeneralUtility::makeInstance('tx_mmforum_postalert');
     $this->tx_mmforum_postparser = GeneralUtility::makeInstance('tx_mmforum_postparser');
     $this->cObj = GeneralUtility::makeInstance('TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer');
     parent::__construct();
 }