2 /***************************************************************
5 * (c) 2010-2011 Xavier Perseguers <typo3@perseguers.ch>
6 * (c) 2010-2011 Steffen Kamper <steffen@typo3.org>
9 * This script is part of the TYPO3 project. The TYPO3 project is
10 * free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * The GNU General Public License can be found at
16 * http://www.gnu.org/copyleft/gpl.html.
17 * A copy is found in the textfile GPL.txt and important notices to the license
18 * from the author is found in LICENSE.txt distributed with these scripts.
21 * This script is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * This copyright notice MUST APPEAR in all copies of the script!
27 ***************************************************************/
30 * Contains PHP_SCRIPT_INT class object.
32 * $Id: class.tslib_content.php 7905 2010-06-13 14:42:33Z ohader $
33 * @author Xavier Perseguers <typo3@perseguers.ch>
34 * @author Steffen Kamper <steffen@typo3.org>
36 class tslib_content_PhpScriptInternal
extends tslib_content_Abstract
{
39 * Rendering the cObject, PHP_SCRIPT_INT and PHP_SCRIPT_EXT
41 * @param array Array of TypoScript properties
42 * @return string Output
44 public function render($conf = array()) {
45 $file = isset($conf['file.'])
46 ?
$this->cObj
->stdWrap($conf['file'], $conf['file.'])
49 $incFile = $GLOBALS['TSFE']->tmpl
->getFileName($file);
51 if ($incFile && $GLOBALS['TSFE']->checkFileInclude($incFile)) {
52 $substKey = 'INT_SCRIPT.' . $GLOBALS['TSFE']->uniqueHash();
53 $content .= '<!--' . $substKey . '-->';
54 $GLOBALS['TSFE']->config
['INTincScript'][$substKey] = array (
55 'file' => $incFile, 'conf' => $conf, 'type' => 'SCRIPT'
57 $GLOBALS['TSFE']->config
['INTincScript'][$substKey]['cObj'] = serialize($this->cObj
);
60 if (isset($conf['stdWrap.'])) {
61 $content = $this->cObj
->stdWrap($content, $conf['stdWrap.']);
70 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['tslib/content/class.tslib_content_phpscriptinternal.php'])) {
71 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['tslib/content/class.tslib_content_phpscriptinternal.php']);