2 /***************************************************************
5 * (c) 1999-2009 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 ***************************************************************/
29 * This is used by eg. the Doc module if no documents is registered as "open" (a concept which is better known from the "classic backend"...)
32 * Revised for TYPO3 3.6 November/2003 by Kasper Skaarhoj
35 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
38 * [CLASS/FUNCTION INDEX of SCRIPT]
42 * 72: class SC_alt_doc_nodoc
44 * 108: function main()
45 * 168: function printContent()
48 * (This index is automatically created/updated by the extension "extdeveval")
53 require('template.php');
54 $LANG->includeLLFile('EXT:lang/locallang_alt_doc.xml');
57 if (t3lib_extMgm
::isLoaded('taskcenter') && t3lib_extMgm
::isLoaded('taskcenter_recent')) {
58 require_once(t3lib_extMgm
::extPath('taskcenter').'task/class.mod_user_task.php');
59 require_once(t3lib_extMgm
::extPath('taskcenter_recent').'class.tx_taskcenterrecent.php');
65 * Script Class for the "No-doc" display; This shows most recently edited records.
67 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
71 class SC_alt_doc_nodoc
{
74 var $content; // Content accumulation
77 * Document template object
84 * Object for backend modules.
86 * @var t3lib_loadModules
91 * Constructor, initialize.
98 // Start the template object:
99 $this->doc
= t3lib_div
::makeInstance('mediumDoc');
100 $this->doc
->bodyTagMargins
['x']=5;
101 $this->doc
->bodyTagMargins
['y']=5;
102 $this->doc
->backPath
= $BACK_PATH;
106 $this->content
.=$this->doc
->startPage('TYPO3 Edit Document');
108 // Loads the backend modules available for the logged in user.
109 $this->loadModules
= t3lib_div
::makeInstance('t3lib_loadModules');
110 $this->loadModules
->load($GLOBALS['TBE_MODULES']);
114 * Rendering the content.
119 global $BE_USER,$LANG,$BACK_PATH;
123 // Add a message, telling that no documents were open...
124 $msg[]='<p>'.$LANG->getLL('noDocuments_msg',1).'</p><br />';
126 // If another page module was specified, replace the default Page module with the new one
127 $newPageModule = trim($BE_USER->getTSConfigVal('options.overridePageModule'));
128 $pageModule = t3lib_BEfunc
::isModuleSetInTBE_MODULES($newPageModule) ?
$newPageModule : 'web_layout';
130 // Perform some acccess checks:
131 $a_wl = $BE_USER->check('modules','web_list');
132 $a_wp = t3lib_extMgm
::isLoaded('cms') && $BE_USER->check('modules',$pageModule);
135 // Finding module images: PAGE
136 $imgFile = $LANG->moduleLabels
['tabs_images']['web_layout_tab'];
137 $imgInfo = @getimagesize
($imgFile);
138 $img_web_layout = is_array($imgInfo) ?
'<img src="../'.substr($imgFile,strlen(PATH_site
)).'" '.$imgInfo[3].' alt="" />' : '';
140 // Finding module images: LIST
141 $imgFile = $LANG->moduleLabels
['tabs_images']['web_list_tab'];
142 $imgInfo = @getimagesize
($imgFile);
143 $img_web_list = is_array($imgInfo) ?
'<img src="../'.substr($imgFile,strlen(PATH_site
)).'" '.$imgInfo[3].' alt="" />' : '';
146 // If either the Web>List OR Web>Page module are active, show the little message with links to those modules:
147 if ($a_wl ||
$a_wp) {
149 if ($a_wp) { // Web>Page:
150 $msg_2[]='<strong><a href="#" onclick="top.goToModule(\''.$pageModule.'\'); return false;">'.$LANG->getLL('noDocuments_pagemodule',1).$img_web_layout.'</a></strong>';
151 if ($a_wl) $msg_2[]=$LANG->getLL('noDocuments_OR');
153 if ($a_wl) { // Web>List
154 $msg_2[]='<strong><a href="#" onclick="top.goToModule(\'web_list\'); return false;">'.$LANG->getLL('noDocuments_listmodule',1).$img_web_list.'</a></strong>';
156 $msg[]='<p>'.sprintf($LANG->getLL('noDocuments_msg2',1),implode(' ',$msg_2)).'</p><br />';
159 // If the task center is loaded and the module of recent documents is, then display the list of the most recently edited documents:
160 if ($BE_USER->check('modules','user_task') && t3lib_extMgm
::isLoaded('taskcenter_recent')) {
161 $modObj = t3lib_div
::makeInstance('tx_taskcenterrecent');
162 $modObj->backPath
= $BACK_PATH;
163 $modObj->BE_USER
= $BE_USER;
164 $modObj->perms_clause
= $BE_USER->getPagePermsClause(1);
166 $msg[]='<p>'.$LANG->getLL('noDocuments_msg3',1).'</p><br />'.$modObj->_renderRecent();
169 // Adding the content:
170 $this->content
.=$this->doc
->section($LANG->getLL('noDocuments'),implode(' ',$msg),0,1);
174 * Printing the content.
178 function printContent() {
179 $this->content
.= $this->doc
->endPage();
180 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
186 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/alt_doc_nodoc.php']) {
187 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/alt_doc_nodoc.php']);
193 $SOBE = t3lib_div
::makeInstance('SC_alt_doc_nodoc');
196 $SOBE->printContent();