2 /***************************************************************
5 * (c) 1999-2005 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):
238 var $doc; // Backend template object.
239 var $perms_clause; // Pages-select clause
241 // Internal, dynamic:
242 var $content; // Content for module accumulated here.
246 * Constructor, initializing internal variables.
251 global $BE_USER,$LANG,$BACK_PATH;
254 // Setting internal vars:
255 $this->sys_language
= intval(t3lib_div
::_GP('sys_language'));
256 $this->page_id
=intval(t3lib_div
::_GP('uid'));
257 $this->table
=t3lib_div
::_GP('table');
258 $this->R_URI
=t3lib_div
::_GP('returnUrl');
259 $this->input_moveUid
= t3lib_div
::_GP('moveUid');
260 $this->moveUid
= $this->input_moveUid ?
$this->input_moveUid
: $this->page_id
;
261 $this->makeCopy
= t3lib_div
::_GP('makeCopy');
263 // Select-pages where clause for read-access:
264 $this->perms_clause
= $BE_USER->getPagePermsClause(1);
266 // Starting the document template object:
267 $this->doc
= t3lib_div
::makeInstance('mediumDoc');
268 $this->doc
->docType
= 'xhtml_trans';
269 $this->doc
->backPath
= $BACK_PATH;
270 $this->doc
->JScode
='';
272 // Starting document content (header):
274 $this->content
.=$this->doc
->startPage($LANG->getLL('movingElement'));
275 $this->content
.=$this->doc
->header($LANG->getLL('movingElement'));
276 $this->content
.=$this->doc
->spacer(5);
280 * Creating the module output.
285 global $LANG,$BACK_PATH,$BE_USER;
287 if ($this->page_id
) {
289 // Get record for element:
290 $elRow = t3lib_BEfunc
::getRecordWSOL($this->table
,$this->moveUid
);
292 // Headerline: Icon, record title:
293 $hline = t3lib_iconWorks
::getIconImage($this->table
,$elRow,$BACK_PATH,' id="c-recIcon" title="'.htmlspecialchars(t3lib_BEfunc
::getRecordIconAltText($elRow,$this->table
)).'"');
294 $hline.= t3lib_BEfunc
::getRecordTitle($this->table
,$elRow,1);
296 // Make-copy checkbox (clicking this will reload the page with the GET var makeCopy set differently):
297 $onClick = 'window.location.href=\''.t3lib_div
::linkThisScript(array('makeCopy'=>!$this->makeCopy
)).'\';';
298 $hline.= '<br /><input type="hidden" name="makeCopy" value="0" /><input type="checkbox" name="makeCopy" value="1"'.($this->makeCopy?
' checked="checked"':'').' onclick="'.htmlspecialchars($onClick).'" />'.
299 $LANG->getLL('makeCopy',1);
301 // Add the header-content to the module content:
302 $this->content
.=$this->doc
->section($LANG->getLL('moveElement').':',$hline,0,1);
303 $this->content
.=$this->doc
->spacer(20);
305 // Reset variable to pick up the module content in:
308 // IF the table is "pages":
309 if ((string)$this->table
=='pages') {
310 // Get page record (if accessible):
311 $pageinfo = t3lib_BEfunc
::readPageAccess($this->page_id
,$this->perms_clause
);
312 if (is_array($pageinfo) && $BE_USER->isInWebMount($pageinfo['pid'],$this->perms_clause
)) {
314 // Initialize the position map:
315 $posMap = t3lib_div
::makeInstance('ext_posMap_pages');
316 $posMap->moveOrCopy
= $this->makeCopy?
'copy':'move';
318 // Print a "go-up" link IF there is a real parent page (and if the user has read-access to that page).
319 if ($pageinfo['pid']) {
320 $pidPageInfo = t3lib_BEfunc
::readPageAccess($pageinfo['pid'],$this->perms_clause
);
321 if (is_array($pidPageInfo)) {
322 if ($BE_USER->isInWebMount($pidPageInfo['pid'],$this->perms_clause
)) {
323 $code.= '<a href="'.htmlspecialchars(t3lib_div
::linkThisScript(array('uid'=>intval($pageinfo['pid']),'moveUid'=>$this->moveUid
))).'">'.
324 '<img'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/i/pages_up.gif','width="18" height="16"').' alt="" />'.
325 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,1).
328 $code.= t3lib_iconWorks
::getIconImage('pages',$pidPageInfo,$BACK_PATH,'').
329 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,1).
335 // Create the position tree:
336 $code.= $posMap->positionTree($this->page_id
,$pageinfo,$this->perms_clause
,$this->R_URI
);
338 // CSH for move-pages:
339 $code.= t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'move_el_pages', $GLOBALS['BACK_PATH'],'<br/>|');
343 // IF the table is "tt_content":
344 if ((string)$this->table
=='tt_content') {
346 // First, get the record:
347 $tt_content_rec = t3lib_BEfunc
::getRecord('tt_content',$this->moveUid
);
350 if (!$this->input_moveUid
) $this->page_id
= $tt_content_rec['pid'];
352 // Checking if the parent page is readable:
353 $pageinfo = t3lib_BEfunc
::readPageAccess($this->page_id
,$this->perms_clause
);
354 if (is_array($pageinfo) && $BE_USER->isInWebMount($pageinfo['pid'],$this->perms_clause
)) {
356 // Initialize the position map:
357 $posMap = t3lib_div
::makeInstance('ext_posMap_tt_content');
358 $posMap->moveOrCopy
= $this->makeCopy?
'copy':'move';
359 $posMap->cur_sys_language
= $this->sys_language
;
361 // Headerline for the parent page: Icon, record title:
362 $hline = t3lib_iconWorks
::getIconImage('pages',$pageinfo,$BACK_PATH,' title="'.htmlspecialchars(t3lib_BEfunc
::getRecordIconAltText($pageinfo,'pages')).'"');
363 $hline.= t3lib_BEfunc
::getRecordTitle('pages',$pageinfo,1);
365 // Load SHARED page-TSconfig settings and retrieve column list from there, if applicable:
366 $modTSconfig_SHARED = t3lib_BEfunc
::getModTSconfig($this->page_id
,'mod.SHARED'); // SHARED page-TSconfig settings.
367 $colPosList = strcmp(trim($modTSconfig_SHARED['properties']['colPos_list']),'') ?
trim($modTSconfig_SHARED['properties']['colPos_list']) : '1,0,2,3';
368 $colPosList = implode(',',array_unique(t3lib_div
::intExplode(',',$colPosList))); // Removing duplicates, if any
370 // Adding parent page-header and the content element columns from position-map:
371 $code=$hline.'<br />';
372 $code.=$posMap->printContentElementColumns($this->page_id
,$this->moveUid
,$colPosList,1,$this->R_URI
);
374 // Print a "go-up" link IF there is a real parent page (and if the user has read-access to that page).
377 if ($pageinfo['pid']) {
378 $pidPageInfo = t3lib_BEfunc
::readPageAccess($pageinfo['pid'],$this->perms_clause
);
379 if (is_array($pidPageInfo)) {
380 if ($BE_USER->isInWebMount($pidPageInfo['pid'],$this->perms_clause
)) {
381 $code.= '<a href="'.htmlspecialchars(t3lib_div
::linkThisScript(array('uid'=>intval($pageinfo['pid']),'moveUid'=>$this->moveUid
))).'">'.
382 '<img'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/i/pages_up.gif','width="18" height="16"').' alt="" />'.
383 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,1).
386 $code.= t3lib_iconWorks
::getIconImage('pages',$pidPageInfo,$BACK_PATH,'').
387 t3lib_BEfunc
::getRecordTitle('pages',$pidPageInfo,1).
393 // Create the position tree (for pages):
394 $code.= $posMap->positionTree($this->page_id
,$pageinfo,$this->perms_clause
,$this->R_URI
);
396 // CSH for move-content-elements:
397 $code.= t3lib_BEfunc
::cshItem('xMOD_csh_corebe', 'move_el_cs', $GLOBALS['BACK_PATH'],'<br/>|');
401 // IF a return-url is given, print the go-back link:
403 $code.='<br /><br /><a href="'.htmlspecialchars($this->R_URI
).'" class="typo3-goBack"><img'.t3lib_iconWorks
::skinImg($this->doc
->backPath
,'gfx/goback.gif','width="14" height="14"').' alt="" />'.$LANG->getLL('goBack',1).'</a>';
406 // Add the $code content as a new section to the module:
407 $this->content
.=$this->doc
->section($LANG->getLL('selectPositionOfElement').':',$code,0,1);
412 * Print out the accumulated content:
416 function printContent() {
417 $this->content
.= $this->doc
->endPage();
418 $this->content
= $this->doc
->insertStylesAndJS($this->content
);
423 // Include extension?
424 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/move_el.php']) {
425 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/move_el.php']);
440 $SOBE = t3lib_div
::makeInstance('SC_move_el');
443 $SOBE->printContent();