2 /***************************************************************
5 * (c) 1999-2010 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 * Appears in the bottom frame of the backend frameset.
30 * Provides links to registered shortcuts
31 * If the 'cms' extension is loaded you will also have a field for entering page id/alias which will be found/edited
34 * Revised for TYPO3 3.6 2/2003 by Kasper Skaarhoj
35 * XHTML compliant output
37 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
40 * [CLASS/FUNCTION INDEX of SCRIPT]
44 * 86: class SC_alt_shortcut
45 * 125: function preinit()
46 * 152: function preprocess()
47 * 234: function init()
48 * 275: function main()
49 * 452: function editLoadedFunc()
50 * 532: function editPageIdFunc()
51 * 586: function printContent()
53 * SECTION: WORKSPACE FUNCTIONS:
54 * 611: function workspaceSelector()
56 * SECTION: OTHER FUNCTIONS:
57 * 686: function mIconFilename($Ifilename,$backPath)
58 * 702: function getIcon($modName)
59 * 726: function itemLabel($inlabel,$modName,$M_modName='')
60 * 748: function getLinkedPageId($url)
63 * (This index is automatically created/updated by the extension "extdeveval")
69 require('template.php');
70 $LANG->includeLLFile('EXT:lang/locallang_misc.xml');
78 * Script Class for the shortcut frame, bottom frame of the backend frameset
80 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
84 class SC_alt_shortcut
{
86 // Internal, static: GPvar
98 * Object for backend modules, load modules-object
100 * @var t3lib_loadModules
103 protected $isAjaxCall;
106 * Document template object
112 // Internal, dynamic:
113 var $content; // Accumulation of output HTML (string)
114 var $lines; // Accumulation of table cells (array)
116 var $editLoaded; // Flag for defining whether we are editing
117 var $editError; // Can contain edit error message
118 var $editPath; // Set to the record path of the record being edited.
119 var $editSC_rec; // Holds the shortcut record when editing
120 var $theEditRec; // Page record to be edited
121 var $editPage; // Page alias or id to be edited
122 var $selOpt; // Select options.
123 var $searchFor; // Text to search for...
124 var $groupLabels=array(); // Labels of all groups. If value is 1, the system will try to find a label in the locallang array.
126 var $alternativeTableUid = array(); // Array with key 0/1 being table/uid of record to edit. Internally set.
131 * Pre-initialization - setting input variables for storing shortcuts etc.
139 $this->isAjaxCall
= (boolean
) t3lib_div
::_GP('ajax');
140 $this->modName
= t3lib_div
::_GP('modName');
141 $this->M_modName
= t3lib_div
::_GP('motherModName');
142 $this->URL
= t3lib_div
::_GP('URL');
143 $this->editSC
= t3lib_div
::_GP('editShortcut');
145 $this->deleteCategory
= t3lib_div
::_GP('deleteCategory');
146 $this->editPage
= t3lib_div
::_GP('editPage');
147 $this->changeWorkspace
= t3lib_div
::_GP('changeWorkspace');
148 $this->changeWorkspacePreview
= t3lib_div
::_GP('changeWorkspacePreview');
149 $this->editName
= t3lib_div
::_GP('editName');
150 $this->editGroup
= t3lib_div
::_GP('editGroup');
151 $this->whichItem
= t3lib_div
::_GP('whichItem');
153 // Creating modules object
154 $this->loadModules
= t3lib_div
::makeInstance('t3lib_loadModules');
155 $this->loadModules
->load($TBE_MODULES);
159 * Adding shortcuts, editing shortcuts etc.
163 function preprocess() {
165 $description = ''; // Default description
166 $url = urldecode($this->URL
);
168 // Lookup the title of this page and use it as default description
169 $page_id = $this->getLinkedPageId($url);
170 if (t3lib_div
::testInt($page_id)) {
171 if (preg_match('/\&edit\[(.*)\]\[(.*)\]=edit/',$url,$matches)) {
173 $description = ''; // TODO: Set something useful
176 $pageRow = t3lib_BEfunc
::getRecord('pages',$page_id);
177 if (count($pageRow)) {
178 // If $page_id is an integer, set the description to the title of that page
179 $description = $pageRow['title'];
183 if (preg_match('/\/$/', $page_id)) {
184 // If $page_id is a string and ends with a slash, assume it is a fileadmin reference and set the description to the basename of that path
185 $description = basename($page_id);
190 // Adding a shortcut being set from another frame
191 if ($this->modName
&& $this->URL
) {
192 $fields_values = array(
193 'userid' => $BE_USER->user
['uid'],
194 'module_name' => $this->modName
.'|'.$this->M_modName
,
196 'description' => $description,
197 'sorting' => $GLOBALS['EXEC_TIME'],
199 $GLOBALS['TYPO3_DB']->exec_INSERTquery('sys_be_shortcuts', $fields_values);
202 // Selection-clause for users - so users can deleted only their own shortcuts (except admins)
203 $addUSERWhere = (!$BE_USER->isAdmin()?
' AND userid='.intval($BE_USER->user
['uid']):'');
205 // Deleting shortcuts:
206 if (strcmp($this->deleteCategory
,'')) {
207 if (t3lib_div
::testInt($this->deleteCategory
)) {
208 $GLOBALS['TYPO3_DB']->exec_DELETEquery('sys_be_shortcuts', 'sc_group='.intval($this->deleteCategory
).$addUSERWhere);
212 // If other changes in post-vars:
213 if (is_array($_POST)) {
215 if (isset($_POST['_savedok_x']) ||
isset($_POST['_saveclosedok_x'])) {
216 $fields_values = array(
217 'description' => $this->editName
,
218 'sc_group' => intval($this->editGroup
)
220 if ($fields_values['sc_group']<0 && !$BE_USER->isAdmin()) {
221 $fields_values['sc_group']=0;
224 $GLOBALS['TYPO3_DB']->exec_UPDATEquery('sys_be_shortcuts', 'uid='.intval($this->whichItem
).$addUSERWhere, $fields_values);
226 // If save without close, keep the session going...
227 if (isset($_POST['_savedok_x'])) {
228 $this->editSC
=$this->whichItem
;
230 // Deleting a single shortcut ?
231 if (isset($_POST['_deletedok_x'])) {
232 $GLOBALS['TYPO3_DB']->exec_DELETEquery('sys_be_shortcuts', 'uid='.intval($this->whichItem
).$addUSERWhere);
234 if (!$this->editSC
) $this->editSC
=-1; // Just to have the checkbox set...
241 * Initialize (page output)
248 $this->doc
= t3lib_div
::makeInstance('template');
249 $this->doc
->backPath
= $BACK_PATH;
250 $this->doc
->form
='<form action="alt_shortcut.php" name="shForm" method="post">';
251 $this->doc
->divClass
='typo3-shortcut';
252 $this->doc
->JScode
.=$this->doc
->wrapScriptTags('
253 function jump(url,modName,mainModName) { //
254 // Clear information about which entry in nav. tree that might have been highlighted.
255 top.fsMod.navFrameHighlightedID = new Array();
256 if (top.content && top.content.nav_frame && top.content.nav_frame.refresh_nav) {
257 top.content.nav_frame.refresh_nav();
260 top.nextLoadModuleUrl = url;
261 top.goToModule(modName);
263 function editSh(uid) { //
264 window.location.href="alt_shortcut.php?editShortcut="+uid;
266 function submitEditPage(id) { //
267 window.location.href="alt_shortcut.php?editPage="+top.rawurlencodeAndRemoveSiteUrl(id);
269 function changeWorkspace(workspaceId) { //
270 window.location.href="alt_shortcut.php?changeWorkspace="+top.rawurlencodeAndRemoveSiteUrl(workspaceId);
272 function changeWorkspacePreview(newstate) { //
273 window.location.href="alt_shortcut.php?changeWorkspacePreview="+newstate;
275 function refreshShortcuts() {
276 window.location.href = document.URL;
280 $this->content
.=$this->doc
->startPage('Shortcut frame');
284 * Main function, creating content in the frame
289 global $BE_USER,$LANG,$TCA;
291 // By default, 5 groups are set
292 $this->groupLabels
=array(
300 $shortCutGroups = $BE_USER->getTSConfig('options.shortcutGroups');
301 if (is_array($shortCutGroups['properties']) && count($shortCutGroups['properties'])) {
302 foreach ($shortCutGroups['properties'] as $k=>$v) {
303 if (strcmp('',$v) && strcmp('0',$v)) {
304 $this->groupLabels
[$k] = (string)$v;
305 } elseif ($BE_USER->isAdmin()) {
306 unset($this->groupLabels
[$k]);
311 // List of global groups that will be loaded. All global groups have negative IDs.
312 $globalGroups = -100; // Group -100 is kind of superglobal and can't be changed.
313 if (count($this->groupLabels
)) {
314 $globalGroups .= ','.implode(',',array_keys($this->groupLabels
));
315 $globalGroups = str_replace(',',',-',$globalGroups); // Ugly hack to make the UIDs negative - is there any better solution?
318 // Fetching shortcuts to display for this user:
319 $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', 'sys_be_shortcuts', '((userid='.$BE_USER->user
['uid'].' AND sc_group>=0) OR sc_group IN ('.$globalGroups.'))', '', 'sc_group,sorting');
322 $this->lines
=array();
323 $this->linesPre
=array();
324 $this->editSC_rec
='';
325 $this->selOpt
=array();
328 // Traverse shortcuts
329 while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
330 $mParts = explode('|',$row['module_name']);
331 $row['module_name']=$mParts[0];
332 $row['M_module_name']=$mParts[1];
333 $mParts = explode('_',$row['M_module_name']?
$row['M_module_name']:$row['module_name']);
334 $qParts = parse_url($row['url']);
336 if (!$BE_USER->isAdmin()) {
337 // Check for module access
338 if (!isset($LANG->moduleLabels
['tabs_images'][implode('_',$mParts).'_tab'])) { // Nice hack to check if the user has access to this module - otherwise the translation label would not have been loaded :-)
342 $page_id = $this->getLinkedPageId($row['url']);
343 if (t3lib_div
::testInt($page_id)) {
344 // Check for webmount access
345 if (!$GLOBALS['BE_USER']->isInWebMount($page_id)) continue;
347 // Check for record access
348 $pageRow = t3lib_BEfunc
::getRecord('pages',$page_id);
349 if (!$GLOBALS['BE_USER']->doesUserHaveAccess($pageRow,$perms=1)) continue;
353 if ($this->editSC
&& $row['uid']==$this->editSC
) {
354 $this->editSC_rec
=$row;
357 $sc_group = $row['sc_group'];
358 if ($sc_group && strcmp($formerGr,$sc_group)) {
359 if ($sc_group!=-100) {
360 if ($this->groupLabels
[abs($sc_group)] && strcmp('1',$this->groupLabels
[abs($sc_group)])) {
361 $label = $this->groupLabels
[abs($sc_group)];
363 $label = $LANG->getLL('shortcut_group_'.abs($sc_group),1);
364 if (!$label) $label = $LANG->getLL('shortcut_group',1).' '.abs($sc_group); // Fallback label
368 $onC = 'if (confirm('.$GLOBALS['LANG']->JScharCode($LANG->getLL('shortcut_delAllInCat')).')){window.location.href=\'alt_shortcut.php?deleteCategory='.$sc_group.'\';}return false;';
369 $this->linesPre
[]='<td> </td><td class="bgColor5"><a href="#" onclick="'.htmlspecialchars($onC).'" title="'.$LANG->getLL('shortcut_delAllInCat',1).'">'.$label.'</a></td>';
371 $label = $LANG->getLL('shortcut_global',1).': '.($label ?
$label : abs($sc_group)); // Fallback label
372 $this->lines
[]='<td> </td><td class="bgColor5">'.$label.'</td>';
378 $bgColorClass = $row['uid']==$this->editSC ?
'bgColor5' : ($row['sc_group']<0 ?
'bgColor6' : 'bgColor4');
380 if ($row['description']&&($row['uid']!=$this->editSC
)) {
381 $label = $row['description'];
383 $label = t3lib_div
::fixed_lgd_cs(rawurldecode($qParts['query']),150);
385 $titleA = $this->itemLabel($label,$row['module_name'],$row['M_module_name']);
387 $editSH = ($row['sc_group']>=0 ||
$BE_USER->isAdmin()) ?
'editSh('.intval($row['uid']).');' : "alert('".$LANG->getLL('shortcut_onlyAdmin')."')";
388 $jumpSC = 'jump(unescape(\''.rawurlencode($row['url']).'\'),\''.implode('_',$mParts).'\',\''.$mParts[0].'\');';
389 $onC = 'if (document.shForm.editShortcut_check && document.shForm.editShortcut_check.checked){'.$editSH.'}else{'.$jumpSC.'}return false;';
390 if ($sc_group>=0) { // user defined groups show up first
391 $this->linesPre
[]='<td class="'.$bgColorClass.'"><a href="#" onclick="'.htmlspecialchars($onC).'"><img src="'.$this->getIcon($row['module_name']).'" title="'.htmlspecialchars($titleA).'" alt="" /></a></td>';
393 $this->lines
[]='<td class="'.$bgColorClass.'"><a href="#" onclick="'.htmlspecialchars($onC).'"><img src="'.$this->getIcon($row['module_name']).'" title="'.htmlspecialchars($titleA).'" alt="" /></a></td>';
395 if (trim($row['description'])) {
396 $kkey = strtolower(substr($row['description'],0,20)).'_'.$row['uid'];
397 $this->selOpt
[$kkey]='<option value="'.htmlspecialchars($jumpSC).'">'.htmlspecialchars(t3lib_div
::fixed_lgd_cs($row['description'],50)).'</option>';
399 $formerGr=$row['sc_group'];
401 ksort($this->selOpt
);
402 array_unshift($this->selOpt
,'<option>['.$LANG->getLL('shortcut_selSC',1).']</option>');
404 $this->editLoadedFunc();
405 $this->editPageIdFunc();
407 if (!$this->editLoaded
&& t3lib_extMgm
::isLoaded('cms')) {
408 $editIdCode = '<td nowrap="nowrap">'.$LANG->getLL('shortcut_editID',1).': <input type="text" value="'.($this->editError?
htmlspecialchars($this->editPage
):'').'" name="editPage"'.$this->doc
->formWidth(15).' onchange="submitEditPage(this.value);" />'.
409 ($this->editError?
' <strong><span class="typo3-red">'.htmlspecialchars($this->editError
).'</span></strong>':'').
410 (is_array($this->theEditRec
)?
' <strong>'.$LANG->getLL('shortcut_loadEdit',1).' \''.t3lib_BEfunc
::getRecordTitle('pages',$this->theEditRec
,TRUE).'\'</strong> ('.htmlspecialchars($this->editPath
).')':'').
411 ($this->searchFor?
' '.$LANG->getLL('shortcut_searchFor',1).' <strong>\''.htmlspecialchars($this->searchFor
).'\'</strong>':'').
413 } else $editIdCode = '';
416 $editIdCode.= '<td> '.t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'shortcuts', $GLOBALS['BACK_PATH'],'',TRUE).'</td>';
421 <table border="0" cellpadding="0" cellspacing="0" width="99%">
425 Shortcut Display Table:
427 <table border="0" cellpadding="0" cellspacing="2" id="typo3-shortcuts">
430 if ($GLOBALS['BE_USER']->getTSConfigVal('options.enableShortcuts')) {
431 $this->content
.= implode('
434 $this->content
.= $editIdCode . '
439 if ($this->hasWorkspaceAccess()) {
440 $this->content
.= $this->workspaceSelector() .
441 t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'workspaceSelector', $GLOBALS['BACK_PATH'],'',TRUE);
450 if ($this->theEditRec
['uid']) {
451 $this->content
.=$this->doc
->wrapScriptTags('top.loadEditId('.$this->theEditRec
['uid'].');');
455 // Load alternative table/uid into editing form.
456 if (count($this->alternativeTableUid
)==2 && isset($TCA[$this->alternativeTableUid
[0]]) && t3lib_div
::testInt($this->alternativeTableUid
[1])) {
457 $JSaction = t3lib_BEfunc
::editOnClick('&edit['.$this->alternativeTableUid
[0].']['.$this->alternativeTableUid
[1].']=edit','','dummy.php');
458 $this->content
.=$this->doc
->wrapScriptTags('function editArbitraryElement() { top.content.'.$JSaction.'; } editArbitraryElement();');
461 // Load search for something.
462 if ($this->searchFor
) {
463 $firstMP = intval($GLOBALS['WEBMOUNTS'][0]);
464 $this->content
.= $this->doc
->wrapScriptTags('jump(unescape("' .
465 rawurlencode(t3lib_extMgm
::extRelPath('list') . 'mod1/db_list.php?id=' . $firstMP . '&search_field=' . rawurlencode($this->searchFor
) . '&search_levels=4') .
466 '"), "web_list", "web");');
471 * Creates lines for the editing form.
475 function editLoadedFunc() {
476 global $BE_USER,$LANG;
479 if (is_array($this->editSC_rec
) && ($this->editSC_rec
['sc_group']>=0 ||
$BE_USER->isAdmin())) { // sc_group numbers below 0 requires admin to edit those. sc_group numbers above zero must always be owned by the user himself.
483 $opt[]='<option value="0"></option>';
485 foreach($this->groupLabels
as $k=>$v) {
486 if ($v && strcmp('1',$v)) {
489 $label = $LANG->getLL('shortcut_group_'.$k,1);
490 if (!$label) $label = $LANG->getLL('shortcut_group',1).' '.$k; // Fallback label
492 $opt[]='<option value="'.$k.'"'.(!strcmp($this->editSC_rec
['sc_group'],$k)?
' selected="selected"':'').'>'.$label.'</option>';
495 if ($BE_USER->isAdmin()) {
496 foreach($this->groupLabels
as $k=>$v) {
497 if ($v && strcmp('1',$v)) {
500 $label = $LANG->getLL('shortcut_group_'.$k,1);
501 if (!$label) $label = $LANG->getLL('shortcut_group',1).' '.$k; // Fallback label
503 $label = $LANG->getLL('shortcut_global',1).': '.$label; // Add a prefix for global groups
505 $opt[]='<option value="-'.$k.'"'.(!strcmp($this->editSC_rec
['sc_group'],'-'.$k)?
' selected="selected"':'').'>'.$label.'</option>';
507 $opt[]='<option value="-100"'.(!strcmp($this->editSC_rec
['sc_group'],'-100')?
' selected="selected"':'').'>'.$LANG->getLL('shortcut_global',1).': '.$LANG->getLL('shortcut_all',1).'</option>';
510 // border="0" hspace="2" width="21" height="16" - not XHTML compliant in <input type="image" ...>
514 Shortcut Editing Form:
516 <table border="0" cellpadding="0" cellspacing="0" id="typo3-shortcuts-editing">
518 <td> </td>
519 <td><input type="image" class="c-inputButton" name="_savedok"'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/savedok.gif','').' title="'.$LANG->getLL('shortcut_save',1).'" /></td>
520 <td><input type="image" class="c-inputButton" name="_saveclosedok"'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/saveandclosedok.gif','').' title="'.$LANG->getLL('shortcut_saveClose',1).'" /></td>
521 <td><input type="image" class="c-inputButton" name="_closedok"'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/closedok.gif','').' title="'.$LANG->getLL('shortcut_close',1).'" /></td>
522 <td><input type="image" class="c-inputButton" name="_deletedok"'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/deletedok.gif','').' title="'.$LANG->getLL('shortcut_delete',1).'" /></td>
523 <td><input name="editName" type="text" value="'.htmlspecialchars($this->editSC_rec
['description']).'"'.$this->doc
->formWidth(15).' /></td>
524 <td><select name="editGroup">'.implode('',$opt).'</select></td>
527 <input type="hidden" name="whichItem" value="'.$this->editSC_rec
['uid'].'" />
530 } else $manageForm='';
532 if (!$this->editLoaded
&& count($this->selOpt
)>1) {
533 $this->lines
[]='<td> </td>';
534 $this->lines
[]='<td><select name="_selSC" onchange="eval(this.options[this.selectedIndex].value);this.selectedIndex=0;">'.implode('',$this->selOpt
).'</select></td>';
537 // $this->linesPre contains elements with sc_group>=0
538 $this->lines
= array_merge($this->linesPre
,$this->lines
);
540 if (count($this->lines
)) {
541 if (!$BE_USER->getTSConfigVal('options.mayNotCreateEditShortcuts')) {
542 $this->lines
=array_merge(array('<td><input type="checkbox" id="editShortcut_check" name="editShortcut_check" value="1"'.($this->editSC?
' checked="checked"':'').' /> <label for="editShortcut_check">'.$LANG->getLL('shortcut_edit',1).'</label> </td>'),$this->lines
);
543 $this->lines
[]='<td>'.$manageForm.'</td>';
545 $this->lines
[]='<td><img src="clear.gif" width="10" height="1" alt="" /></td>';
550 * If "editPage" value is sent to script and it points to an accessible page, the internal var $this->theEditRec is set to the page record which should be loaded.
555 function editPageIdFunc() {
556 global $BE_USER,$LANG;
558 if (!t3lib_extMgm
::isLoaded('cms')) return;
561 $this->editPage
= trim($LANG->csConvObj
->conv_case($LANG->charSet
,$this->editPage
,'toLower'));
562 $this->editError
= '';
563 $this->theEditRec
= '';
564 $this->searchFor
= '';
565 if ($this->editPage
) {
567 // First, test alternative value consisting of [table]:[uid] and if not found, proceed with traditional page ID resolve:
568 $this->alternativeTableUid
= explode(':',$this->editPage
);
569 if (!(count($this->alternativeTableUid
)==2 && $BE_USER->isAdmin())) { // We restrict it to admins only just because I'm not really sure if alt_doc.php properly checks permissions of passed records for editing. If alt_doc.php does that, then we can remove this.
571 $where = ' AND ('.$BE_USER->getPagePermsClause(2).' OR '.$BE_USER->getPagePermsClause(16).')';
572 if (t3lib_div
::testInt($this->editPage
)) {
573 $this->theEditRec
= t3lib_BEfunc
::getRecordWSOL('pages',$this->editPage
,'*',$where);
575 $records = t3lib_BEfunc
::getRecordsByField('pages','alias',$this->editPage
,$where);
576 if (is_array($records)) {
578 $this->theEditRec
= current($records);
579 t3lib_BEfunc
::workspaceOL('pages',$this->theEditRec
);
582 if (!is_array($this->theEditRec
)) {
583 unset($this->theEditRec
);
584 $this->searchFor
= $this->editPage
;
585 } elseif (!$BE_USER->isInWebMount($this->theEditRec
['uid'])) {
586 unset($this->theEditRec
);
587 $this->editError
=$LANG->getLL('shortcut_notEditable');
591 $perms_clause = $BE_USER->getPagePermsClause(1);
592 $this->editPath
= t3lib_BEfunc
::getRecordPath($this->theEditRec
['pid'], $perms_clause, 30);
594 if(!$BE_USER->getTSConfigVal('options.shortcut_onEditId_dontSetPageTree')) {
596 // Expanding page tree:
597 t3lib_BEfunc
::openPageTree($this->theEditRec
['pid'],!$BE_USER->getTSConfigVal('options.shortcut_onEditId_keepExistingExpanded'));
605 * Outputting the accumulated content to screen
609 function printContent() {
612 $this->content
.= $this->doc
->endPage();
613 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
615 if($this->editPage
&& $this->isAjaxCall
) {
619 if($this->theEditRec
['uid']) {
620 $data['type'] = 'page';
621 $data['editRecord'] = $this->theEditRec
['uid'];
624 // edit alternative table/uid
625 if(count($this->alternativeTableUid
) == 2
626 && isset($GLOBALS['TCA'][$this->alternativeTableUid
[0]])
627 && t3lib_div
::testInt($this->alternativeTableUid
[1])) {
628 $data['type'] = 'alternative';
629 $data['alternativeTable'] = $this->alternativeTableUid
[0];
630 $data['alternativeUid'] = $this->alternativeTableUid
[1];
633 // search for something else
634 if($this->searchFor
) {
635 $data['type'] = 'search';
636 $data['firstMountPoint'] = intval($GLOBALS['WEBMOUNTS'][0]);
637 $data['searchFor'] = $this->searchFor
;
640 $content = json_encode($data);
642 header('Content-type: application/json; charset=utf-8');
643 header('X-JSON: '.$content);
645 $content = $this->content
;
659 /***************************
661 * WORKSPACE FUNCTIONS:
663 ***************************/
666 * Create selector for workspaces and change workspace if command is given to do that.
668 * @return string HTML
670 function workspaceSelector() {
671 global $TYPO3_DB,$BE_USER,$LANG;
673 // Changing workspace and if so, reloading entire backend:
674 if (strlen($this->changeWorkspace
)) {
675 $BE_USER->setWorkspace($this->changeWorkspace
);
676 return $this->doc
->wrapScriptTags('top.location.href="'. t3lib_BEfunc
::getBackendScript() . '";');
678 // Changing workspace and if so, reloading entire backend:
679 if (strlen($this->changeWorkspacePreview
)) {
680 $BE_USER->setWorkspacePreview($this->changeWorkspacePreview
);
683 // Create options array:
685 if ($BE_USER->checkWorkspace(array('uid' => 0))) {
686 $options[0] = '['.$LANG->getLL('shortcut_onlineWS').']';
688 if ($BE_USER->checkWorkspace(array('uid' => -1))) {
689 $options[-1] = '['.$LANG->getLL('shortcut_offlineWS').']';
692 // Add custom workspaces (selecting all, filtering by BE_USER check):
693 $workspaces = $TYPO3_DB->exec_SELECTgetRows('uid,title,adminusers,members,reviewers','sys_workspace','pid=0'.t3lib_BEfunc
::deleteClause('sys_workspace'),'','title');
694 if (count($workspaces)) {
695 foreach ($workspaces as $rec) {
696 if ($BE_USER->checkWorkspace($rec)) {
697 $options[$rec['uid']] = $rec['uid'].': '.$rec['title'];
702 // Build selector box:
703 if (count($options)) {
704 foreach($options as $value => $label) {
705 $selected = ((int)$BE_USER->workspace
===$value ?
' selected="selected"' : '');
706 $options[$value] = '<option value="'.htmlspecialchars($value).'"'.$selected.'>'.htmlspecialchars($label).'</option>';
709 $options[] = '<option value="-99">'.$LANG->getLL('shortcut_noWSfound',1).'</option>';
714 if ($BE_USER->workspace
!==0) {
715 $selector.= '<label for="workspacePreview">Frontend Preview:</label> <input type="checkbox" name="workspacePreview" id="workspacePreview" onclick="changeWorkspacePreview('.($BE_USER->user
['workspace_preview'] ?
0 : 1).')"; '.($BE_USER->user
['workspace_preview'] ?
'checked="checked"' : '').'/> ';
718 $selector.= '<a href="mod/user/ws/index.php" target="content">'.
719 t3lib_iconWorks
::getSpriteIconForRecord('sys_workspace', array()).
721 if (count($options) > 1) {
722 $selector .= '<select name="_workspaceSelector" onchange="changeWorkspace(this.options[this.selectedIndex].value);">'.implode('',$options).'</select>';
734 /***************************
738 ***************************/
741 * Returns relative filename for icon.
743 * @param string Absolute filename of the icon
744 * @param string Backpath string to prepend the icon after made relative
747 function mIconFilename($Ifilename,$backPath) {
748 // Change icon of fileadmin references - otherwise it doesn't differ with Web->List
749 $Ifilename = str_replace ('mod/file/list/list.gif', 'mod/file/file.gif', $Ifilename);
751 if (t3lib_div
::isAbsPath($Ifilename)) {
752 $Ifilename = '../'.substr($Ifilename,strlen(PATH_site
));
754 return $backPath.$Ifilename;
758 * Returns icon for shortcut display
760 * @param string Backend module name
761 * @return string Icon file name
763 function getIcon($modName) {
765 if ($LANG->moduleLabels
['tabs_images'][$modName.'_tab']) {
766 $icon = $this->mIconFilename($LANG->moduleLabels
['tabs_images'][$modName.'_tab'],'');
767 } elseif ($modName=='xMOD_alt_doc.php') {
768 $icon = 'gfx/edit2.gif';
769 } elseif ($modName=='xMOD_file_edit.php') {
770 $icon = 'gfx/edit_file.gif';
771 } elseif ($modName=='xMOD_wizard_rte.php') {
772 $icon = 'gfx/edit_rtewiz.gif';
774 $icon = 'gfx/dummy_module.gif';
780 * Returns title-label for icon
782 * @param string In-label
783 * @param string Backend module name (key)
784 * @param string Backend module label (user defined?)
785 * @return string Label for the shortcut item
787 function itemLabel($inlabel,$modName,$M_modName='') {
789 if (substr($modName,0,5)=='xMOD_') {
790 $label=substr($modName,5);
792 $split = explode('_',$modName);
793 $label = $LANG->moduleLabels
['tabs'][$split[0].'_tab'];
794 if (count($split)>1) {
795 $label.='>'.$LANG->moduleLabels
['tabs'][$modName.'_tab'];
798 if ($M_modName) $label.=' ('.$M_modName.')';
799 $label.=': '.$inlabel;
804 * Return the ID of the page in the URL if found.
806 * @param string The URL of the current shortcut link
807 * @return string If a page ID was found, it is returned. Otherwise: 0
809 function getLinkedPageId($url) {
810 return preg_replace('/.*[\?&]id=([^&]+).*/', '$1', $url);
814 * Checks if user has access to Workspace module.
816 * @return boolean Returns true if user has access to workspace module.
818 function hasWorkspaceAccess() {
820 include('mod/user/ws/conf.php');
821 return $GLOBALS['BE_USER']->modAccess(array('name' => 'user', 'access' => 'user,group'), false) && $GLOBALS['BE_USER']->modAccess($MCONF, false);
826 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/alt_shortcut.php']) {
827 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/alt_shortcut.php']);
833 $SOBE = t3lib_div
::makeInstance('SC_alt_shortcut');
838 $SOBE->printContent();