2 /***************************************************************
5 * (c) 1999-2013 Kasper Skårhøj (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 text file 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 * Move element wizard:
30 * Moving pages or content elements (tt_content) around in the system via a page tree navigation.
32 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
34 require __DIR__
. '/init.php';
37 * Local extension of the page tree class
39 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
41 class localPageTree
extends \TYPO3\CMS\Backend\Tree\View\PageTreeView
{
44 * Inserting uid-information in title-text for an icon
46 * @param string $icon Icon image
47 * @param array $row Item row
48 * @return string Wrapping icon image.
49 * @todo Define visibility
51 public function wrapIcon($icon, $row) {
52 return $this->addTagAttributes($icon, ' title="id=' . htmlspecialchars($row['uid']) . '"');
58 * Extension of position map for pages
60 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
62 class ext_posMap_pages
extends \TYPO3\CMS\Backend\Tree\View\PagePositionMap
{
65 * @todo Define visibility
67 public $l_insertNewPageHere = 'movePageToHere';
70 * Creates the onclick event for the insert-icons.
72 * @param integer $pid The pid.
73 * @param integer $newPagePID New page id.
74 * @return string Onclick attribute content
75 * @todo Define visibility
77 public function onClickEvent($pid, $newPagePID) {
78 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() . \TYPO3\CMS\Backend\Utility\BackendUtility
::getUrlToken('tceAction') . '\';return false;';
82 * Wrapping page title.
84 * @param string $str Page title.
85 * @param array $rec Page record (?)
86 * @return string Wrapped title.
87 * @todo Define visibility
89 public function linkPageTitle($str, $rec) {
90 $url = \TYPO3\CMS\Core\Utility\GeneralUtility
::linkThisScript(array('uid' => intval($rec['uid']), 'moveUid' => $GLOBALS['SOBE']->moveUid
));
91 return '<a href="' . htmlspecialchars($url) . '">' . $str . '</a>';
95 * Wrap $t_code in bold IF the $dat uid matches $id
97 * @param string $t_code Title string
98 * @param array $dat Infomation array with record array inside.
99 * @param integer $id The current id.
100 * @return string The title string.
101 * @todo Define visibility
103 public function boldTitle($t_code, $dat, $id) {
104 return parent
::boldTitle($t_code, $dat, $GLOBALS['SOBE']->moveUid
);
110 * Extension of position map for content elements
112 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
114 class ext_posMap_tt_content
extends \TYPO3\CMS\Backend\Tree\View\PagePositionMap
{
117 * @todo Define visibility
119 public $dontPrintPageInsertIcons = 1;
122 * Wrapping page title.
124 * @param string $str Page title.
125 * @param array $rec Page record (?)
126 * @return string Wrapped title.
127 * @todo Define visibility
129 public function linkPageTitle($str, $rec) {
130 $url = \TYPO3\CMS\Core\Utility\GeneralUtility
::linkThisScript(array('uid' => intval($rec['uid']), 'moveUid' => $GLOBALS['SOBE']->moveUid
));
131 return '<a href="' . htmlspecialchars($url) . '">' . $str . '</a>';
135 * Wrapping the title of the record.
137 * @param string $str The title value.
138 * @param array $row The record row.
139 * @return string Wrapped title string.
140 * @todo Define visibility
142 public function wrapRecordTitle($str, $row) {
143 if ($GLOBALS['SOBE']->moveUid
== $row['uid']) {
144 $str = '<strong>' . $str . '</strong>';
146 return parent
::wrapRecordTitle($str, $row);
150 $moveElementController = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance('TYPO3\\CMS\\Backend\\Controller\\ContentElement\\MoveElementController');
151 $moveElementController->main();
152 $moveElementController->printContent();