2 /***************************************************************
5 * (c) 1999-2004 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');
55 require_once(PATH_t3lib
.'class.t3lib_loadmodules.php');
58 if (t3lib_extMgm
::isLoaded('taskcenter') && t3lib_extMgm
::isLoaded('taskcenter_recent')) {
59 require_once(t3lib_extMgm
::extPath('taskcenter').'task/class.mod_user_task.php');
60 require_once(t3lib_extMgm
::extPath('taskcenter_recent').'class.tx_taskcenterrecent.php');
66 * Script Class for the "No-doc" display; This shows most recently edited records.
68 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
72 class SC_alt_doc_nodoc
{
75 var $doc; // Document template object
76 var $content; // Content accumulation
77 var $loadModules; // Object for backend modules.
80 * Constructor, initialize.
87 // Start the template object:
88 $this->doc
= t3lib_div
::makeInstance('mediumDoc');
89 $this->doc
->docType
= 'xhtml_trans';
90 $this->doc
->bodyTagMargins
['x']=5;
91 $this->doc
->bodyTagMargins
['y']=5;
92 $this->doc
->backPath
= $BACK_PATH;
96 $this->content
.=$this->doc
->startPage('TYPO3 Edit Document');
98 // Loads the backend modules available for the logged in user.
99 $this->loadModules
= t3lib_div
::makeInstance('t3lib_loadModules');
100 $this->loadModules
->load($GLOBALS['TBE_MODULES']);
104 * Rendering the content.
109 global $BE_USER,$LANG,$BACK_PATH;
113 // Add a message, telling that no documents were open...
114 $msg[]='<p>'.$LANG->getLL('noDocuments_msg',1).'</p><br />';
116 // If another page module was specified, replace the default Page module with the new one
117 $newPageModule = trim($BE_USER->getTSConfigVal('options.overridePageModule'));
118 $pageModule = t3lib_BEfunc
::isModuleSetInTBE_MODULES($newPageModule) ?
$newPageModule : 'web_layout';
120 // Perform some acccess checks:
121 $a_wl = $BE_USER->check('modules','web_list');
122 $a_wp = t3lib_extMgm
::isLoaded('cms') && $BE_USER->check('modules',$pageModule);
125 // Finding module images: PAGE
126 $imgFile = $LANG->moduleLabels
['tabs_images']['web_layout_tab'];
127 $imgInfo = @getimagesize
($imgFile);
128 $img_web_layout = is_array($imgInfo) ?
'<img src="../'.substr($imgFile,strlen(PATH_site
)).'" '.$image[3].' alt="" />' : '';
130 // Finding module images: LIST
131 $imgFile = $LANG->moduleLabels
['tabs_images']['web_list_tab'];
132 $imgInfo = @getimagesize
($imgFile);
133 $img_web_list = is_array($imgInfo) ?
'<img src="../'.substr($imgFile,strlen(PATH_site
)).'" '.$image[3].' alt="" />' : '';
136 // If either the Web>List OR Web>Page module are active, show the little message with links to those modules:
137 if ($a_wl ||
$a_wp) {
139 if ($a_wp) { // Web>Page:
140 $msg_2[]='<strong><a href="#" onclick="top.goToModule(\''.$pageModule.'\'); return false;">'.$LANG->getLL('noDocuments_pagemodule',1).$img_web_layout.'</a></strong>';
141 if ($a_wl) $msg_2[]=$LANG->getLL('noDocuments_OR');
143 if ($a_wl) { // Web>List
144 $msg_2[]='<strong><a href="#" onclick="top.goToModule(\'web_list\'); return false;">'.$LANG->getLL('noDocuments_listmodule',1).$img_web_list.'</a></strong>';
146 $msg[]='<p>'.sprintf($LANG->getLL('noDocuments_msg2',1),implode(' ',$msg_2)).'</p><br />';
149 // If the task center is loaded and the module of recent documents is, then display the list of the most recently edited documents:
150 if ($BE_USER->check('modules','user_task') && t3lib_extMgm
::isLoaded('taskcenter_recent')) {
151 $modObj = t3lib_div
::makeInstance('tx_taskcenterrecent');
152 $modObj->backPath
= $BACK_PATH;
153 $modObj->BE_USER
= $BE_USER;
154 $modObj->perms_clause
= $BE_USER->getPagePermsClause(1);
156 $msg[]='<p>'.$LANG->getLL('noDocuments_msg3',1).'</p><br />'.$modObj->_renderRecent();
159 // Adding the content:
160 $this->content
.=$this->doc
->section($LANG->getLL('noDocuments'),implode(' ',$msg),0,1);
164 * Printing the content.
168 function printContent() {
169 echo $this->content
.$this->doc
->endPage();
173 // Include extension?
174 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/alt_doc_nodoc.php']) {
175 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/alt_doc_nodoc.php']);
189 $SOBE = t3lib_div
::makeInstance('SC_alt_doc_nodoc');
192 $SOBE->printContent();