2 /***************************************************************
5 * (c) 1999-2011 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 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 * Adding Import/Export clickmenu item
30 * Revised for TYPO3 3.6 December/2003 by Kasper Skårhøj
33 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
36 * [CLASS/FUNCTION INDEX of SCRIPT]
40 * 67: class tx_impexp_clickmenu
41 * 79: function main(&$backRef,$menuItems,$table,$uid)
42 * 121: function includeLL()
45 * (This index is automatically created/updated by the extension "extdeveval")
61 * Adding Import/Export clickmenu item
63 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
65 * @subpackage tx_impexp
67 class tx_impexp_clickmenu
{
70 * Processing of clickmenu items
72 * @param object Reference to parent
73 * @param array Menu items array to modify
74 * @param string Table name
75 * @param integer Uid of the record
76 * @return array Menu item array, returned after modification
77 * @todo Skinning for icons...
79 function main(&$backRef,$menuItems,$table,$uid) {
83 if (($backRef->cmLevel
&& t3lib_div
::_GP('subname')=='moreoptions') ||
($table==='pages' && $uid==0)) { // Show import/export on second level menu OR root level.
85 $LL = $this->includeLL();
87 $modUrl = $backRef->backPath
.t3lib_extMgm
::extRelPath('impexp').'app/index.php';
88 $url = $modUrl . '?tx_impexp[action]=export&id=' . ($table == 'pages' ?
$uid : $backRef->rec
['pid']);
89 if ($table=='pages') {
90 $url.='&tx_impexp[pagetree][id]='.$uid;
91 $url.='&tx_impexp[pagetree][levels]=0';
92 $url.='&tx_impexp[pagetree][tables][]=_ALL';
94 $url.='&tx_impexp[record][]='.rawurlencode($table.':'.$uid);
95 $url.='&tx_impexp[external_ref][tables][]=_ALL';
97 $localItems[] = $backRef->linkItem(
98 $GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLLL('export',$LL)),
99 $backRef->excludeIcon(t3lib_iconWorks
::getSpriteIcon('actions-document-export-t3d')),
100 $backRef->urlRefForCM($url),
101 1 // Disables the item in the top-bar
104 if ($table=='pages') {
105 $url = $modUrl . '?id='. $uid . '&table=' . $table . '&tx_impexp[action]=import';
106 $localItems[] = $backRef->linkItem(
107 $GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLLL('import',$LL)),
108 $backRef->excludeIcon(t3lib_iconWorks
::getSpriteIcon('actions-document-import-t3d')),
109 $backRef->urlRefForCM($url),
110 1 // Disables the item in the top-bar
114 return array_merge($menuItems,$localItems);
118 * Include local lang file and return $LOCAL_LANG array loaded.
120 * @return array Local lang array
122 function includeLL() {
125 return $LANG->includeLLFile('EXT:impexp/app/locallang.php',FALSE
);
129 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['ext/impexp/class.tx_impexp_clickmenu.php'])) {
130 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['ext/impexp/class.tx_impexp_clickmenu.php']);