On 01/27/2012 05:57 PM, Iban Cardona i Subiela wrote:
Hello,

I'd like to know how insert a multimedia TYPO3 content in my fe-plugin.
Any suggestion?

Thank you so much!

(pibase solution)

you can try:
$tt_content_conf = array('tables' => 'tt_content'
                        ,'source' => $uidlist
                        ,'dontCheckPid' => 1
                        );
$content .= $this->cObj->RECORDS($tt_content_conf);


where $uidlist is a list of your CEs (maybe included with IRRE)
be careful if these CEs are uncached, as then the rendering may fail

bernd
--
http://www.pi-phi.de/cheatsheet.html
_______________________________________________
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Reply via email to