2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (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 * Contains class with layout/output function for TYPO3 Backend Scripts
30 * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj
31 * XHTML-trans compliant
33 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
38 if (!defined('TYPO3_MODE')) die("Can't include this file directly.");
42 * TYPO3 Backend Template Class
44 * This class contains functions for starting and ending the HTML of backend modules
45 * It also contains methods for outputting sections of content.
46 * Further there are functions for making icons, links, setting form-field widths etc.
47 * Color scheme and stylesheet definitions are also available here.
48 * Finally this file includes the language class for TYPO3's backend.
50 * After this file $LANG and $TBE_TEMPLATE are global variables / instances of their respective classes.
51 * This file is typically included right after the init.php file,
52 * if language and layout is needed.
54 * Please refer to Inside TYPO3 for a discussion of how to use this API.
56 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
62 // Vars you typically might want to/should set from outside after making instance of this class:
63 var $backPath = ''; // 'backPath' pointing back to the PATH_typo3
64 var $form=''; // This can be set to the HTML-code for a formtag. Useful when you need a form to span the whole page; Inserted exactly after the body-tag.
65 var $JScodeLibArray = array(); // Similar to $JScode (see below) but used as an associative array to prevent double inclusion of JS code. This is used to include certain external Javascript libraries before the inline JS code. <script>-Tags are not wrapped around automatically
66 var $JScode=''; // Additional header code (eg. a JavaScript section) could be accommulated in this var. It will be directly outputted in the header.
67 var $extJScode = ''; // Additional header code for ExtJS. It will be included in document header and inserted in a Ext.onReady(function()
68 var $JScodeArray = array(); // Similar to $JScode but for use as array with associative keys to prevent double inclusion of JS code. a <script> tag is automatically wrapped around.
69 var $postCode=''; // Additional 'page-end' code could be accommulated in this var. It will be outputted at the end of page before </body> and some other internal page-end code.
70 var $docType = ''; // Doc-type used in the header. Default is xhtml_trans. You can also set it to 'html_3', 'xhtml_strict' or 'xhtml_frames'.
71 var $moduleTemplate = ''; // HTML template with markers for module
72 protected $moduleTemplateFilename = ''; // the base file (not overlaid by TBE_STYLES) for the current module, useful for hooks when finding out which modules is rendered currently
74 // Other vars you can change, but less frequently used:
75 var $scriptID=''; // Script ID.
76 var $bodyTagId=''; // Id which can be set for the body tag. Default value is based on script ID
77 var $bodyTagAdditions=''; // You can add additional attributes to the body-tag through this variable.
78 var $inDocStyles=''; // Additional CSS styles which will be added to the <style> section in the header
79 var $inDocStylesArray=array(); // Like $inDocStyles but for use as array with associative keys to prevent double inclusion of css code
80 var $form_rowsToStylewidth = 9.58; // Multiplication factor for formWidth() input size (default is 48* this value).
81 var $form_largeComp = 1.33; // Compensation for large documents (used in class.t3lib_tceforms.php)
82 var $endJS=1; // If set, then a JavaScript section will be outputted in the bottom of page which will try and update the top.busy session expiry object.
85 // If you want to change this, please do so through a skin using the global var $GLOBALS['TBE_STYLES']
86 var $bgColor = '#F7F3EF'; // Light background color
87 var $bgColor2 = '#9BA1A8'; // Steel-blue
88 var $bgColor3 = '#F6F2E6'; // dok.color
89 var $bgColor4 = '#D9D5C9'; // light tablerow background, brownish
90 var $bgColor5 = '#ABBBB4'; // light tablerow background, greenish
91 var $bgColor6 = '#E7DBA8'; // light tablerow background, yellowish, for section headers. Light.
92 var $hoverColor = '#254D7B';
93 var $styleSheetFile = ''; // Filename of stylesheet (relative to PATH_typo3)
94 var $styleSheetFile2 = ''; // Filename of stylesheet #2 - linked to right after the $this->styleSheetFile script (relative to PATH_typo3)
95 var $styleSheetFile_post = ''; // Filename of a post-stylesheet - included right after all inline styles.
96 var $backGroundImage = ''; // Background image of page (relative to PATH_typo3)
97 var $inDocStyles_TBEstyle = ''; // Inline css styling set from TBE_STYLES array
100 * Whether to use the X-UA-Compatible meta tag
103 protected $useCompatibilityTag = TRUE;
106 * X-Ua-Compatible version output in meta tag
109 protected $xUaCompatibilityVersion = 'IE=9';
112 // stylesheets from core
113 protected $stylesheetsCore = array(
114 'structure' => 'stylesheets/structure/',
115 'visual' => 'stylesheets/visual/',
116 'generatedSprites' => '../typo3temp/sprites/',
119 // include these CSS directories from skins by default
120 protected $stylesheetsSkins = array(
121 'structure' => 'stylesheets/structure/',
122 'visual' => 'stylesheets/visual/',
126 * JavaScript files loaded for every page in the Backend
129 protected $jsFiles = array(
130 'modernizr' => 'contrib/modernizr/modernizr.min.js',
134 var $parseTimeFlag = 0; // Will output the parsetime of the scripts in milliseconds (for admin-users). Set this to FALSE when releasing TYPO3. Only for dev.
137 var $charset = 'utf-8'; // Default charset. see function initCharset()
139 var $sectionFlag=0; // Internal: Indicates if a <div>-output section is open
140 var $divClass = ''; // (Default) Class for wrapping <DIV>-tag of page. Is set in class extensions.
142 var $pageHeaderBlock = '';
143 var $endOfPageJsBlock = '';
145 var $hasDocheader = TRUE;
148 * @var t3lib_PageRenderer
150 protected $pageRenderer;
151 protected $pageHeaderFooterTemplateFile = ''; // alternative template file
153 protected $extDirectStateProvider = FALSE;
156 * Whether flashmessages should be rendered or not
158 * @var boolean $showFlashMessages
160 public $showFlashMessages = TRUE;
162 const STATUS_ICON_ERROR
= 3;
163 const STATUS_ICON_WARNING
= 2;
164 const STATUS_ICON_NOTIFICATION
= 1;
165 const STATUS_ICON_OK
= -1;
169 * Imports relevant parts from global $GLOBALS['TBE_STYLES'] (colorscheme)
171 public function __construct() {
172 // Initializes the page rendering object:
173 $this->getPageRenderer();
175 // Setting default scriptID:
176 if (($temp_M = (string) t3lib_div
::_GET('M')) && $GLOBALS['TBE_MODULES']['_PATHS'][$temp_M]) {
177 $this->scriptID
= preg_replace('/^.*\/(sysext|ext)\//', 'ext/', $GLOBALS['TBE_MODULES']['_PATHS'][$temp_M] . 'index.php');
179 $this->scriptID
= preg_replace('/^.*\/(sysext|ext)\//', 'ext/', substr(PATH_thisScript
, strlen(PATH_site
)));
181 if (TYPO3_mainDir
!='typo3/' && substr($this->scriptID
,0,strlen(TYPO3_mainDir
)) == TYPO3_mainDir
) {
182 $this->scriptID
= 'typo3/'.substr($this->scriptID
,strlen(TYPO3_mainDir
)); // This fixes if TYPO3_mainDir has been changed so the script ids are STILL "typo3/..."
185 $this->bodyTagId
= preg_replace('/[^A-Za-z0-9-]/','-',$this->scriptID
);
187 // Individual configuration per script? If so, make a recursive merge of the arrays:
188 if (is_array($GLOBALS['TBE_STYLES']['scriptIDindex'][$this->scriptID
])) {
189 $ovr = $GLOBALS['TBE_STYLES']['scriptIDindex'][$this->scriptID
]; // Make copy
190 $GLOBALS['TBE_STYLES'] = t3lib_div
::array_merge_recursive_overrule($GLOBALS['TBE_STYLES'],$ovr); // merge styles.
191 unset($GLOBALS['TBE_STYLES']['scriptIDindex'][$this->scriptID
]); // Have to unset - otherwise the second instantiation will do it again!
195 if ($GLOBALS['TBE_STYLES']['mainColors']['bgColor']) $this->bgColor
=$GLOBALS['TBE_STYLES']['mainColors']['bgColor'];
196 if ($GLOBALS['TBE_STYLES']['mainColors']['bgColor1']) $this->bgColor1
=$GLOBALS['TBE_STYLES']['mainColors']['bgColor1'];
197 if ($GLOBALS['TBE_STYLES']['mainColors']['bgColor2']) $this->bgColor2
=$GLOBALS['TBE_STYLES']['mainColors']['bgColor2'];
198 if ($GLOBALS['TBE_STYLES']['mainColors']['bgColor3']) $this->bgColor3
=$GLOBALS['TBE_STYLES']['mainColors']['bgColor3'];
199 if ($GLOBALS['TBE_STYLES']['mainColors']['bgColor4']) $this->bgColor4
=$GLOBALS['TBE_STYLES']['mainColors']['bgColor4'];
200 if ($GLOBALS['TBE_STYLES']['mainColors']['bgColor5']) $this->bgColor5
=$GLOBALS['TBE_STYLES']['mainColors']['bgColor5'];
201 if ($GLOBALS['TBE_STYLES']['mainColors']['bgColor6']) $this->bgColor6
=$GLOBALS['TBE_STYLES']['mainColors']['bgColor6'];
202 if ($GLOBALS['TBE_STYLES']['mainColors']['hoverColor']) $this->hoverColor
=$GLOBALS['TBE_STYLES']['mainColors']['hoverColor'];
205 if ($GLOBALS['TBE_STYLES']['stylesheet']) $this->styleSheetFile
= $GLOBALS['TBE_STYLES']['stylesheet'];
206 if ($GLOBALS['TBE_STYLES']['stylesheet2']) $this->styleSheetFile2
= $GLOBALS['TBE_STYLES']['stylesheet2'];
207 if ($GLOBALS['TBE_STYLES']['styleSheetFile_post']) $this->styleSheetFile_post
= $GLOBALS['TBE_STYLES']['styleSheetFile_post'];
208 if ($GLOBALS['TBE_STYLES']['inDocStyles_TBEstyle']) $this->inDocStyles_TBEstyle
= $GLOBALS['TBE_STYLES']['inDocStyles_TBEstyle'];
210 // include all stylesheets
211 foreach ($this->getSkinStylesheetDirectories() as $stylesheetDirectory) {
212 $this->addStylesheetDirectory($stylesheetDirectory);
216 if ($GLOBALS['TBE_STYLES']['background']) $this->backGroundImage
= $GLOBALS['TBE_STYLES']['background'];
220 * Gets instance of PageRenderer configured with the current language, file references and debug settings
222 * @return t3lib_PageRenderer
224 public function getPageRenderer() {
225 if (!isset($this->pageRenderer
)) {
226 $this->pageRenderer
= t3lib_div
::makeInstance('t3lib_PageRenderer');
227 $this->pageRenderer
->setTemplateFile(
228 TYPO3_mainDir
. 'templates/template_page_backend.html'
230 $this->pageRenderer
->setLanguage($GLOBALS['LANG']->lang
);
231 $this->pageRenderer
->enableConcatenateFiles();
232 $this->pageRenderer
->enableCompressCss();
233 $this->pageRenderer
->enableCompressJavascript();
235 // add all JavaScript files defined in $this->jsFiles to the PageRenderer
236 foreach ($this->jsFiles
as $file) {
237 $this->pageRenderer
->addJsFile($GLOBALS['BACK_PATH'] . $file);
240 if (intval($GLOBALS['TYPO3_CONF_VARS']['BE']['debug']) === 1) {
241 $this->pageRenderer
->enableDebugMode();
243 return $this->pageRenderer
;
249 * Sets inclusion of StateProvider
253 public function setExtDirectStateProvider() {
254 $this->extDirectStateProvider
= TRUE;
265 /*****************************************
267 * EVALUATION FUNCTIONS
268 * Various centralized processing
270 *****************************************/
273 * Makes click menu link (context sensitive menu)
274 * Returns $str (possibly an <|img> tag/icon) wrapped in a link which will activate the context sensitive menu for the record ($table/$uid) or file ($table = file)
275 * The link will load the top frame with the parameter "&item" which is the table,uid and listFr arguments imploded by "|": rawurlencode($table.'|'.$uid.'|'.$listFr)
277 * @param string $str String to be wrapped in link, typ. image tag.
278 * @param string $table Table name/File path. If the icon is for a database record, enter the tablename from $GLOBALS['TCA']. If a file then enter the absolute filepath
279 * @param integer $uid If icon is for database record this is the UID for the record from $table
280 * @param boolean $listFr Tells the top frame script that the link is coming from a "list" frame which means a frame from within the backend content frame.
281 * @param string $addParams Additional GET parameters for the link to alt_clickmenu.php
282 * @param string $enDisItems Enable / Disable click menu items. Example: "+new,view" will display ONLY these two items (and any spacers in between), "new,view" will display all BUT these two items.
283 * @param boolean $returnOnClick If set, will return only the onclick JavaScript, not the whole link.
284 * @return string The link-wrapped input string.
286 function wrapClickMenuOnIcon($str, $table, $uid = 0, $listFr = TRUE, $addParams = '', $enDisItems = '', $returnOnClick = FALSE) {
287 $backPath = rawurlencode($this->backPath
).'|'.t3lib_div
::shortMD5($this->backPath
.'|'.$GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey']);
288 $onClick = 'showClickmenu("' . $table . '","' . ($uid !== 0) ?
$uid : '' . '","' . strval($listFr) . '","' . str_replace('+', '%2B', $enDisItems) . '","' . str_replace('&', '&', addcslashes($backPath, '"')) . '","' . str_replace('&', '&', addcslashes($addParams, '"')) . '");return false;';
289 return $returnOnClick ?
$onClick : '<a href="#" onclick="'.htmlspecialchars($onClick).'" oncontextmenu="'.htmlspecialchars($onClick).'">'.$str.'</a>';
293 * Makes link to page $id in frontend (view page)
294 * Returns an magnifier-glass icon which links to the frontend index.php document for viewing the page with id $id
295 * $id must be a page-uid
296 * If the BE_USER has access to Web>List then a link to that module is shown as well (with return-url)
298 * @param integer $id The page id
299 * @param string $backPath The current "BACK_PATH" (the back relative to the typo3/ directory)
300 * @param string $addParams Additional parameters for the image tag(s)
301 * @return string HTML string with linked icon(s)
303 function viewPageIcon($id, $backPath, $addParams = 'hspace="3"') {
305 // If access to Web>List for user, then link to that module.
306 $str = t3lib_BEfunc
::getListViewLink(
309 'returnUrl' => t3lib_div
::getIndpEnv('REQUEST_URI'),
311 $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.showList')
314 // Make link to view page
315 $str.= '<a href="#" onclick="'.htmlspecialchars(t3lib_BEfunc
::viewOnClick($id,$backPath,t3lib_BEfunc
::BEgetRootLine($id))).'">'.
316 '<img'.t3lib_iconWorks
::skinImg($backPath,'gfx/zoom.gif','width="12" height="12"').' title="'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.showPage',1).'"'.($addParams?
' '.trim($addParams):"").' hspace="3" alt="" />'.
322 * Returns a URL with a command to TYPO3 Core Engine (tce_db.php)
323 * See description of the API elsewhere.
325 * @param string $params is a set of GET params to send to tce_db.php. Example: "&cmd[tt_content][123][move]=456" or "&data[tt_content][123][hidden]=1&data[tt_content][123][title]=Hello%20World"
326 * @param string $redirectUrl Redirect URL if any other that t3lib_div::getIndpEnv('REQUEST_URI') is wished
327 * @return string URL to tce_db.php + parameters (backpath is taken from $this->backPath)
328 * @see t3lib_BEfunc::editOnClick()
330 function issueCommand($params, $redirectUrl = '') {
331 $redirectUrl = $redirectUrl ?
$redirectUrl : t3lib_div
::getIndpEnv('REQUEST_URI');
332 $commandUrl = $this->backPath
.'tce_db.php?' .
334 '&redirect=' . ($redirectUrl == -1 ?
"'+T3_THIS_LOCATION+'" : rawurlencode($redirectUrl)) .
335 '&vC='.rawurlencode($GLOBALS['BE_USER']->veriCode()) .
336 t3lib_BEfunc
::getUrlToken('tceAction') .
343 * Returns TRUE if click-menu layers can be displayed for the current user/browser
344 * Use this to test if click-menus (context sensitive menus) can and should be displayed in the backend.
347 * @deprecated since TYPO3 4.7, will be removed in TYPO3 4.9 - This function makes no sense anymore
349 function isCMlayers() {
350 t3lib_div
::logDeprecatedFunction();
351 return !$GLOBALS['BE_USER']->uc
['disableCMlayers'] && $GLOBALS['CLIENT']['FORMSTYLE'] && !($GLOBALS['CLIENT']['SYSTEM']=='mac' && $GLOBALS['CLIENT']['BROWSER']=='Opera');
355 * Makes the header (icon+title) for a page (or other record). Used in most modules under Web>*
356 * $table and $row must be a tablename/record from that table
357 * $path will be shown as alt-text for the icon.
358 * The title will be truncated to 45 chars.
360 * @param string $table Table name
361 * @param array $row Record row
362 * @param string $path Alt text
363 * @param boolean $noViewPageIcon Set $noViewPageIcon TRUE if you don't want a magnifier-icon for viewing the page in the frontend
364 * @param array $tWrap is an array with indexes 0 and 1 each representing HTML-tags (start/end) which will wrap the title
365 * @return string HTML content
367 function getHeader($table, $row, $path, $noViewPageIcon = FALSE, $tWrap = array('', '')) {
369 if (is_array($row) && $row['uid']) {
370 $iconImgTag=t3lib_iconWorks
::getSpriteIconForRecord($table, $row , array('title' => htmlspecialchars($path)));
371 $title = strip_tags(t3lib_BEfunc
::getRecordTitle($table, $row));
372 $viewPage = $noViewPageIcon ?
'' : $this->viewPageIcon($row['uid'],$this->backPath
,'');
373 if ($table=='pages') $path.=' - '.t3lib_BEfunc
::titleAttribForPages($row,'',0);
375 $iconImgTag = t3lib_iconWorks
::getSpriteIcon('apps-pagetree-page-domain', array('title' => htmlspecialchars($path)));
376 $title=$GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'];
379 return '<span class="typo3-moduleHeader">'.$this->wrapClickMenuOnIcon($iconImgTag,$table,$row['uid']).
381 $tWrap[0].htmlspecialchars(t3lib_div
::fixed_lgd_cs($title,45)).$tWrap[1].'</span>';
385 * Like ->getHeader() but for files in the File>* main module/submodules
386 * Returns the file-icon with the path of the file set in the alt/title attribute. Shows the file-name after the icon.
388 * @param string $title Title string, expected to be the filepath
389 * @param string $path Alt text
390 * @param string $iconfile The icon file (relative to TYPO3 dir)
391 * @return string HTML content
393 function getFileheader($title, $path, $iconfile) {
394 $fileInfo = t3lib_div
::split_fileref($title);
395 $title = htmlspecialchars(t3lib_div
::fixed_lgd_cs($fileInfo['path'],-35)).'<strong>'.htmlspecialchars($fileInfo['file']).'</strong>';
396 return '<span class="typo3-moduleHeader"><img'.t3lib_iconWorks
::skinImg($this->backPath
,$iconfile,'width="18" height="16"').' title="'.htmlspecialchars($path).'" alt="" />'.$title.'</span>';
400 * Returns a linked shortcut-icon which will call the shortcut frame and set a shortcut there back to the calling page/module
402 * @param string $gvList Is the list of GET variables to store (if any)
403 * @param string $setList Is the list of SET[] variables to store (if any) - SET[] variables a stored in $GLOBALS["SOBE"]->MOD_SETTINGS for backend modules
404 * @param string $modName Module name string
405 * @param string $motherModName Is used to enter the "parent module name" if the module is a submodule under eg. Web>* or File>*. You can also set this value to "1" in which case the currentLoadedModule is sent to the shortcut script (so - not a fixed value!) - that is used in file_edit.php and wizard_rte.php scripts where those scripts are really running as a part of another module.
406 * @return string HTML content
408 function makeShortcutIcon($gvList, $setList, $modName, $motherModName = '') {
409 $backPath=$this->backPath
;
410 $storeUrl=$this->makeShortcutUrl($gvList,$setList);
411 $pathInfo = parse_url(t3lib_div
::getIndpEnv('REQUEST_URI'));
413 // Add the module identifier automatically if typo3/mod.php is used:
414 if (preg_match('/typo3\/mod\.php$/', $pathInfo['path']) && isset($GLOBALS['TBE_MODULES']['_PATHS'][$modName])) {
415 $storeUrl = '&M='.$modName.$storeUrl;
418 if (!strcmp($motherModName,'1')) {
419 $mMN="&motherModName='+top.currentModuleLoaded+'";
420 } elseif ($motherModName) {
421 $mMN='&motherModName='.rawurlencode($motherModName);
424 $onClick = 'top.ShortcutManager.createShortcut('
425 .$GLOBALS['LANG']->JScharCode($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.makeBookmark')).', '
426 .'\''.$backPath.'\', '
427 .'\''.rawurlencode($modName).'\', '
428 .'\''.rawurlencode($pathInfo['path']."?".$storeUrl).$mMN.'\''
431 $sIcon = '<a href="#" onclick="' . htmlspecialchars($onClick).'" title="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.makeBookmark', TRUE) . '">'
432 . t3lib_iconworks
::getSpriteIcon('actions-system-shortcut-new') . '</a>';
437 * MAKE url for storing
440 * @param string $gvList Is the list of GET variables to store (if any)
441 * @param string $setList Is the list of SET[] variables to store (if any) - SET[] variables a stored in $GLOBALS["SOBE"]->MOD_SETTINGS for backend modules
444 * @see makeShortcutIcon()
446 function makeShortcutUrl($gvList, $setList) {
447 $GET = t3lib_div
::_GET();
448 $storeArray = array_merge(
449 t3lib_div
::compileSelectedGetVarsFromArray($gvList,$GET),
450 array('SET'=>t3lib_div
::compileSelectedGetVarsFromArray($setList, (array)$GLOBALS['SOBE']->MOD_SETTINGS
))
452 $storeUrl = t3lib_div
::implodeArrayForUrl('',$storeArray);
457 * Returns <input> attributes to set the width of an text-type input field.
458 * For client browsers with no CSS support the cols/size attribute is returned.
459 * For CSS compliant browsers (recommended) a ' style="width: ...px;"' is returned.
461 * @param integer $size A relative number which multiplied with approx. 10 will lead to the width in pixels
462 * @param boolean $textarea A flag you can set for textareas - DEPRECATED, use ->formWidthText() for textareas!!!
463 * @param string $styleOverride A string which will be returned as attribute-value for style="" instead of the calculated width (if CSS is enabled)
464 * @return string Tag attributes for an <input> tag (regarding width)
465 * @see formWidthText()
467 function formWidth($size = 48, $textarea = FALSE, $styleOverride = '') {
468 $wAttrib = $textarea?
'cols':'size';
469 if (!$GLOBALS['CLIENT']['FORMSTYLE']) { // If not setting the width by style-attribute
470 $retVal = ' '.$wAttrib.'="'.$size.'"';
471 } else { // Setting width by style-attribute. 'cols' MUST be avoided with NN6+
472 $pixels = ceil($size*$this->form_rowsToStylewidth
);
473 $retVal = $styleOverride ?
' style="'.$styleOverride.'"' : ' style="width:'.$pixels.'px;"';
479 * This function is dedicated to textareas, which has the wrapping on/off option to observe.
481 * <textarea rows="10" wrap="off" '.$GLOBALS["TBE_TEMPLATE"]->formWidthText(48,"","off").'>
483 * <textarea rows="10" wrap="virtual" '.$GLOBALS["TBE_TEMPLATE"]->formWidthText(48,"","virtual").'>
485 * @param integer $size A relative number which multiplied with approx. 10 will lead to the width in pixels
486 * @param string $styleOverride A string which will be returned as attribute-value for style="" instead of the calculated width (if CSS is enabled)
487 * @param string $wrap Pass on the wrap-attribute value you use in your <textarea>! This will be used to make sure that some browsers will detect wrapping alright.
488 * @return string Tag attributes for an <input> tag (regarding width)
491 function formWidthText($size = 48, $styleOverride = '', $wrap = '') {
492 $wTags = $this->formWidth($size,1,$styleOverride);
493 // Netscape 6+/Mozilla seems to have this ODD problem where there WILL ALWAYS be wrapping with the cols-attribute set and NEVER without the col-attribute...
494 if (strtolower(trim($wrap))!='off' && $GLOBALS['CLIENT']['BROWSER']=='net' && $GLOBALS['CLIENT']['VERSION']>=5) {
495 $wTags.=' cols="'.$size.'"';
501 * Returns JavaScript variables setting the returnUrl and thisScript location for use by JavaScript on the page.
502 * Used in fx. db_list.php (Web>List)
504 * @param string $thisLocation URL to "this location" / current script
505 * @return string Urls are returned as JavaScript variables T3_RETURN_URL and T3_THIS_LOCATION
506 * @see typo3/db_list.php
508 function redirectUrls($thisLocation = '') {
509 $thisLocation = $thisLocation?
$thisLocation:t3lib_div
::linkThisScript(
518 var T3_RETURN_URL = '".str_replace('%20','',rawurlencode(t3lib_div
::sanitizeLocalUrl(t3lib_div
::_GP('returnUrl'))))."';
519 var T3_THIS_LOCATION = '".str_replace('%20','',rawurlencode($thisLocation))."';
525 * Returns a formatted string of $tstamp
526 * Uses $GLOBALS['TYPO3_CONF_VARS']['SYS']['hhmm'] and $GLOBALS['TYPO3_CONF_VARS']['SYS']['ddmmyy'] to format date and time
528 * @param integer $tstamp UNIX timestamp, seconds since 1970
529 * @param integer $type How much data to show: $type = 1: hhmm, $type = 10: ddmmmyy
530 * @return string Formatted timestamp
532 function formatTime($tstamp, $type) {
535 case 1: $dateStr = date($GLOBALS['TYPO3_CONF_VARS']['SYS']['hhmm'],$tstamp);
537 case 10: $dateStr = date($GLOBALS['TYPO3_CONF_VARS']['SYS']['ddmmyy'],$tstamp);
544 * Returns script parsetime IF ->parseTimeFlag is set and user is "admin"
545 * Automatically outputted in page end
547 * @return string HTML formated with <p>-tags
549 function parseTime() {
550 if ($this->parseTimeFlag
&& $GLOBALS['BE_USER']->isAdmin()) {
551 return '<p>(ParseTime: '.(t3lib_div
::milliseconds()-$GLOBALS['PARSETIME_START']).' ms</p>
552 <p>REQUEST_URI-length: '.strlen(t3lib_div
::getIndpEnv('REQUEST_URI')).')</p>';
557 * Defines whether to use the X-UA-Compatible meta tag.
559 * @param boolean $useCompatibilityTag Whether to use the tag
562 public function useCompatibilityTag($useCompatibilityTag = TRUE) {
563 $this->useCompatibilityTag
= (bool) $useCompatibilityTag;
577 /*****************************************
579 * PAGE BUILDING FUNCTIONS.
580 * Use this to build the HTML of your backend modules
582 *****************************************/
586 * This includes the proper header with charset, title, meta tag and beginning body-tag.
588 * @param string $title HTML Page title for the header
589 * @param boolean $includeCsh flag for including CSH
590 * @return string Returns the whole header section of a HTML-document based on settings in internal variables (like styles, javascript code, charset, generator and docType)
593 function startPage($title, $includeCsh = TRUE) {
594 // hook pre start page
595 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['preStartPageHook'])) {
596 $preStartPageHook =& $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['preStartPageHook'];
597 if (is_array($preStartPageHook)) {
598 $hookParameters = array(
601 foreach ($preStartPageHook as $hookFunction) {
602 t3lib_div
::callUserFunction($hookFunction, $hookParameters, $this);
607 $this->pageRenderer
->backPath
= $this->backPath
;
609 // alternative template for Header and Footer
610 if ($this->pageHeaderFooterTemplateFile
) {
611 $file = t3lib_div
::getFileAbsFileName($this->pageHeaderFooterTemplateFile
, TRUE);
613 $this->pageRenderer
->setTemplateFile($file);
616 // For debugging: If this outputs "QuirksMode"/"BackCompat" (IE) the browser runs in quirks-mode. Otherwise the value is "CSS1Compat"
617 # $this->JScodeArray[]='alert(document.compatMode);';
619 // Send HTTP header for selected charset. Added by Robert Lemke 23.10.2003
620 $this->initCharset();
621 header ('Content-Type:text/html;charset='.$this->charset
);
624 $htmlTag = '<html xmlns="http://www.w3.org/1999/xhtml">';
626 switch($this->docType
) {
628 $headerStart = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">';
630 // disable rendering of XHTML tags
631 $this->getPageRenderer()->setRenderXhtml(FALSE);
634 $headerStart = '<!DOCTYPE html
635 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
636 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
639 $headerStart = '<!DOCTYPE html
640 PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
641 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">';
644 $headerStart = '<!DOCTYPE html
645 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
646 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
650 // The fallthrough is intended as HTML5, as this is the default for the BE since TYPO3 4.5
651 $headerStart = '<!DOCTYPE html>' . LF
;
653 // disable rendering of XHTML tags
654 $this->getPageRenderer()->setRenderXhtml(FALSE);
658 $this->pageRenderer
->setHtmlTag($htmlTag);
660 // This loads the tabulator-in-textarea feature. It automatically modifies
661 // every textarea which is found.
662 if (!$GLOBALS['BE_USER']->uc
['disableTabInTextarea']) {
663 $this->loadJavascriptLib('tab.js');
666 // include the JS for the Context Sensitive Help
668 $this->loadCshJavascript();
671 // Get the browser info
672 $browserInfo = t3lib_utility_Client
::getBrowserInfo(t3lib_div
::getIndpEnv('HTTP_USER_AGENT'));
674 // Set the XML prologue
675 $xmlPrologue = '<?xml version="1.0" encoding="' . $this->charset
. '"?>';
677 // Set the XML stylesheet
678 $xmlStylesheet = '<?xml-stylesheet href="#internalStyle" type="text/css"?>';
680 // Add the XML prologue for XHTML doctypes
681 if (strpos($this->docType
, 'xhtml') !== FALSE) {
682 // Put the XML prologue before or after the doctype declaration according to browser
683 if ($browserInfo['browser'] === 'msie' && $browserInfo['version'] < 7) {
684 $headerStart = $headerStart . LF
. $xmlPrologue;
686 $headerStart = $xmlPrologue . LF
. $headerStart;
689 // Add the xml stylesheet according to doctype
690 if ($this->docType
!== 'xhtml_frames') {
691 $headerStart = $headerStart . LF
. $xmlStylesheet;
695 $this->pageRenderer
->setXmlPrologAndDocType($headerStart);
696 $this->pageRenderer
->setHeadTag('<head>' . LF
. '<!-- TYPO3 Script ID: '.htmlspecialchars($this->scriptID
).' -->');
697 $this->pageRenderer
->setCharSet($this->charset
);
698 $this->pageRenderer
->addMetaTag($this->generator());
699 $this->pageRenderer
->addMetaTag('<meta name="robots" content="noindex,follow" />');
700 if ($this->useCompatibilityTag
) {
701 $this->pageRenderer
->addMetaTag($this->xUaCompatible($this->xUaCompatibilityVersion
));
703 $this->pageRenderer
->setTitle($title);
708 if ($this->extDirectStateProvider
) {
709 $this->pageRenderer
->addJsFile($this->backPath
. '../t3lib/js/extjs/ExtDirect.StateProvider.js');
712 // add jsCode for overriding the console with a debug panel connection
713 $this->pageRenderer
->addJsInlineCode(
714 'consoleOverrideWithDebugPanel',
715 'if (typeof top.Ext === "object") {
716 top.Ext.onReady(function() {
717 if (typeof console === "undefined") {
718 if (top && top.TYPO3 && top.TYPO3.Backend && top.TYPO3.Backend.DebugConsole) {
719 console = top.TYPO3.Backend.DebugConsole;
735 $this->pageRenderer
->addHeaderData($this->JScode
);
737 foreach ($this->JScodeArray
as $name => $code) {
738 $this->pageRenderer
->addJsInlineCode($name, $code, FALSE);
741 if (count($this->JScodeLibArray
)) {
742 foreach($this->JScodeLibArray
as $library) {
743 $this->pageRenderer
->addHeaderData($library);
747 if ($this->extJScode
) {
748 $this->pageRenderer
->addExtOnReadyCode($this->extJScode
);
751 // hook for additional headerData
752 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['preHeaderRenderHook'])) {
753 $preHeaderRenderHook =& $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['preHeaderRenderHook'];
754 if (is_array($preHeaderRenderHook)) {
755 $hookParameters = array(
756 'pageRenderer' => &$this->pageRenderer
,
758 foreach ($preHeaderRenderHook as $hookFunction) {
759 t3lib_div
::callUserFunction($hookFunction, $hookParameters, $this);
764 // Construct page header.
765 $str = $this->pageRenderer
->render(t3lib_PageRenderer
::PART_HEADER
);
767 $this->JScodeLibArray
= array();
768 $this->JScode
= $this->extJScode
= '';
769 $this->JScodeArray
= array();
771 $this->endOfPageJsBlock
= $this->pageRenderer
->render(t3lib_PageRenderer
::PART_FOOTER
);
773 if ($this->docType
=='xhtml_frames') {
776 $str.=$this->docBodyTagBegin().
780 <!-- Wrapping DIV-section for whole page BEGIN -->
781 <div class="' . $this->divClass
. '">
783 : '' ) . trim($this->form
);
788 * Returns page end; This includes finishing form, div, body and html tags.
790 * @return string The HTML end of a page
794 $str = $this->sectionEnd().
797 $this->wrapScriptTags(t3lib_BEfunc
::getUpdateSignalCode()).
801 // if something is in buffer like debug, put it to end of page
802 if (ob_get_contents()) {
803 $str .= ob_get_clean();
804 if (!headers_sent()) {
805 header('Content-Encoding: None');
809 if ($this->docType
!== 'xhtml_frames') {
811 $str .= ($this->divClass?
'
813 <!-- Wrapping DIV-section for whole page END -->
814 </div>':'') . $this->endOfPageJsBlock
;
818 // Logging: Can't find better place to put it:
819 if (TYPO3_DLOG
) t3lib_div
::devLog('END of BACKEND session', 'template', 0, array('_FLUSH' => TRUE));
825 * Shortcut for render the complete page of a module
827 * @param string $title page title
828 * @param string $content page content
829 * @param boolean $includeCsh flag for including csh code
830 * @return string complete page
832 public function render($title, $content, $includeCsh = TRUE) {
833 $pageContent = $this->startPage($title, $includeCsh);
834 $pageContent .= $content;
835 $pageContent .= $this->endPage();
837 return $this->insertStylesAndJS($pageContent);
841 * Returns the header-bar in the top of most backend modules
842 * Closes section if open.
844 * @param string $text The text string for the header
845 * @return string HTML content
847 function header($text) {
850 <!-- MAIN Header in page top -->
851 <h2>'.htmlspecialchars($text).'</h2>
853 return $this->sectionEnd().$str;
857 * Begins an output section and sets header and content
859 * @param string $label The header
860 * @param string $text The HTML-content
861 * @param boolean $nostrtoupper A flag that will prevent the header from being converted to uppercase
862 * @param boolean $sH Defines the type of header (if set, "<h3>" rather than the default "h4")
863 * @param integer $type The number of an icon to show with the header (see the icon-function). -1,1,2,3
864 * @param boolean $allowHTMLinHeader If set, HTML tags are allowed in $label (otherwise this value is by default htmlspecialchars()'ed)
865 * @return string HTML content
866 * @see icons(), sectionHeader()
868 function section($label, $text, $nostrtoupper = FALSE, $sH = FALSE, $type=0, $allowHTMLinHeader = FALSE) {
873 if (!$allowHTMLinHeader) $label = htmlspecialchars($label);
874 $str.=$this->sectionHeader($this->icons($type).$label, $sH, $nostrtoupper ?
'' : ' class="uppercase"');
879 <!-- Section content -->
882 return $this->sectionBegin().$str;
886 * Inserts a divider image
887 * Ends a section (if open) before inserting the image
889 * @param integer $dist The margin-top/-bottom of the <hr> ruler.
890 * @return string HTML content
892 function divider($dist) {
893 $dist = intval($dist);
897 <hr style="margin-top: '.$dist.'px; margin-bottom: '.$dist.'px;" />
899 return $this->sectionEnd().$str;
903 * Returns a blank <div>-section with a height
905 * @param integer $dist Padding-top for the div-section (should be margin-top but konqueror (3.1) doesn't like it :-(
906 * @return string HTML content
908 function spacer($dist) {
912 <!-- Spacer element -->
913 <div style="padding-top: '.intval($dist).'px;"></div>
919 * Make a section header.
920 * Begins a section if not already open.
922 * @param string $label The label between the <h3> or <h4> tags. (Allows HTML)
923 * @param boolean $sH If set, <h3> is used, otherwise <h4>
924 * @param string $addAttrib Additional attributes to h-tag, eg. ' class=""'
925 * @return string HTML content
927 function sectionHeader($label, $sH = FALSE, $addAttrib = '') {
928 $tag = ($sH ?
'h3' : 'h4');
929 if ($addAttrib && substr($addAttrib, 0, 1) !== ' ') {
930 $addAttrib = ' ' . $addAttrib;
934 <!-- Section header -->
935 <' . $tag . $addAttrib . '>' . $label . '</' . $tag . '>
937 return $this->sectionBegin() . $str;
941 * Begins an output section.
942 * Returns the <div>-begin tag AND sets the ->sectionFlag TRUE (if the ->sectionFlag is not already set!)
943 * You can call this function even if a section is already begun since the function will only return something if the sectionFlag is not already set!
945 * @return string HTML content
947 function sectionBegin() {
948 if (!$this->sectionFlag
) {
949 $this->sectionFlag
=1;
952 <!-- ***********************
953 Begin output section.
954 *********************** -->
962 * Ends and output section
963 * Returns the </div>-end tag AND clears the ->sectionFlag (but does so only IF the sectionFlag is set - that is a section is 'open')
964 * See sectionBegin() also.
966 * @return string HTML content
968 function sectionEnd() {
969 if ($this->sectionFlag
) {
970 $this->sectionFlag
=0;
973 <!-- *********************
975 ********************* -->
981 * If a form-tag is defined in ->form then and end-tag for that <form> element is outputted
982 * Further a JavaScript section is outputted which will update the top.busy session-expiry object (unless $this->endJS is set to FALSE)
984 * @return string HTML content (<script> tag section)
986 function endPageJS() {
987 return ($this->endJS?
'
988 <script type="text/javascript">
990 if (top.busy && top.busy.loginRefreshed) {
991 top.busy.loginRefreshed();
998 * Creates the bodyTag.
999 * You can add to the bodyTag by $this->bodyTagAdditions
1001 * @return string HTML body tag
1003 function docBodyTagBegin() {
1004 $bodyContent = 'body onclick="if (top.menuReset) top.menuReset();" '.trim($this->bodyTagAdditions
.($this->bodyTagId ?
' id="'.$this->bodyTagId
.'"' : ''));
1005 return '<'.trim($bodyContent).'>';
1009 * Outputting document style
1011 * @return string HTML style section/link tags
1013 function docStyle() {
1015 // Request background image:
1016 if ($this->backGroundImage
) {
1017 $this->inDocStylesArray
[]=' BODY { background-image: url('.$this->backPath
.$this->backGroundImage
.'); }';
1020 // Add inDoc styles variables as well:
1021 $this->inDocStylesArray
[] = $this->inDocStyles
;
1022 $this->inDocStylesArray
[] = $this->inDocStyles_TBEstyle
;
1025 $inDocStyles = implode(LF
, $this->inDocStylesArray
);
1027 if ($this->styleSheetFile
) {
1028 $this->pageRenderer
->addCssFile($this->backPath
. $this->styleSheetFile
);
1030 if ($this->styleSheetFile2
) {
1031 $this->pageRenderer
->addCssFile($this->backPath
. $this->styleSheetFile2
);
1034 $this->pageRenderer
->addCssInlineBlock('inDocStyles', $inDocStyles . LF
. '/*###POSTCSSMARKER###*/');
1035 if ($this->styleSheetFile_post
) {
1036 $this->pageRenderer
->addCssFile($this->backPath
. $this->styleSheetFile_post
);
1042 * Insert additional style sheet link
1044 * @param string $key some key identifying the style sheet
1045 * @param string $href uri to the style sheet file
1046 * @param string $title value for the title attribute of the link element
1047 * @param string $relation value for the rel attribute of the link element
1050 function addStyleSheet($key, $href, $title = '', $relation = 'stylesheet') {
1051 if (strpos($href, '://') !== FALSE ||
substr($href, 0, 1) === '/') {
1054 $file = $this->backPath
. $href;
1056 $this->pageRenderer
->addCssFile($file, $relation, 'screen', $title);
1060 * Add all *.css files of the directory $path to the stylesheets
1062 * @param string $path directory to add
1065 function addStyleSheetDirectory($path) {
1066 // calculation needed, when TYPO3 source is used via a symlink
1067 // absolute path to the stylesheets
1068 $filePath = dirname(t3lib_div
::getIndpEnv('SCRIPT_FILENAME')) . '/' . $GLOBALS['BACK_PATH'] . $path;
1070 $resolvedPath = t3lib_div
::resolveBackPath($filePath);
1071 // read all files in directory and sort them alphabetically
1072 $files = t3lib_div
::getFilesInDir($resolvedPath, 'css', FALSE, 1);
1073 foreach ($files as $file) {
1074 $this->pageRenderer
->addCssFile($GLOBALS['BACK_PATH'] . $path . $file, 'stylesheet', 'all');
1079 * Insert post rendering document style into already rendered content
1080 * This is needed for extobjbase
1082 * @param string $content style-content to insert.
1083 * @return string content with inserted styles
1085 function insertStylesAndJS($content) {
1086 // insert accumulated CSS
1087 $this->inDocStylesArray
[] = $this->inDocStyles
;
1088 $styles = LF
.implode(LF
, $this->inDocStylesArray
);
1089 $content = str_replace('/*###POSTCSSMARKER###*/',$styles,$content);
1091 // insert accumulated JS
1092 $jscode = $this->JScode
.LF
.$this->wrapScriptTags(implode(LF
, $this->JScodeArray
));
1093 $content = str_replace('<!--###POSTJSMARKER###-->',$jscode,$content);
1099 * Returns an array of all stylesheet directories belonging to core and skins
1101 * @return array Stylesheet directories
1103 public function getSkinStylesheetDirectories() {
1104 $stylesheetDirectories = array();
1106 // add default core stylesheets
1107 foreach ($this->stylesheetsCore
as $stylesheetDir) {
1108 $stylesheetDirectories[] = $stylesheetDir;
1111 // Stylesheets from skins
1112 // merge default css directories ($this->stylesheetsSkin) with additional ones and include them
1113 if (is_array($GLOBALS['TBE_STYLES']['skins'])) {
1114 // loop over all registered skins
1115 foreach ($GLOBALS['TBE_STYLES']['skins'] as $skinExtKey => $skin) {
1116 $skinStylesheetDirs = $this->stylesheetsSkins
;
1118 // skins can add custom stylesheetDirectories using
1119 // $GLOBALS['TBE_STYLES']['skins'][$_EXTKEY]['stylesheetDirectories']
1120 if (is_array($skin['stylesheetDirectories'])) {
1121 $skinStylesheetDirs = array_merge($skinStylesheetDirs, $skin['stylesheetDirectories']);
1124 // add all registered directories
1125 foreach ($skinStylesheetDirs as $stylesheetDir) {
1126 // for EXT:myskin/stylesheets/ syntax
1127 if (substr($stylesheetDir, 0, 4) === 'EXT:') {
1128 list($extKey, $path) = explode('/', substr($stylesheetDir, 4), 2);
1129 if (strcmp($extKey, '') && t3lib_extMgm
::isLoaded($extKey) && strcmp($path, '')) {
1130 $stylesheetDirectories[] = t3lib_extMgm
::extRelPath($extKey) . $path;
1133 // for relative paths
1134 $stylesheetDirectories[] = t3lib_extMgm
::extRelPath($skinExtKey) . $stylesheetDir;
1139 return $stylesheetDirectories;
1143 * Initialize the charset.
1144 * Sets the internal $this->charset variable to the charset defined in $GLOBALS["LANG"] (or the default as set in this class)
1145 * Returns the meta-tag for the document header
1147 * @return string <meta> tag with charset from $this->charset or $GLOBALS['LANG']->charSet
1149 function initCharset() {
1150 // Set charset to the charset provided by the current backend users language selection:
1151 $this->charset
= $GLOBALS['LANG']->charSet ?
$GLOBALS['LANG']->charSet
: $this->charset
;
1153 return '<meta http-equiv="Content-Type" content="text/html; charset='.$this->charset
.'" />';
1157 * Returns generator meta tag
1159 * @return string <meta> tag with name "generator"
1161 function generator() {
1162 $str = 'TYPO3 '.TYPO3_branch
.', ' . TYPO3_URL_GENERAL
. ', © Kasper Skårhøj ' . TYPO3_copyright_year
. ', extensions are copyright of their respective owners.';
1163 return '<meta name="generator" content="'.$str .'" />';
1167 * Returns X-UA-Compatible meta tag
1169 * @param string $content Content of the compatible tag (default: IE-8)
1170 * @return string <meta http-equiv="X-UA-Compatible" content="???" />
1172 public function xUaCompatible($content = 'IE=8') {
1173 return '<meta http-equiv="X-UA-Compatible" content="' . $content . '" />';
1182 /*****************************************
1185 * Tables, buttons, formatting dimmed/red strings
1187 ******************************************/
1191 * Returns an image-tag with an 18x16 icon of the following types:
1194 * -1: OK icon (Check-mark)
1195 * 1: Notice (Speach-bubble)
1196 * 2: Warning (Yellow triangle)
1197 * 3: Fatal error (Red stop sign)
1199 * @param integer $type See description
1200 * @param string $styleAttribValue Value for style attribute
1201 * @return string HTML image tag (if applicable)
1203 function icons($type, $styleAttribValue = '') {
1205 case self
::STATUS_ICON_ERROR
:
1206 $icon = 'status-dialog-error';
1208 case self
::STATUS_ICON_WARNING
:
1209 $icon = 'status-dialog-warning';
1211 case self
::STATUS_ICON_NOTIFICATION
:
1212 $icon = 'status-dialog-notification';
1214 case self
::STATUS_ICON_OK
:
1215 $icon = 'status-dialog-ok';
1221 return t3lib_iconWorks
::getSpriteIcon($icon);
1226 * Returns an <input> button with the $onClick action and $label
1228 * @param string $onClick The value of the onclick attribute of the input tag (submit type)
1229 * @param string $label The label for the button (which will be htmlspecialchar'ed)
1230 * @return string A <input> tag of the type "submit"
1232 function t3Button($onClick, $label) {
1233 $button = '<input type="submit" onclick="'.htmlspecialchars($onClick).'; return false;" value="'.htmlspecialchars($label).'" />';
1238 * dimmed-fontwrap. Returns the string wrapped in a <span>-tag defining the color to be gray/dimmed
1240 * @param string $string Input string
1241 * @return string Output string
1243 function dfw($string) {
1244 return '<span class="typo3-dimmed">'.$string.'</span>';
1248 * red-fontwrap. Returns the string wrapped in a <span>-tag defining the color to be red
1250 * @param string $string Input string
1251 * @return string Output string
1253 function rfw($string) {
1254 return '<span class="typo3-red">'.$string.'</span>';
1258 * Returns string wrapped in CDATA "tags" for XML / XHTML (wrap content of <script> and <style> sections in those!)
1260 * @param string $string Input string
1261 * @return string Output string
1263 function wrapInCData($string) {
1264 $string = '/*<![CDATA[*/'.
1272 * Wraps the input string in script tags.
1273 * Automatic re-identing of the JS code is done by using the first line as ident reference.
1274 * This is nice for identing JS code with PHP code on the same level.
1276 * @param string $string Input string
1277 * @param boolean $linebreak Wrap script element in linebreaks? Default is TRUE.
1278 * @return string Output string
1280 function wrapScriptTags($string, $linebreak = TRUE) {
1282 // <script wrapped in nl?
1283 $cr = $linebreak? LF
: '';
1285 // remove nl from the beginning
1286 $string = preg_replace ('/^\n+/', '', $string);
1287 // re-ident to one tab using the first line as reference
1289 if(preg_match('/^(\t+)/',$string,$match)) {
1290 $string = str_replace($match[1],TAB
, $string);
1292 $string = $cr.'<script type="text/javascript">
1298 return trim($string);
1301 // These vars defines the layout for the table produced by the table() function.
1302 // You can override these values from outside if you like.
1303 var $tableLayout = array(
1305 'defCol' => array('<td valign="top">','</td>')
1308 var $table_TR = '<tr>';
1309 var $table_TABLE = '<table border="0" cellspacing="0" cellpadding="0" class="typo3-dblist" id="typo3-tmpltable">';
1312 * Returns a table based on the input $data
1314 * @param array $data Multidim array with first levels = rows, second levels = cells
1315 * @param array $layout If set, then this provides an alternative layout array instead of $this->tableLayout
1316 * @return string The HTML table.
1319 function table($data, $layout = NULL) {
1321 if (is_array($data)) {
1322 $tableLayout = (is_array($layout) ?
$layout : $this->tableLayout
);
1325 foreach ($data as $tableRow) {
1326 if ($rowCount %
2) {
1327 $layout = is_array($tableLayout['defRowOdd']) ?
$tableLayout['defRowOdd'] : $tableLayout['defRow'];
1329 $layout = is_array($tableLayout['defRowEven']) ?
$tableLayout['defRowEven'] : $tableLayout['defRow'];
1331 $rowLayout = is_array($tableLayout[$rowCount]) ?
$tableLayout[$rowCount] : $layout;
1333 if (is_array($tableRow)) {
1335 foreach ($tableRow as $tableCell) {
1336 $cellWrap = (is_array($layout[$cellCount]) ?
$layout[$cellCount] : $layout['defCol']);
1337 $cellWrap = (is_array($rowLayout['defCol']) ?
$rowLayout['defCol'] : $cellWrap);
1338 $cellWrap = (is_array($rowLayout[$cellCount]) ?
$rowLayout[$cellCount] : $cellWrap);
1339 $rowResult .= $cellWrap[0] . $tableCell . $cellWrap[1];
1343 $rowWrap = (is_array($layout['tr']) ?
$layout['tr'] : array($this->table_TR
, '</tr>'));
1344 $rowWrap = (is_array($rowLayout['tr']) ?
$rowLayout['tr'] : $rowWrap);
1345 $result .= $rowWrap[0] . $rowResult . $rowWrap[1];
1348 $tableWrap = is_array($tableLayout['table']) ?
$tableLayout['table'] : array($this->table_TABLE
, '</table>');
1349 $result = $tableWrap[0] . $result . $tableWrap[1];
1355 * Constructs a table with content from the $arr1, $arr2 and $arr3.
1356 * Used in eg. ext/belog/mod/index.php - refer to that for examples
1358 * @param array $arr1 Menu elements on first level
1359 * @param array $arr2 Secondary items
1360 * @param array $arr3 Third-level items
1361 * @return string HTML content, <table>...</table>
1363 function menuTable($arr1,$arr2 = array(), $arr3 = array()) {
1364 $rows = max(array(count($arr1),count($arr2),count($arr3)));
1367 <table border="0" cellpadding="0" cellspacing="0" id="typo3-tablemenu">';
1368 for($a=0;$a<$rows;$a++
) {
1372 $cls[]='<td valign="'.$valign.'">'.$arr1[$a][0].'</td><td>'.$arr1[$a][1].'</td>';
1374 $cls[]='<td valign="'.$valign.'">'.$arr2[$a][0].'</td><td>'.$arr2[$a][1].'</td>';
1376 $cls[]='<td valign="'.$valign.'">'.$arr3[$a][0].'</td><td>'.$arr3[$a][1].'</td>';
1379 $menu.=implode($cls,'<td> </td>');
1389 * Returns a one-row/two-celled table with $content and $menu side by side.
1390 * The table is a 100% width table and each cell is aligned left / right
1392 * @param string $content Content cell content (left)
1393 * @param string $menu Menu cell content (right)
1394 * @return string HTML output
1396 function funcMenu($content, $menu) {
1398 <table border="0" cellpadding="0" cellspacing="0" width="100%" id="typo3-funcmenu">
1400 <td valign="top" nowrap="nowrap">'.$content.'</td>
1401 <td valign="top" align="right" nowrap="nowrap">'.$menu.'</td>
1408 * Includes a javascript library that exists in the core /typo3/ directory. The
1409 * backpath is automatically applied
1411 * @param string $lib: Library name. Call it with the full path like "contrib/prototype/prototype.js" to load it
1414 function loadJavascriptLib($lib) {
1415 $this->pageRenderer
->addJsFile($this->backPath
. $lib);
1421 * Includes the necessary Javascript function for the clickmenu (context sensitive menus) in the document
1424 function getContextMenuCode() {
1425 $this->pageRenderer
->loadPrototype();
1426 $this->loadJavascriptLib('js/clickmenu.js');
1428 $this->JScodeArray
['clickmenu'] = '
1429 Clickmenu.clickURL = "'.$this->backPath
.'alt_clickmenu.php";
1430 Clickmenu.ajax = '.($this->isCMLayers() ?
'true' : 'false' ).';';
1434 * Includes the necessary javascript file (tree.js) for use on pages which have the
1435 * drag and drop functionality (usually pages and folder display trees)
1437 * @param string $table indicator of which table the drag and drop function should work on (pages or folders)
1440 function getDragDropCode($table) {
1441 $this->pageRenderer
->loadPrototype();
1442 $this->loadJavascriptLib('js/common.js');
1443 $this->loadJavascriptLib('js/tree.js');
1445 // setting prefs for drag & drop
1446 $this->JScodeArray
['dragdrop'] = '
1447 DragDrop.changeURL = "'.$this->backPath
.'alt_clickmenu.php";
1448 DragDrop.backPath = "'.t3lib_div
::shortMD5(''.'|'.$GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey']).'";
1449 DragDrop.table = "'.$table.'";
1454 * This loads everything needed for the Context Sensitive Help (CSH)
1458 protected function loadCshJavascript() {
1459 $this->pageRenderer
->loadExtJS();
1460 $this->pageRenderer
->addJsFile($this->backPath
.'../t3lib/js/extjs/contexthelp.js');
1461 $this->pageRenderer
->addExtDirectCode();
1465 * Creates a tab menu from an array definition
1467 * Returns a tab menu for a module
1468 * Requires the JS function jumpToUrl() to be available
1470 * @param mixed $mainParams is the "&id=" parameter value to be sent to the module, but it can be also a parameter array which will be passed instead of the &id=...
1471 * @param string $elementName it the form elements name, probably something like "SET[...]"
1472 * @param string $currentValue is the value to be selected currently.
1473 * @param array $menuItems is an array with the menu items for the selector box
1474 * @param string $script is the script to send the &id to, if empty it's automatically found
1475 * @param string $addparams is additional parameters to pass to the script.
1476 * @return string HTML code for tab menu
1478 function getTabMenu($mainParams, $elementName, $currentValue, $menuItems, $script = '', $addparams = '') {
1481 if (is_array($menuItems)) {
1482 if (!is_array($mainParams)) {
1483 $mainParams = array('id' => $mainParams);
1485 $mainParams = t3lib_div
::implodeArrayForUrl('',$mainParams);
1487 if (!$script) {$script=basename(PATH_thisScript
);}
1490 foreach($menuItems as $value => $label) {
1491 $menuDef[$value]['isActive'] = !strcmp($currentValue,$value);
1492 $menuDef[$value]['label'] = t3lib_div
::deHSCentities(htmlspecialchars($label));
1493 $menuDef[$value]['url'] = $script . '?' . $mainParams . $addparams . '&' . $elementName . '=' . $value;
1495 $content = $this->getTabMenuRaw($menuDef);
1502 * Creates the HTML content for the tab menu
1504 * @param array $menuItems Menu items for tabs
1505 * @return string Table HTML
1508 function getTabMenuRaw($menuItems) {
1511 if (is_array($menuItems)) {
1514 $count = count($menuItems);
1518 $widthRight = max (1,floor(30-pow($count,1.72)));
1519 $widthTabs = 100 - $widthRight - $widthLeft;
1520 $widthNo = floor(($widthTabs - $addToAct)/$count);
1521 $addToAct = max ($addToAct,$widthTabs-($widthNo*$count));
1522 $widthAct = $widthNo +
$addToAct;
1523 $widthRight = 100 - ($widthLeft +
($count*$widthNo) +
$addToAct);
1525 foreach($menuItems as $id => $def) {
1526 $isActive = $def['isActive'];
1527 $class = $isActive ?
'tabact' : 'tab';
1528 $width = $isActive ?
$widthAct : $widthNo;
1530 // @rene: Here you should probably wrap $label and $url in htmlspecialchars() in order to make sure its XHTML compatible! I did it for $url already since that is VERY likely to break.
1531 $label = $def['label'];
1532 $url = htmlspecialchars($def['url']);
1533 $params = $def['addParams'];
1535 $options .= '<td width="' . $width . '%" class="' . $class . '"><a href="' . $url . '" ' . $params . '>' . $label . '</a></td>';
1541 <table cellpadding="0" cellspacing="0" border="0" width="100%" id="typo3-tabmenu">
1543 <td width="'.$widthLeft.'%"> </td>
1545 <td width="'.$widthRight.'%"> </td>
1548 <div class="hr" style="margin:0px"></div>';
1556 * Creates a DYNAMIC tab-menu where the tabs are switched between with DHTML.
1557 * Should work in MSIE, Mozilla, Opera and Konqueror. On Konqueror I did find a serious problem: <textarea> fields loose their content when you switch tabs!
1559 * @param array $menuItems Numeric array where each entry is an array in itself with associative keys: "label" contains the label for the TAB, "content" contains the HTML content that goes into the div-layer of the tabs content. "description" contains description text to be shown in the layer. "linkTitle" is short text for the title attribute of the tab-menu link (mouse-over text of tab). "stateIcon" indicates a standard status icon (see ->icon(), values: -1, 1, 2, 3). "icon" is an image tag placed before the text.
1560 * @param string $identString Identification string. This should be unique for every instance of a dynamic menu!
1561 * @param integer $toggle If "1", then enabling one tab does not hide the others - they simply toggles each sheet on/off. This makes most sense together with the $foldout option. If "-1" then it acts normally where only one tab can be active at a time BUT you can click a tab and it will close so you have no active tabs.
1562 * @param boolean $foldout If set, the tabs are rendered as headers instead over each sheet. Effectively this means there is no tab menu, but rather a foldout/foldin menu. Make sure to set $toggle as well for this option.
1563 * @param boolean $noWrap If set, tab table cells are not allowed to wrap their content
1564 * @param boolean $fullWidth If set, the tabs will span the full width of their position
1565 * @param integer $defaultTabIndex Default tab to open (for toggle <=0). Value corresponds to integer-array index + 1 (index zero is "1", index "1" is 2 etc.). A value of zero (or something non-existing) will result in no default tab open.
1566 * @param integer $dividers2tabs If set to '1' empty tabs will be remove, If set to '2' empty tabs will be disabled
1567 * @return string JavaScript section for the HTML header.
1569 public function getDynTabMenu($menuItems, $identString, $toggle = 0, $foldout = FALSE, $noWrap = TRUE, $fullWidth = FALSE, $defaultTabIndex = 1, $dividers2tabs = 2) {
1570 // load the static code, if not already done with the function below
1571 $this->loadJavascriptLib('js/tabmenu.js');
1575 if (is_array($menuItems)) {
1578 $options = array(array());
1581 $id = $this->getDynTabMenuId($identString);
1582 $noWrap = $noWrap ?
' nowrap="nowrap"' : '';
1584 // Traverse menu items
1588 foreach($menuItems as $index => $def) {
1589 // Need to add one so checking for first index in JavaScript
1590 // is different than if it is not set at all.
1593 // Switch to next tab row if needed
1594 if (!$foldout && ($def['newline'] === TRUE && $titleLenCount > 0)) {
1597 $options[$tabRows] = array();
1601 $onclick = 'this.blur(); DTM_toggle("'.$id.'","'.$index.'"); return false;';
1603 $onclick = 'this.blur(); DTM_activate("'.$id.'","'.$index.'", '.($toggle<0?
1:0).'); return false;';
1606 $isEmpty = !(strcmp(trim($def['content']),'') ||
strcmp(trim($def['icon']),''));
1608 // "Removes" empty tabs
1609 if ($isEmpty && $dividers2tabs == 1) {
1613 $mouseOverOut = ' onmouseover="DTM_mouseOver(this);" onmouseout="DTM_mouseOut(this);"';
1614 $requiredIcon = '<img name="' . $id . '-' . $index . '-REQ" src="' . $GLOBALS['BACK_PATH'] . 'gfx/clear.gif" class="t3-TCEforms-reqTabImg" alt="" />';
1618 $options[$tabRows][] = '
1619 <td class="'.($isEmpty ?
'disabled' : 'tab').'" id="'.$id.'-'.$index.'-MENU"'.$noWrap.$mouseOverOut.'>'.
1620 ($isEmpty ?
'' : '<a href="#" onclick="'.htmlspecialchars($onclick).'"'.($def['linkTitle'] ?
' title="'.htmlspecialchars($def['linkTitle']).'"':'').'>').
1622 ($def['label'] ?
htmlspecialchars($def['label']) : ' ').
1624 $this->icons($def['stateIcon'],'margin-left: 10px;').
1625 ($isEmpty ?
'' : '</a>').
1627 $titleLenCount+
= strlen($def['label']);
1629 // Create DIV layer for content:
1631 <div class="'.($isEmpty ?
'disabled' : 'tab').'" id="'.$id.'-'.$index.'-MENU"'.$mouseOverOut.'>'.
1632 ($isEmpty ?
'' : '<a href="#" onclick="'.htmlspecialchars($onclick).'"'.($def['linkTitle'] ?
' title="'.htmlspecialchars($def['linkTitle']).'"':'').'>').
1634 ($def['label'] ?
htmlspecialchars($def['label']) : ' ').
1636 ($isEmpty ?
'' : '</a>').
1640 // Create DIV layer for content:
1642 <div style="display: none;" id="'.$id.'-'.$index.'-DIV" class="c-tablayer">'.
1643 ($def['description'] ?
'<p class="c-descr">'.nl2br(htmlspecialchars($def['description'])).'</p>' : '').
1646 // Create initialization string:
1648 DTM_array["'.$id.'"]['.$c.'] = "'.$id.'-'.$index.'";
1650 // If not empty and we have the toggle option on, check if the tab needs to be expanded
1651 if ($toggle == 1 && !$isEmpty) {
1653 if (top.DTM_currentTabs["'.$id.'-'.$index.'"]) { DTM_toggle("'.$id.'","'.$index.'",1); }
1661 if (count($options)) {
1663 // Tab menu is compiled:
1666 for($a=0;$a<=$tabRows;$a++
) {
1670 <table cellpadding="0" cellspacing="0" border="0"'.($fullWidth ?
' width="100%"' : '').' class="typo3-dyntabmenu">
1672 '.implode('',$options[$a]).'
1676 $content.= '<div class="typo3-dyntabmenu-tabs">'.$tabContent.'</div>';
1679 // Div layers are added:
1681 <!-- Div layers for tab menu: -->
1682 <div class="typo3-dyntabmenu-divs'.($foldout?
'-foldout':'').'">
1683 '.implode('',$divs).'</div>';
1685 // Java Script section added:
1687 <!-- Initialization JavaScript for the menu -->
1688 <script type="text/javascript">
1689 DTM_array["'.$id.'"] = new Array();
1690 '.implode('',$JSinit).'
1691 '.($toggle<=0 ?
'DTM_activate("'.$id.'", top.DTM_currentTabs["'.$id.'"]?top.DTM_currentTabs["'.$id.'"]:'.intval($defaultTabIndex).', 0);' : '').'
1702 * Creates the id for dynTabMenus.
1704 * @param string $identString Identification string. This should be unique for every instance of a dynamic menu!
1705 * @return string The id with a short MD5 of $identString and prefixed "DTM-", like "DTM-2e8791854a"
1707 function getDynTabMenuId($identString) {
1708 $id = 'DTM-'.t3lib_div
::shortMD5($identString);
1713 * Creates the version selector for the page id inputted.
1714 * Requires the core version management extension, "version" to be loaded.
1716 * @param integer $id Page id to create selector for.
1717 * @param boolean $noAction If set, there will be no button for swapping page.
1720 public function getVersionSelector($id, $noAction = FALSE) {
1721 if (t3lib_extMgm
::isLoaded('version')) {
1722 $versionGuiObj = t3lib_div
::makeInstance('tx_version_gui');
1723 return $versionGuiObj->getVersionSelector($id, $noAction);
1728 * Function to load a HTML template file with markers.
1729 * When calling from own extension, use syntax getHtmlTemplate('EXT:extkey/template.html')
1731 * @param string $filename tmpl name, usually in the typo3/template/ directory
1732 * @return string HTML of template
1734 function getHtmlTemplate($filename) {
1735 // setting the name of the original HTML template
1736 $this->moduleTemplateFilename
= $filename;
1738 if ($GLOBALS['TBE_STYLES']['htmlTemplates'][$filename]) {
1739 $filename = $GLOBALS['TBE_STYLES']['htmlTemplates'][$filename];
1741 if (t3lib_div
::isFirstPartOfStr($filename, 'EXT:')) {
1742 $filename = t3lib_div
::getFileAbsFileName($filename, TRUE, TRUE);
1743 } elseif (!t3lib_div
::isAbsPath($filename)) {
1744 $filename = t3lib_div
::resolveBackPath($this->backPath
. $filename);
1745 } elseif (!t3lib_div
::isAllowedAbsPath($filename)) {
1749 if ($filename !== '') {
1750 $htmlTemplate = t3lib_div
::getUrl($filename);
1752 return $htmlTemplate;
1756 * Define the template for the module
1758 * @param string $filename filename
1761 public function setModuleTemplate($filename) {
1762 // Load Prototype lib for IE event
1763 $this->pageRenderer
->loadPrototype();
1764 $this->loadJavascriptLib('js/iecompatibility.js');
1765 $this->moduleTemplate
= $this->getHtmlTemplate($filename);
1769 * Put together the various elements for the module <body> using a static HTML
1772 * @param array $pageRecord Record of the current page, used for page path and info
1773 * @param array $buttons HTML for all buttons
1774 * @param array $markerArray HTML for all other markers
1775 * @param array $subpartArray HTML for the subparts
1776 * @return string Composite HTML
1778 public function moduleBody($pageRecord = array(), $buttons = array(), $markerArray = array(), $subpartArray = array()) {
1779 // Get the HTML template for the module
1780 $moduleBody = t3lib_parsehtml
::getSubpart($this->moduleTemplate
, '###FULLDOC###');
1782 $this->inDocStylesArray
[] = 'html { overflow: hidden; }';
1784 // Get the page path for the docheader
1785 $markerArray['PAGEPATH'] = $this->getPagePath($pageRecord);
1786 // Get the page info for the docheader
1787 $markerArray['PAGEINFO'] = $this->getPageInfo($pageRecord);
1788 // Get all the buttons for the docheader
1789 $docHeaderButtons = $this->getDocHeaderButtons($buttons);
1790 // Merge docheader buttons with the marker array
1791 $markerArray = array_merge($markerArray, $docHeaderButtons);
1792 // replacing subparts
1793 foreach ($subpartArray as $marker => $content) {
1794 $moduleBody = t3lib_parsehtml
::substituteSubpart($moduleBody, $marker, $content);
1797 // adding flash messages
1798 if ($this->showFlashMessages
) {
1799 $flashMessages = t3lib_FlashMessageQueue
::renderFlashMessages();
1800 if (!empty($flashMessages)) {
1801 $markerArray['FLASHMESSAGES'] = '<div id="typo3-messages">' . $flashMessages . '</div>';
1803 // if there is no dedicated marker for the messages present
1804 // then force them to appear before the content
1805 if (strpos($moduleBody, '###FLASHMESSAGES###') === FALSE) {
1806 $moduleBody = str_replace(
1808 '###FLASHMESSAGES######CONTENT###',
1815 // Hook for adding more markers/content to the page, like the version selector
1816 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['moduleBodyPostProcess'])) {
1818 'moduleTemplateFilename' => &$this->moduleTemplateFilename
,
1819 'moduleTemplate' => &$this->moduleTemplate
,
1820 'moduleBody' => &$moduleBody,
1821 'markers' => &$markerArray,
1822 'parentObject' => &$this
1824 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['moduleBodyPostProcess'] as $funcRef) {
1825 t3lib_div
::callUserFunction($funcRef, $params, $this);
1829 // replacing all markers with the finished markers and return the HTML content
1830 return t3lib_parsehtml
::substituteMarkerArray($moduleBody, $markerArray, '###|###');
1835 * Fill the button lists with the defined HTML
1837 * @param array $buttons HTML for all buttons
1838 * @return array Containing HTML for both buttonlists
1840 protected function getDocHeaderButtons($buttons) {
1842 // Fill buttons for left and right float
1843 $floats = array('left', 'right');
1844 foreach($floats as $key) {
1845 // Get the template for each float
1846 $buttonTemplate = t3lib_parsehtml
::getSubpart($this->moduleTemplate
, '###BUTTON_GROUPS_' . strtoupper($key) . '###');
1847 // Fill the button markers in this float
1848 $buttonTemplate = t3lib_parsehtml
::substituteMarkerArray($buttonTemplate, $buttons, '###|###', TRUE);
1849 // getting the wrap for each group
1850 $buttonWrap = t3lib_parsehtml
::getSubpart($this->moduleTemplate
, '###BUTTON_GROUP_WRAP###');
1851 // looping through the groups (max 6) and remove the empty groups
1852 for ($groupNumber = 1; $groupNumber < 6; $groupNumber++
) {
1853 $buttonMarker = '###BUTTON_GROUP' . $groupNumber . '###';
1854 $buttonGroup = t3lib_parsehtml
::getSubpart($buttonTemplate, $buttonMarker);
1855 if (trim($buttonGroup)) {
1857 $buttonGroup = t3lib_parsehtml
::substituteMarker($buttonWrap, '###BUTTONS###', $buttonGroup);
1859 $buttonTemplate = t3lib_parsehtml
::substituteSubpart($buttonTemplate, $buttonMarker, trim($buttonGroup));
1862 // replace the marker with the template and remove all line breaks (for IE compat)
1863 $markers['BUTTONLIST_' . strtoupper($key)] = str_replace(LF
, '', $buttonTemplate);
1866 // Hook for manipulating docHeaderButtons
1867 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['docHeaderButtonsHook'])) {
1869 'buttons' => $buttons,
1870 'markers' => &$markers,
1873 foreach($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['docHeaderButtonsHook'] as $funcRef) {
1874 t3lib_div
::callUserFunction($funcRef, $params, $this);
1882 * Generate the page path for docheader
1884 * @param array $pageRecord Current page
1885 * @return string Page path
1887 protected function getPagePath($pageRecord) {
1888 // Is this a real page
1889 if ($pageRecord['uid']) {
1890 $title = substr($pageRecord['_thePathFull'], 0, -1);
1891 // remove current page title
1892 $pos = strrpos($title, '/');
1893 if ($pos !== FALSE) {
1894 $title = substr($title, 0, $pos) . '/';
1900 // Setting the path of the page
1901 $pagePath = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.path', 1) . ': <span class="typo3-docheader-pagePath">';
1903 // crop the title to title limit (or 50, if not defined)
1904 $cropLength = (empty($GLOBALS['BE_USER']->uc
['titleLen'])) ?
50 : $GLOBALS['BE_USER']->uc
['titleLen'];
1905 $croppedTitle = t3lib_div
::fixed_lgd_cs($title, -$cropLength);
1906 if ($croppedTitle !== $title) {
1907 $pagePath .= '<abbr title="' . htmlspecialchars($title) . '">' . htmlspecialchars($croppedTitle) . '</abbr>';
1909 $pagePath .= htmlspecialchars($title);
1911 $pagePath .= '</span>';
1916 * Setting page icon with clickmenu + uid for docheader
1918 * @param array $pageRecord Current page
1919 * @return string Page info
1921 protected function getPageInfo($pageRecord) {
1923 // Add icon with clickmenu, etc:
1924 if ($pageRecord['uid']) { // If there IS a real page
1925 $alttext = t3lib_BEfunc
::getRecordIconAltText($pageRecord, 'pages');
1926 $iconImg = t3lib_iconWorks
::getSpriteIconForRecord('pages', $pageRecord, array('title'=>$alttext));
1928 $theIcon = $GLOBALS['SOBE']->doc
->wrapClickMenuOnIcon($iconImg, 'pages', $pageRecord['uid']);
1929 $uid = $pageRecord['uid'];
1930 $title = t3lib_BEfunc
::getRecordTitle('pages', $pageRecord);
1931 } else { // On root-level of page tree
1933 $iconImg = t3lib_iconWorks
::getSpriteIcon('apps-pagetree-root', array('title' => htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'])));
1934 if ($GLOBALS['BE_USER']->user
['admin']) {
1935 $theIcon = $GLOBALS['SOBE']->doc
->wrapClickMenuOnIcon($iconImg, 'pages', 0);
1937 $theIcon = $iconImg;
1940 $title = $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'];
1943 // Setting icon with clickmenu + uid
1944 $pageInfo = $theIcon . '<strong>' . htmlspecialchars($title) . ' [' . $uid . ']</strong>';
1949 * Makes a collapseable section. See reports module for an example
1951 * @param string $title
1952 * @param string $html
1954 * @param string $saveStatePointer
1957 public function collapseableSection($title, $html, $id, $saveStatePointer = '') {
1958 $hasSave = $saveStatePointer ?
TRUE : FALSE;
1959 $collapsedStyle = $collapsedClass = '';
1962 /** @var $settings extDirect_DataProvider_BackendUserSettings */
1963 $settings = t3lib_div
::makeInstance('extDirect_DataProvider_BackendUserSettings');
1964 $value = $settings->get($saveStatePointer . '.' . $id);
1966 $collapsedStyle = ' style="display: none"';
1967 $collapsedClass = ' collapsed';
1969 $collapsedStyle = '';
1970 $collapsedClass = ' expanded';
1974 $this->pageRenderer
->loadExtJS();
1975 $this->pageRenderer
->addExtOnReadyCode('
1976 Ext.select("h2.section-header").each(function(element){
1977 element.on("click", function(event, tag) {
1980 div = el.next("div"),
1981 saveKey = el.getAttribute("rel");
1982 if (el.hasClass("collapsed")) {
1983 el.removeClass("collapsed").addClass("expanded");
1989 el.removeClass("expanded").addClass("collapsed");
2000 top.TYPO3.BackendUserSettings.ExtDirect.set(saveKey + "." + tag.id, state, function(response) {});
2007 <h2 id="' . $id . '" class="section-header' . $collapsedClass . '" rel="' . $saveStatePointer . '"> ' . $title . '</h2>
2008 <div' . $collapsedStyle . '>' . $html . '</div>
2017 // ******************************
2018 // Extension classes of the template class.
2019 // These are meant to provide backend screens with different widths.
2020 // They still do because of the different class-prefixes used for the <div>-sections
2021 // but obviously the final width is determined by the stylesheet used.
2022 // ******************************
2025 * Extension class for "template" - used for backend pages which are wide. Typically modules taking up all the space in the "content" frame of the backend
2026 * The class were more significant in the past than today.
2029 class bigDoc
extends template
{
2030 var $divClass = 'typo3-bigDoc';
2034 * Extension class for "template" - used for backend pages without the "document" background image
2035 * The class were more significant in the past than today.
2038 class noDoc
extends template
{
2039 var $divClass = 'typo3-noDoc';
2043 * Extension class for "template" - used for backend pages which were narrow (like the Web>List modules list frame. Or the "Show details" pop up box)
2044 * The class were more significant in the past than today.
2047 class smallDoc
extends template
{
2048 var $divClass = 'typo3-smallDoc';
2052 * Extension class for "template" - used for backend pages which were medium wide. Typically submodules to Web or File which were presented in the list-frame when the content frame were divided into a navigation and list frame.
2053 * The class were more significant in the past than today. But probably you should use this one for most modules you make.
2056 class mediumDoc
extends template
{
2057 var $divClass = 'typo3-mediumDoc';
2062 * Extension class for "template" - used in the context of frontend editing.
2064 class frontendDoc
extends template
{
2067 * Gets instance of PageRenderer
2069 * @return t3lib_PageRenderer
2071 public function getPageRenderer() {
2072 if (!isset($this->pageRenderer
)) {
2073 $this->pageRenderer
= $GLOBALS['TSFE']->getPageRenderer();
2075 return $this->pageRenderer
;
2079 * Used in the frontend context to insert header data via TSFE->additionalHeaderData.
2080 * Mimics header inclusion from template->startPage().
2084 public function insertHeaderData() {
2086 $this->backPath
= $GLOBALS['TSFE']->backPath
= TYPO3_mainDir
;
2087 $this->pageRenderer
->setBackPath($this->backPath
);
2090 // add applied JS/CSS to $GLOBALS['TSFE']
2091 if ($this->JScode
) {
2092 $this->pageRenderer
->addHeaderData($this->JScode
);
2094 if (count($this->JScodeArray
)) {
2095 foreach ($this->JScodeArray
as $name => $code) {
2096 $this->pageRenderer
->addJsInlineCode($name, $code, FALSE);
2102 // ******************************
2103 // The template is loaded
2104 // ******************************
2105 $GLOBALS['TBE_TEMPLATE'] = t3lib_div
::makeInstance('template');