2 /***************************************************************
5 * (c) 1999-2008 Kasper Skaarhoj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
31 * [CLASS/FUNCTION INDEX of SCRIPT]
35 * 49: class tx_tstemplateinfo extends t3lib_extobjbase
36 * 63: function tableRow($label, $data, $field)
37 * 77: function procesResources($resources, $func=false)
38 * 117: function resourceListForCopy($id, $template_uid)
39 * 143: function initialize_editor($pageId, $template_uid=0)
40 * 160: function main()
43 * (This index is automatically created/updated by the extension "extdeveval")
47 require_once(PATH_t3lib
."class.t3lib_extobjbase.php");
49 class tx_tstemplateinfo
extends t3lib_extobjbase
{
51 public $tce_processed = false; // indicator for t3editor, whether data is stored
54 * Creates a row for a HTML table
56 * @param string $label: The label to be shown (e.g. 'Title:', 'Sitetitle:')
57 * @param string $data: The data/information to be shown (e.g. 'Template for my site')
58 * @param string $field: The field/variable to be sent on clicking the edit icon (e.g. 'title', 'sitetitle')
59 * @return string A row for a HTML table
61 function tableRow($label, $data, $field) {
62 $ret = '<tr><td class="bgColor4" width="1%">';
63 $ret.= '<a href="index.php?id='.$this->pObj
->id
.'&e['.$field.']=1"><img '.t3lib_iconWorks
::skinImg($GLOBALS['BACK_PATH'], 'gfx/edit2.gif').' width=11 height=12 hspace=3 border=0 title="Edit field"></a>';
64 $ret.= '</td><td class="bgColor4" width="1%"><b>'.$label.' </b></td><td class="bgColor4" width="99%">'.$data.' </td></tr>';
69 * Renders HTML table with available template resources/files
71 * @param string $resources: List of resources/files to be shown (e.g. 'file_01.txt,file.txt')
72 * @param boolean $func: Whether to render functions like 'to top' or 'delete' for each resource (default: false)
73 * @return string HTML table with available template resources/files
75 function procesResources($resources, $func=false) {
76 $arr = t3lib_div
::trimExplode(',', $resources.',,', 1);
78 $bgcol = ($func ?
' class="bgColor4"' : '');
79 foreach ($arr as $k => $v) {
80 $path = PATH_site
.$GLOBALS['TCA']['sys_template']['columns']['resources']['config']['uploadfolder'].'/'.$v;
83 $functions = '<td bgcolor=red nowrap>Delete: <input type="Checkbox" name="data[remove_resource]['.$k.']" value="'.htmlspecialchars($v).'"></td>';
84 $functions.= '<td'.$bgcol.' nowrap>To top: <input type="Checkbox" name="data[totop_resource]['.$k.']" value="'.htmlspecialchars($v).'"></td>';
85 $functions.= '<td'.$bgcol.' nowrap>';
86 $fI = t3lib_div
::split_fileref($v);
87 if (t3lib_div
::inList($this->pObj
->textExtensions
,$fI['fileext'])) {
88 $functions.= '<a href="index.php?id='.$this->pObj
->id
.'&e[file]='.rawurlencode($v).'"><img '.t3lib_iconWorks
::skinImg($GLOBALS['BACK_PATH'], 'gfx/edit2.gif').' width=11 height=12 hspace=3 border=0 title="Edit file"></a>';
92 $thumb = t3lib_BEfunc
::thumbCode(array('resources' => $v), 'sys_template', 'resources', $GLOBALS['BACK_PATH'], '');
93 $out.= '<tr><td'.$bgcol.' nowrap>'.$v.' </td><td'.$bgcol.' nowrap> '.t3lib_div
::formatSize(@filesize
($path)).' </td>'.$functions.'<td'.$bgcol.'>'.trim($thumb).'</td></tr>';
97 $out = '<table border=0 cellpadding=1 cellspacing=1 width="100%">'.$out.'</table>';
98 $out = '<table border=0 cellpadding=0 cellspacing=0>
99 <tr><td class="bgColor2">'.$out.'<img src=clear.gif width=465 height=1></td></tr>
102 $out = '<table border=0 cellpadding=0 cellspacing=0>'.$out.'</table>';
109 * Renders HTML table with all available template resources/files in the current rootline that could be copied
111 * @param integer $id: The uid of the current page
112 * @param integer $template_uid: The uid of the template record to be rendered (only if more than one template on the current page)
113 * @return string HTML table with all available template resources/files in the current rootline that could be copied
115 function resourceListForCopy($id, $template_uid) {
117 $sys_page = t3lib_div
::makeInstance('t3lib_pageSelect');
118 $rootLine = $sys_page->getRootLine($id);
119 $tmpl->runThroughTemplates($rootLine, $template_uid); // This generates the constants/config + hierarchy info for the template.
120 $theResources = t3lib_div
::trimExplode(',', $tmpl->resources
, 1);
121 foreach ($theResources as $k => $v) {
123 if (t3lib_div
::inList($this->pObj
->textExtensions
,strtolower($fI['extension']))) {
124 $path = PATH_site
.$GLOBALS['TCA']['sys_template']['columns']['resources']['config']['uploadfolder'].'/'.$v;
125 $thumb = t3lib_BEfunc
::thumbCode(array('resources' => $v), 'sys_template', 'resources', $GLOBALS['BACK_PATH'], '');
126 $out.= '<tr><td'.$bgcol.' nowrap>'.$v.' </td><td'.$bgcol.' nowrap> '.t3lib_div
::formatSize(@filesize
($path)).' </td><td'.$bgcol.'>'.trim($thumb).'</td><td><input type="Checkbox" name="data[makecopy_resource]['.$k.']" value="'.htmlspecialchars($v).'"></td></tr>';
129 $out = ($out ?
'<table border=0 cellpadding=0 cellspacing=0>'.$out.'</table>' : '');
134 * Create an instance of t3lib_tsparser_ext in $GLOBALS['tmpl'] and looks for the first (visible) template
135 * record. If $template_uid was given and greater than zero, this record will be checked.
137 * @param integer $id: The uid of the current page
138 * @param integer $template_uid: The uid of the template record to be rendered (only if more than one template on the current page)
139 * @return boolean Returns true if a template record was found, otherwise false
141 function initialize_editor($pageId, $template_uid=0) {
142 // Initializes the module. Done in this function because we may need to re-initialize if data is submitted!
143 global $tmpl,$tplRow,$theConstants;
145 $tmpl = t3lib_div
::makeInstance('t3lib_tsparser_ext'); // Defined global here!
146 $tmpl->tt_track
= 0; // Do not log time-performance information
149 $tplRow = $tmpl->ext_getFirstTemplate($pageId, $template_uid); // Get the row of the first VISIBLE template of the page. whereclause like the frontend.
150 return (is_array($tplRow) ?
true : false);
154 * The main processing method if this class
156 * @return string Information of the template status or the taken actions as HTML string
159 global $SOBE,$BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$CLIENT,$TYPO3_CONF_VARS;
160 global $tmpl,$tplRow,$theConstants;
162 $edit = $this->pObj
->edit
;
165 t3lib_div
::loadTCA('sys_template');
170 // **************************
171 // Checking for more than one template an if, set a menu...
172 // **************************
173 $manyTemplatesMenu = $this->pObj
->templateMenu();
175 if ($manyTemplatesMenu) {
176 $template_uid = $this->pObj
->MOD_SETTINGS
['templatesOnPage'];
180 // **************************
182 // **************************
183 $existTemplate = $this->initialize_editor($this->pObj
->id
, $template_uid); // initialize
185 if ($existTemplate) {
186 $saveId = ($tplRow['_ORIG_uid'] ?
$tplRow['_ORIG_uid'] : $tplRow['uid']);
188 // **************************
189 // Create extension template
190 // **************************
191 $newId = $this->pObj
->createTemplate($this->pObj
->id
, $saveId);
193 // switch to new template
194 header('location: index.php?id=' . $this->pObj
->id
. '&SET[templatesOnPage]=' . $newId);
197 if ($existTemplate) {
199 $POST = t3lib_div
::_POST();
200 if ($POST['submit'] ||
(t3lib_div
::testInt($POST['submit_x']) && t3lib_div
::testInt($POST['submit_y']))
201 ||
$POST['saveclose'] ||
(t3lib_div
::testInt($POST['saveclose_x']) && t3lib_div
::testInt($POST['saveclose_y']))) {
202 require_once(PATH_t3lib
.'class.t3lib_tcemain.php');
203 // Set the data to be saved
205 $alternativeFileName = array();
206 $resList = $tplRow['resources'];
208 $tmp_upload_name = '';
209 $tmp_newresource_name = ''; // Set this to blank
211 if (is_array($POST['data'])) {
212 foreach ($POST['data'] as $field => $val) {
219 $recData['sys_template'][$saveId][$field] = $val;
222 $tmp_upload_name = t3lib_div
::upload_to_tempfile($_FILES['resources']['tmp_name']); // If there is an uploaded file, move it for the sake of safe_mode.
223 if ($tmp_upload_name) {
224 if ($tmp_upload_name!='none' && $_FILES['resources']['name']) {
225 $alternativeFileName[$tmp_upload_name] = trim($_FILES['resources']['name']);
226 $resList = $tmp_upload_name.','.$resList;
231 $newName = trim(t3lib_div
::_GP('new_resource'));
233 $newName.= '.'.t3lib_div
::_GP('new_resource_ext');
234 $tmp_newresource_name = t3lib_div
::tempnam('new_resource_');
235 $alternativeFileName[$tmp_newresource_name] = $newName;
236 $resList = $tmp_newresource_name.','.$resList;
239 case 'makecopy_resource':
240 if (is_array($val)) {
241 $resList = ','.$resList.',';
242 foreach ($val as $k => $file) {
243 $tmp_name = PATH_site
.$TCA['sys_template']['columns']['resources']['config']['uploadfolder'].'/'.$file;
244 $resList = $tmp_name.','.$resList;
248 case 'remove_resource':
249 if (is_array($val)) {
250 $resList = ','.$resList.',';
251 foreach ($val as $k => $file) {
252 $resList = str_replace(','.$file.',', ',', $resList);
256 case 'totop_resource':
257 if (is_array($val)) {
258 $resList = ','.$resList.',';
259 foreach ($val as $k => $file) {
260 $resList = str_replace(','.$file.',', ',', $resList);
261 $resList = ','.$file.$resList;
268 $resList=implode(',', t3lib_div
::trimExplode(',', $resList, 1));
269 if (strcmp($resList, $tplRow['resources'])) {
270 $recData['sys_template'][$saveId]['resources'] = $resList;
272 if (count($recData)) {
273 // Create new tce-object
274 $tce = t3lib_div
::makeInstance('t3lib_TCEmain');
275 $tce->stripslashes_values
=0;
276 $tce->alternativeFileName
= $alternativeFileName;
278 $tce->start($recData, array());
280 $tce->process_datamap();
281 // Clear the cache (note: currently only admin-users can clear the cache in tce_main.php)
282 $tce->clear_cacheCmd('all');
284 // tce were processed successfully
285 $this->tce_processed
= true;
287 // re-read the template ...
288 $this->initialize_editor($this->pObj
->id
, $template_uid);
291 // Unlink any uploaded/new temp files there was:
292 t3lib_div
::unlink_tempfile($tmp_upload_name);
293 t3lib_div
::unlink_tempfile($tmp_newresource_name);
295 // If files has been edited:
296 if (is_array($edit)) {
297 if ($edit['filename'] && $tplRow['resources'] && t3lib_div
::inList($tplRow['resources'], $edit['filename'])) { // Check if there are resources, and that the file is in the resourcelist.
298 $path = PATH_site
.$TCA['sys_template']['columns']['resources']['config']['uploadfolder'].'/'.$edit['filename'];
299 $fI = t3lib_div
::split_fileref($edit['filename']);
300 if (@is_file
($path) && t3lib_div
::getFileAbsFileName($path) && t3lib_div
::inList($this->pObj
->textExtensions
, $fI['fileext'])) { // checks that have already been done.. Just to make sure
301 // @TODO: Check if the hardcorded value already has a config member, otherwise create one
302 if (filesize($path) < 30720) { // checks that have already been done.. Just to make sure
303 t3lib_div
::writeFile($path, $edit['file']);
305 $theOutput.= $this->pObj
->doc
->spacer(10);
306 $theOutput.= $this->pObj
->doc
->section('<font color=red>FILE CHANGED</font>', "Resource '".$edit['filename']."' has been updated.", 0, 0, 0, 1);
308 // Clear cache - the file has probably affected the template setup
309 // @TODO: Check if the edited file really had something to do with cached data and prevent this clearing if possible!
310 $tce = t3lib_div
::makeInstance('t3lib_TCEmain');
311 $tce->stripslashes_values
= 0;
312 $tce->start(array(), array());
313 $tce->clear_cacheCmd('all');
320 // hook Post updating template/TCE processing
321 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/tstemplate_info/class.tx_tstemplateinfo.php']['postTCEProcessingHook'])) {
322 $postTCEProcessingHook =& $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/tstemplate_info/class.tx_tstemplateinfo.php']['postTCEProcessingHook'];
323 if (is_array($postTCEProcessingHook)) {
324 $hookParameters = array(
328 foreach ($postTCEProcessingHook as $hookFunction) {
329 t3lib_div
::callUserFunction($hookFunction, $hookParameters, $this);
334 $theOutput.= $this->pObj
->doc
->spacer(5);
335 $theOutput.= $this->pObj
->doc
->section('Template information:', '<img '.t3lib_iconWorks
::skinImg($BACK_PATH, t3lib_iconWorks
::getIcon('sys_template', $tplRow)).' align="top" /> <b>'.htmlspecialchars($tplRow['title']).'</b>'.htmlspecialchars(trim($tplRow['sitetitle'])?
' - ('.$tplRow['sitetitle'].')':''), 0, 1);
336 if ($manyTemplatesMenu) {
337 $theOutput.= $this->pObj
->doc
->section('', $manyTemplatesMenu);
338 $theOutput.= $this->pObj
->doc
->divider(5);
341 #$numberOfRows= t3lib_div::intInRange($this->pObj->MOD_SETTINGS["ts_template_editor_TArows"],0,150);
345 // If abort pressed, nothing should be edited:
346 if ($POST['abort'] ||
(t3lib_div
::testInt($POST['abort_x']) && t3lib_div
::testInt($POST['abort_y']))
347 ||
$POST['saveclose'] ||
(t3lib_div
::testInt($POST['saveclose_x']) && t3lib_div
::testInt($POST['saveclose_y']))) {
352 $outCode = '<input type="Text" name="data[title]" value="'.htmlspecialchars($tplRow['title']).'"'.$this->pObj
->doc
->formWidth().'>';
353 $outCode.= '<input type="Hidden" name="e[title]" value="1">';
354 $theOutput.= $this->pObj
->doc
->spacer(15);
355 $theOutput.= $this->pObj
->doc
->section('Title:', $outCode);
357 if ($e['sitetitle']) {
358 $outCode = '<input type="Text" name="data[sitetitle]" value="'.htmlspecialchars($tplRow['sitetitle']).'"'.$this->pObj
->doc
->formWidth().'>';
359 $outCode.= '<input type="Hidden" name="e[sitetitle]" value="1">';
360 $theOutput.= $this->pObj
->doc
->spacer(15);
361 $theOutput.= $this->pObj
->doc
->section('Sitetitle:', $outCode);
363 if ($e['description']) {
364 $outCode = '<textarea name="data[description]" rows="5" class="fixed-font enable-tab"'.$this->pObj
->doc
->formWidthText(48, '', '').'>'.t3lib_div
::formatForTextarea($tplRow['description']).'</textarea>';
365 $outCode.= '<input type="Hidden" name="e[description]" value="1">';
366 $theOutput.= $this->pObj
->doc
->spacer(15);
367 $theOutput.= $this->pObj
->doc
->section('Description:', $outCode);
369 if ($e['resources']) {
371 $outCode = '<input type="File" name="resources"'.$this->pObj
->doc
->formWidth().' size="50">';
372 $outCode.= '<input type="Hidden" name="data[resources]" value="1">';
373 $outCode.= '<input type="Hidden" name="e[resources]" value="1">';
374 $outCode.= '<BR>Allowed extensions: <b>'.$TCA['sys_template']['columns']['resources']['config']['allowed'].'</b>';
375 $outCode.= '<BR>Max file size: <b>'.t3lib_div
::formatSize($TCA['sys_template']['columns']['resources']['config']['max_size']*1024).'</b>';
376 $theOutput.= $this->pObj
->doc
->spacer(15);
377 $theOutput.= $this->pObj
->doc
->section('Upload resource:', $outCode);
380 $opt = explode(',', $this->pObj
->textExtensions
);
382 foreach ($opt as $extVal) {
383 $optTags.= '<option value="'.$extVal.'">.'.$extVal.'</option>';
385 $outCode = '<input type="text" name="new_resource"'.$this->pObj
->doc
->formWidth(20).'>
386 <select name="new_resource_ext">'.$optTags.'</select>';
387 $outCode.= '<input type="Hidden" name="data[new_resource]" value="1">';
388 $theOutput.= $this->pObj
->doc
->spacer(15);
389 $theOutput.= $this->pObj
->doc
->section('New text resource (enter name):', $outCode);
392 $rL = $this->resourceListForCopy($this->pObj
->id
, $template_uid);
394 $theOutput.= $this->pObj
->doc
->spacer(20);
395 $theOutput.= $this->pObj
->doc
->section('Make a copy of resource:', $rL);
398 // Update resource list
399 $rL = $this->procesResources($tplRow['resources'], 1);
401 $theOutput.= $this->pObj
->doc
->spacer(20);
402 $theOutput.= $this->pObj
->doc
->section('Update resource list:', $rL);
405 if ($e['constants']) {
406 $outCode = '<textarea name="data[constants]" rows="'.$numberOfRows.'" wrap="off" class="fixed-font enable-tab"'.$this->pObj
->doc
->formWidthText(48, 'width:98%;height:70%', 'off').' class="fixed-font">'.t3lib_div
::formatForTextarea($tplRow['constants']).'</textarea>';
407 $outCode.= '<input type="Hidden" name="e[constants]" value="1">';
408 $theOutput.= $this->pObj
->doc
->spacer(15);
409 $theOutput.= $this->pObj
->doc
->section('Constants:', '');
410 $theOutput.= $this->pObj
->doc
->sectionEnd().$outCode;
413 $path = PATH_site
.$TCA['sys_template']['columns']['resources']['config']['uploadfolder'].'/'.$e[file
];
415 $fI = t3lib_div
::split_fileref($e[file
]);
416 if (@is_file
($path) && t3lib_div
::inList($this->pObj
->textExtensions
, $fI['fileext'])) {
417 if (filesize($path) < $TCA['sys_template']['columns']['resources']['config']['max_size']*1024) {
418 $fileContent = t3lib_div
::getUrl($path);
419 $outCode = 'File: <b>'.$e[file
].'</b><BR>';
420 $outCode.= '<textarea name="edit[file]" rows="'.$numberOfRows.'" wrap="off" class="fixed-font enable-tab"'.$this->pObj
->doc
->formWidthText(48, 'width:98%;height:70%', 'off').' class="fixed-font">'.t3lib_div
::formatForTextarea($fileContent).'</textarea>';
421 $outCode.= '<input type="Hidden" name="edit[filename]" value="'.$e[file
].'">';
422 $outCode.= '<input type="Hidden" name="e[file]" value="'.htmlspecialchars($e[file
]).'">';
423 $theOutput.= $this->pObj
->doc
->spacer(15);
424 $theOutput.= $this->pObj
->doc
->section('Edit Resource:', '');
425 $theOutput.= $this->pObj
->doc
->sectionEnd().$outCode;
427 $theOutput.= $this->pObj
->doc
->spacer(15);
428 $theOutput.= $this->pObj
->doc
->section(
429 '<font color=red>Filesize exceeded '.$TCA['sys_template']['columns']['resources']['config']['max_size'].' Kbytes</font>',
430 'Files larger than '.$TCA['sys_template']['columns']['resources']['config']['max_size'].' KByes are not allowed to be edited.',
437 $outCode='<textarea name="data[config]" rows="'.$numberOfRows.'" wrap="off" class="fixed-font enable-tab"'.$this->pObj
->doc
->formWidthText(48,"width:98%;height:70%","off").' class="fixed-font">'.t3lib_div
::formatForTextarea($tplRow["config"]).'</textarea>';
439 if (t3lib_extMgm
::isLoaded('tsconfig_help')) {
440 $url = $BACK_PATH.'wizard_tsconfig.php?mode=tsref';
442 'formName' => 'editForm',
443 'itemName' => 'data[config]',
445 $outCode.= '<a href="#" onClick="vHWin=window.open(\''.$url.t3lib_div
::implodeArrayForUrl('', array('P' => $params)).'\',\'popUp'.$md5ID.'\',\'height=500,width=780,status=0,menubar=0,scrollbars=1\');vHWin.focus();return false;"><img '.t3lib_iconWorks
::skinImg($BACK_PATH, 'gfx/wizard_tsconfig.gif').' width="22" height="27" border="0" title="TSref reference"></a>';
448 $outCode.= '<input type="Hidden" name="e[config]" value="1">';
449 $theOutput.= $this->pObj
->doc
->spacer(15);
450 $theOutput.= $this->pObj
->doc
->section('Setup:', '');
451 $theOutput.= $this->pObj
->doc
->sectionEnd().$outCode;
456 $outCode.= $this->tableRow('Title:', htmlspecialchars($tplRow['title']), 'title');
457 $outCode.= $this->tableRow('Sitetitle:', htmlspecialchars($tplRow['sitetitle']), 'sitetitle');
458 $outCode.= $this->tableRow('Description:', nl2br(htmlspecialchars($tplRow['description'])), 'description');
459 $outCode.= $this->tableRow('Resources:', $this->procesResources($tplRow['resources']), 'resources');
460 $outCode.= $this->tableRow('Constants:', '(edit to view, '.(trim($tplRow[constants
]) ?
count(explode(chr(10), $tplRow[constants
])) : 0).' lines)', 'constants');
461 $outCode.= $this->tableRow('Setup:', '(edit to view, '.(trim($tplRow[config
]) ?
count(explode(chr(10), $tplRow[config
])) : 0).' lines)', 'config');
462 $outCode = '<table border=0 cellpadding=1 cellspacing=1 width="100%">'.$outCode.'</table>';
464 $outCode = '<table border=0 cellpadding=0 cellspacing=0>
465 <tr><td class="bgColor2">'.$outCode.'<img src=clear.gif width=465 height=1></td></tr>
469 $outCode.= '<BR><a href="#" onClick="'.t3lib_BEfunc
::editOnClick(rawurlencode('&createExtension=0').'&edit[sys_template]['.$tplRow['uid'].']=edit', $BACK_PATH, '').'"><strong>Click here to edit whole template record</strong></a>';
471 $theOutput.= $this->pObj
->doc
->spacer(25);
472 $theOutput.= $this->pObj
->doc
->section('', $outCode);
475 // hook after compiling the output
476 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/tstemplate_info/class.tx_tstemplateinfo.php']['postOutputProcessingHook'])) {
477 $postOutputProcessingHook =& $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/tstemplate_info/class.tx_tstemplateinfo.php']['postOutputProcessingHook'];
478 if (is_array($postOutputProcessingHook)) {
479 $hookParameters = array(
480 'theOutput' => &$theOutput,
484 'numberOfRows' => $numberOfRows
486 foreach ($postOutputProcessingHook as $hookFunction) {
487 t3lib_div
::callUserFunction($hookFunction, $hookParameters, $this);
493 $theOutput.= $this->pObj
->noTemplate(1);
501 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/tstemplate_info/class.tx_tstemplateinfo.php']) {
502 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/tstemplate_info/class.tx_tstemplateinfo.php']);