< Zurück

03.12.2012 20:21:00 • Categories: Typo3 • Tags: Php, Typo3, Template

PHP Typo3: working with templates in extension

<?php
        //Templatefile
        $this->templateCode = $this->cObj->fileResource($tmplfile);
    $template['content'] = $this-&gt;cObj-&gt;getSubpart($this-&gt;templateCode, '###SUBPART###');
    $markerArray['###MARKER1###'] = '';
    $markerArray['###MARKER2###'] = '';
    $markerArray['###MARKER3###'] = '';
    $content = $this-&gt;cObj-&gt;substituteMarkerArrayCached($template['content'], $markerArray);

?>

 


< Zurück | ^ nach oben