2 /***************************************************************
5 * (c) 2010 Xavier Perseguers <typo3@perseguers.ch>
6 * (c) 2010 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 USER_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_UserInternal
extends tslib_content_Abstract
{
39 * Rendering the cObject, USER_INT
41 * @param array Array of TypoScript properties
42 * @return string Output
44 public function render($conf = array()) {
45 $this->cObj
->setUserObjectType(tslib_cObj
::OBJECTTYPE_USER_INT
);
46 $substKey = 'INT_SCRIPT.' . $GLOBALS['TSFE']->uniqueHash();
47 $content = '<!--' . $substKey . '-->';
48 $GLOBALS['TSFE']->config
['INTincScript'][$substKey] = array (
49 'file' => $conf['includeLibs'],
51 'cObj' => serialize($this->cObj
),
54 $this->cObj
->setUserObjectType(FALSE);
61 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['tslib/content/class.tslib_content_userinternal.php']) {
62 include_once ($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['tslib/content/class.tslib_content_userinternal.php']);