NAVIGATION
Eine recht einfache Lösung, in sich abgeschlossene externe Skripte einzubinden und das Ergebnis an der Stelle des Tags {DOM_SCRIPT} auszugeben.
Siehe auch Einbinden von PHP-Datei/-Variablen
Docu: –
Forum: http://forum.phpwcms.org/viewtopic.php?p=117631#p117631
Autor: O.Georgi http://phpwcms.de
CMS-Version: >= V1.3.0
Version: V1.0 2009/06/23
Dateiname: rt_ext_content.php
Verzeichnis: /template/inc_script/frontend_render/
Bedingung: → /config/phpwcms/conf.inc.php
<?php ob_start(); include('my_simple_script.php'); $result = ob_get_contents(); ob_end_clean(); $content['all'] = str_raplace('{DOM_SCRIPT}', $result, $content['all']); ?>