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 ***************************************************************/
28 * Move element wizard:
29 * Moving pages or content elements (tt_content) around in the system via a page tree navigation.
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 * 96: class localPageTree extends t3lib_pageTree
43 * 105: function wrapIcon($icon,$row)
46 * 127: class ext_posMap_pages extends t3lib_positionMap
47 * 137: function onClickEvent($pid,$newPagePID)
48 * 148: function linkPageTitle($str,$rec)
49 * 161: function boldTitle($t_code,$dat,$id)
52 * 184: class ext_posMap_tt_content extends t3lib_positionMap
53 * 194: function linkPageTitle($str,$rec)
54 * 206: function wrapRecordTitle($str,$row)
57 * 227: class SC_move_el
58 * 250: function init()
59 * 284: function main()
60 * 416: function printContent()
63 * (This index is automatically created/updated by the extension "extdeveval")
70 require('template.php');
72 // Include local language labels:
73 $LANG->includeLLFile('EXT:lang/locallang_misc.xml');
76 require_once(PATH_t3lib
.'class.t3lib_page.php');
77 require_once(PATH_t3lib
.'class.t3lib_positionmap.php');
78 require_once(PATH_t3lib
.'class.t3lib_pagetree.php');
90 * Local extension of the page tree class
92 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
96 class localPageTree
extends t3lib_pageTree
{
99 * Inserting uid-information in title-text for an icon
101 * @param string Icon image
102 * @param array Item row
103 * @return string Wrapping icon image.
105 function wrapIcon($icon,$row) {
106 return $this->addTagAttributes($icon,' title="id='.htmlspecialchars($row['uid']).'"');
121 * Extension of position map for pages
123 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
127 class ext_posMap_pages
extends t3lib_positionMap
{
128 var $l_insertNewPageHere = 'movePageToHere';
131 * Creates the onclick event for the insert-icons.
133 * @param integer The pid.
134 * @param integer New page id.
135 * @return string Onclick attribute content
137 function onClickEvent($pid,$newPagePID) {
138 return 'window.location.href=\'tce_db.php?cmd[pages]['.$GLOBALS['SOBE']->moveUid
.']['.$this->moveOrCopy
.']='.$pid.'&redirect='.rawurlencode($this->R_URI
).'&prErr=1&uPT=1&vC='.$GLOBALS['BE_USER']->veriCode().'\';return false;';
142 * Wrapping page title.
144 * @param string Page title.
145 * @param array Page record (?)
146 * @return string Wrapped title.
148 function linkPageTitle($str,$rec) {
149 $url = t3lib_div
::linkThisScript(array('uid'=>intval($rec['uid']),'moveUid'=>$GLOBALS['SOBE']->moveUid
));
150 return '<a href="'.htmlspecialchars($url).'">'.$str.'</a>';
154 * Wrap $t_code in bold IF the $dat uid matches $id
156 * @param string Title string
157 * @param array Infomation array with record array inside.
158 * @param integer The current id.
159 * @return string The title string.
161 function boldTitle($t_code,$dat,$id) {
162 return parent
::boldTitle($t_code,$dat,$GLOBALS['SOBE']->moveUid
);
178 * Extension of position map for content elements
180 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
184 class ext_posMap_tt_content
extends t3lib_positionMap
{
185 var $dontPrintPageInsertIcons = 1;
188 * Wrapping page title.
190 * @param string Page title.
191 * @param array Page record (?)
192 * @return string Wrapped title.
194 function linkPageTitle($str,$rec) {
195 $url = t3lib_div
::linkThisScript(array('uid'=>intval($rec['uid']),'moveUid'=>$GLOBALS['SOBE']->moveUid
));
196 return '<a href="'.htmlspecialchars($url).'">'.$str.'</a>';
200 * Wrapping the title of the record.
202 * @param string The title value.
203 * @param array The record row.
204 * @return string Wrapped title string.
206 function wrapRecordTitle($str,$row) {
207 if ($GLOBALS['SOBE']->moveUid
==$row['uid']) $str = '<b>'.$str.'</b>';
208 return parent
::wrapRecordTitle($str,$row);
221 * Script Class for rendering the move-element wizard display
223 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
229 // Internal, static (eg. from GPvars):
239 * Document template object
244 var $perms_clause; // Pages-select clause
246 // Internal, dynamic:
247 var $content; // Content for module accumulated here.
251 * Constructor, initializing internal variables.
256 global $BE_USER,$LANG,$BACK_PATH;
259 // Setting internal vars:
260 $this->sys_language
= intval(t3lib_div
::_GP('sys_language'));
261 $this->page_id
=intval(t3lib_div
::_GP('uid'));
262 $this->table
=t3lib_div
::_GP('table');
263 $this->R_URI
=t3lib_div
::_GP('returnUrl');
264 $this->input_moveUid
= t3lib_div
::_GP('moveUid');
265 $this->moveUid
= $this->input_moveUid ?
$this->input_moveUid
: $this->page_id
;
266 $this->makeCopy
= t3lib_div
::_GP('makeCopy');
268 // Select-pages where clause for read-access:
269 $this->perms_clause
= $BE_USER->getPagePermsClause(1);
271 // Starting the document template object:
272 $this->doc
= t3lib_div
::makeInstance('template');
273 $this->doc
->backPath
= $BACK_PATH;
274 $this->doc
->setModuleTemplate('templates/move_el.html');
275 $this->doc
->JScode
='';
277 // Starting document content (header):
279 $this->content
.=$this->doc
->header($LANG->getLL('movingElement'));
280 $this->content
.=$this->doc
->spacer(5);
284 * Creating the module output.
289 global $LANG,$BACK_PATH,$BE_USER;
291 if ($this->page_id
) {
293 // Get record for element:
294 $elRow = t3lib_BEfunc
::getRecordWSOL($this->table
,$this->moveUid
);
296 // Headerline: Icon, record title:
297 $hline = t3lib_iconWorks
::getIconImage($this->table
,$elRow,$BACK_PATH,' id="c-recIcon" title="'.htmlspecialchars(t3lib_BEfunc
::getRecordIconAltText($elRow,$this->table
)).'"');
298 $hline.= t3lib_BEfunc
::getRecordTitle($this->table
,$elRow,TRUE);
300 // Make-copy checkbox (clicking this will reload the page with the GET var makeCopy set differently):
301 $onClick = 'window.location.href=\''.t3lib_div
::linkThisScript(array('makeCopy'=>!$this->makeCopy
)).'\';';
302 $hline.= '<br /><input type="hidden" name="makeCopy" value="0" /><input type="checkbox" name="makeCopy" id="makeCopy" value="1"'.($this->makeCopy?
' checked="checked"':'').' onclick="'.htmlspecialchars($onClick).'" /> <label for="makeCopy">'.
303 $LANG->getLL('makeCopy',1).'</label>';
305 // Add the header-content to the module content:
306 $this->content
.=$this->doc
->section($LANG->getLL('moveElement').':',$hline,0,1);
307 $this->content
.=$this->doc
->spacer(20);
309 // Reset variable to pick up the module content in:
312 // IF the table is "pages":
313 if ((string)$this->table
=='pages') {
314 // Get page record (if accessible):
315 $pageinfo = t3lib_BEfunc
::readPageAccess($this->page_id
,$this->perms_clause
);
316 if (is_array($pageinfo) && $BE_USER->isInWebMount($pageinfo['pid'],$this->perms_clause
)) {
318 // Initialize the position map:
319 $posMap = t3lib_div
::makeInstance('ext_posMap_pages');
320 $posMap->moveOrCopy
= $this->makeCopy?
'copy':'move';
322 // Print a "go-up" link IF there is a real parent page (and if the user has read-access to that page).
323 if ($pageinfo['pid']) {
324 $pidPageInfo = t3lib_BEfunc
::readPageAccess($pageinfo['pid'],$this->perms_clause
);
325 if (is_array($pidPageInfo)) {
326 if ($BE_USER->isInWebMount($pidPageInfo['pid'],$this->perms_clause
)) {
327 $code.= '<a href="'.htmlspecialchars(t3lib_div
::linkThisScript(array('uid'=>intval($pageinfo['pid']),'moveUid'=>$this->moveUid
))).'">'.
328 '<img'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/i/pages_up.gif','width="18" height="16"').' alt="" />'.
329 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,TRUE).
332 $code.= t3lib_iconWorks
::getIconImage('pages',$pidPageInfo,$BACK_PATH,'').
333 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,TRUE).
339 // Create the position tree:
340 $code.= $posMap->positionTree($this->page_id
,$pageinfo,$this->perms_clause
,$this->R_URI
);
344 // IF the table is "tt_content":
345 if ((string)$this->table
=='tt_content') {
347 // First, get the record:
348 $tt_content_rec = t3lib_BEfunc
::getRecord('tt_content',$this->moveUid
);
351 if (!$this->input_moveUid
) $this->page_id
= $tt_content_rec['pid'];
353 // Checking if the parent page is readable:
354 $pageinfo = t3lib_BEfunc
::readPageAccess($this->page_id
,$this->perms_clause
);
355 if (is_array($pageinfo) && $BE_USER->isInWebMount($pageinfo['pid'],$this->perms_clause
)) {
357 // Initialize the position map:
358 $posMap = t3lib_div
::makeInstance('ext_posMap_tt_content');
359 $posMap->moveOrCopy
= $this->makeCopy?
'copy':'move';
360 $posMap->cur_sys_language
= $this->sys_language
;
362 // Headerline for the parent page: Icon, record title:
363 $hline = t3lib_iconWorks
::getIconImage('pages',$pageinfo,$BACK_PATH,' title="'.htmlspecialchars(t3lib_BEfunc
::getRecordIconAltText($pageinfo,'pages')).'"');
364 $hline.= t3lib_BEfunc
::getRecordTitle('pages',$pageinfo,TRUE);
366 // Load SHARED page-TSconfig settings and retrieve column list from there, if applicable:
367 $modTSconfig_SHARED = t3lib_BEfunc
::getModTSconfig($this->page_id
,'mod.SHARED'); // SHARED page-TSconfig settings.
368 $colPosList = strcmp(trim($modTSconfig_SHARED['properties']['colPos_list']),'') ?
trim($modTSconfig_SHARED['properties']['colPos_list']) : '1,0,2,3';
369 $colPosList = implode(',',array_unique(t3lib_div
::intExplode(',',$colPosList))); // Removing duplicates, if any
371 // Adding parent page-header and the content element columns from position-map:
372 $code=$hline.'<br />';
373 $code.=$posMap->printContentElementColumns($this->page_id
,$this->moveUid
,$colPosList,1,$this->R_URI
);
375 // Print a "go-up" link IF there is a real parent page (and if the user has read-access to that page).
378 if ($pageinfo['pid']) {
379 $pidPageInfo = t3lib_BEfunc
::readPageAccess($pageinfo['pid'],$this->perms_clause
);
380 if (is_array($pidPageInfo)) {
381 if ($BE_USER->isInWebMount($pidPageInfo['pid'],$this->perms_clause
)) {
382 $code.= '<a href="'.htmlspecialchars(t3lib_div
::linkThisScript(array('uid'=>intval($pageinfo['pid']),'moveUid'=>$this->moveUid
))).'">'.
383 '<img'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/i/pages_up.gif','width="18" height="16"').' alt="" />'.
384 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,TRUE).
387 $code.= t3lib_iconWorks
::getIconImage('pages',$pidPageInfo,$BACK_PATH,'').
388 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,TRUE).
394 // Create the position tree (for pages):
395 $code.= $posMap->positionTree($this->page_id
,$pageinfo,$this->perms_clause
,$this->R_URI
);
399 // Add the $code content as a new section to the module:
400 $this->content
.=$this->doc
->section($LANG->getLL('selectPositionOfElement').':',$code,0,1);
403 // Setting up the buttons and markers for docheader
404 $docHeaderButtons = $this->getButtons();
405 $markers['CSH'] = $docHeaderButtons['csh'];
406 $markers['CONTENT'] = $this->content
;
408 // Build the <body> for the module
409 $this->content
= $this->doc
->startPage($LANG->getLL('movingElement'));
410 $this->content
.= $this->doc
->moduleBody($this->pageinfo
, $docHeaderButtons, $markers);
411 $this->content
.= $this->doc
->endPage();
412 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
416 * Print out the accumulated content:
420 function printContent() {
425 * Create the panel of buttons for submitting the form or otherwise perform operations.
427 * @return array all available buttons as an assoc. array
429 protected function getButtons() {
430 global $LANG, $BACK_PATH;
437 if ($this->page_id
) {
438 if ((string)$this->table
== 'pages') {
440 $buttons['csh'] = t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'move_el_pages', $GLOBALS['BACK_PATH'], '', TRUE);
441 } elseif((string)$this->table
== 'tt_content') {
443 $buttons['csh'] = t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'move_el_cs', $GLOBALS['BACK_PATH'], '', TRUE);
448 $buttons['back'] ='<a href="' . htmlspecialchars($this->R_URI
) . '" class="typo3-goBack"><img' . t3lib_iconWorks
::skinImg($this->doc
->backPath
, 'gfx/goback.gif') . ' alt="" title="' . $LANG->getLL('goBack', 1) .'" /></a>';
457 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/move_el.php']) {
458 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/move_el.php']);
464 $SOBE = t3lib_div
::makeInstance('SC_move_el');
467 $SOBE->printContent();