Extension in einer TYPO3-Extension einbinden
Der folgende Code ermöglicht es in TYPO3 die Ausgabe einer fremden Extension per Marker in einer Extension auszugeben.
require_once(t3lib_extMgm::extPath("myext", "pi1/class.tx_myext_pi1.php");
$tx_myext_pi1 =& new tx_myext_pi1();
$tx_myext_pi1->cObj = t3lib_div::makeInstance('tslib_cObj');
$tx_myext_pi1->conf = $GLOBALS['TSFE']->tmpl->setup['plugin.']['tx_myext_pi1.'] ;
$markerArray['###EXTMARKER###'] = $tx_myext_pi1->main (&$this->content, $tx_myext_pi1->conf);