/***************************************************************
* Copyright notice
*
-* (c) 1999-2008 Kasper Skaarhoj (kasperYYYY@typo3.com)
+* (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* If you want to integrate a context menu in your scripts, please see template::getContextMenuCode()
*
* $Id$
- * Revised for TYPO3 3.6 2/2003 by Kasper Skaarhoj
+ * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj
* XHTML compliant
*
- * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
*/
/**
* [CLASS/FUNCTION INDEX of SCRIPT]
require ('init.php');
require ('template.php');
-require_once (PATH_t3lib.'class.t3lib_clipboard.php');
-require_once(PATH_t3lib.'class.t3lib_ajax.php');
$LANG->includeLLFile('EXT:lang/locallang_misc.xml');
/**
* Class for generating the click menu
*
- * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
* @package TYPO3
* @subpackage core
* @internal
if ($table=='pages' && in_array($uid,$GLOBALS['BE_USER']->returnWebmounts())) { // DB mount
$DBmount = TRUE;
}
+ // used to hide cut,copy icons for l10n-records
+ $l10nOverlay = false;
+ // should only be performed for overlay-records within the same table
+ if (t3lib_BEfunc::isTableLocalizable($table) && !isset($TCA[$table]['ctrl']['transOrigPointerTable'])) {
+ $l10nOverlay = intval($this->rec[$TCA[$table]['ctrl']['transOrigPointerField']]) != 0;
+ }
// If record found (or root), go ahead and fill the $menuItems array which will contain data for the elements to render.
if (is_array($this->rec) || $root) {
$menuItems['spacer1']='spacer';
// Copy:
- if(!in_array('copy',$this->disabledItems) && !$root && !$DBmount) $menuItems['copy']=$this->DB_copycut($table,$uid,'copy');
+ if (!in_array('copy', $this->disabledItems) && !$root && !$DBmount && !$l10nOverlay) $menuItems['copy'] = $this->DB_copycut($table, $uid, 'copy');
// Cut:
- if(!in_array('cut',$this->disabledItems) && !$root && !$DBmount) $menuItems['cut']=$this->DB_copycut($table,$uid,'cut');
+ if (!in_array('cut', $this->disabledItems) && !$root && !$DBmount && !$l10nOverlay) $menuItems['cut'] = $this->DB_copycut($table, $uid, 'cut');
// Paste:
$elFromAllTables = count($this->clipObj->elFromTable(''));
// Processing by external functions?
$menuItems = $this->externalProcessingOfDBMenuItems($menuItems);
+ if (!is_array($this->rec)) {
+ $this->rec = array();
+ }
+
// Return the printed elements:
return $this->printItems($menuItems,
$root?
- '<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/i/_icon_website.gif','width="18" height="16"').' class="absmiddle" alt="" />'.htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']):
- t3lib_iconWorks::getIconImage($table,$this->rec,$this->PH_backPath,' class="absmiddle" title="'.htmlspecialchars(t3lib_BEfunc::getRecordIconAltText($this->rec,$table)).'"').t3lib_BEfunc::getRecordTitle($table,$this->rec,TRUE)
+ t3lib_iconWorks::getSpriteIcon('apps-pagetree-root') . htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']) :
+ t3lib_iconWorks::getSpriteIconForRecord($table, $this->rec, array('title'=> htmlspecialchars(t3lib_BEfunc::getRecordIconAltText($this->rec, $table)))) . t3lib_BEfunc::getRecordTitle($table, $this->rec, TRUE)
);
}
if (!is_array($menuItems)) $menuItems=array();
return $this->printItems($menuItems,
$root?
- '<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/i/_icon_website.gif','width="18" height="16"').' class="absmiddle" alt="" />'.htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']):
- t3lib_iconWorks::getIconImage($table,$this->rec,$this->PH_backPath,' class="absmiddle" title="'.htmlspecialchars(t3lib_BEfunc::getRecordIconAltText($this->rec,$table)).'"').t3lib_BEfunc::getRecordTitle($table,$this->rec,TRUE)
+ t3lib_iconWorks::getSpriteIcon('apps-pagetree-root') . htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']):
+ t3lib_iconWorks::getSpriteIconForRecord($table, $this->rec,
+ array('title' => htmlspecialchars(t3lib_BEfunc::getRecordIconAltText($this->rec, $table)))) .
+ t3lib_BEfunc::getRecordTitle($table, $this->rec, TRUE)
);
}
*/
function processingByExtClassArray($menuItems,$table,$uid) {
if (is_array($this->extClassArray)) {
- reset($this->extClassArray);
- while(list(,$conf)=each($this->extClassArray)) {
+ foreach ($this->extClassArray as $conf) {
$obj=t3lib_div::makeInstance($conf['name']);
$menuItems = $obj->main($this,$menuItems,$table,$uid);
}
* @return string JavaScript for an onClick event.
*/
function urlRefForCM($url,$retUrl='',$hideCM=1,$overrideLoc='') {
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
+ $loc = 'top.content.list_frame';
$editOnClick= ($overrideLoc ? 'var docRef='.$overrideLoc : 'var docRef=(top.content.list_frame)?top.content.list_frame:'.$loc).'; docRef.location.href=top.TS.PATH_typo3+\''.$url.'\''.
- ($retUrl ? "+'&" . $retUrl . "='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation('docRef.document') . ')' :'') . ';' .
- ($hideCM?'return hideCM();':'');
+ ($retUrl ? "+'&" . $retUrl . "='+top.rawurlencode(" . $this->frameLocation('docRef.document') . ')' :'') . ';' .
+ ($hideCM ? 'return hideCM();' : '');
return $editOnClick;
}
return $this->linkItem(
$this->label($type),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/clip_'.$type.($isSel==$type?'_h':'').'.gif','width="12" height="12"').' alt="" />'),
- "top.loadTopMenu('".$this->clipObj->selUrlDB($table,$uid,($type=='copy'?1:0),($isSel==$type),$addParam)."');return false;"
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-edit-' . $type . ($isSel === $type ? '-release' : ''))),
+ "top.loadTopMenu('" . $this->clipObj->selUrlDB($table, $uid, ($type == 'copy' ? 1: 0), ($isSel==$type), $addParam) . "');return false;"
);
}
*/
function DB_paste($table,$uid,$type,$elInfo) {
$editOnClick = '';
- $loc = 'top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
+ $loc = 'top.content.list_frame';
if($GLOBALS['BE_USER']->jsConfirmation(2)) {
$conf = $loc.' && confirm('.$GLOBALS['LANG']->JScharCode(sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:mess.'.($elInfo[2]=='copy'?'copy':'move').'_'.$type),$elInfo[0],$elInfo[1])).')';
} else {
$conf = $loc;
}
- $editOnClick = 'if(' . $conf . '){' . $loc . '.location.href=top.TS.PATH_typo3+\'' . $this->clipObj->pasteUrl($table, $uid, 0) . '&redirect=\'+top.rawurlencodeAndRemoveSiteUrl(' . $this->frameLocation($loc . '.document') . '); hideCM();}';
+ $editOnClick = 'if(' . $conf . '){' . $loc . '.location.href=top.TS.PATH_typo3+\'' . $this->clipObj->pasteUrl($table, $uid, 0) . '&redirect=\'+top.rawurlencode(' . $this->frameLocation($loc . '.document') . '); hideCM();}';
return $this->linkItem(
$this->label('paste'.$type),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/clip_paste'.$type.'.gif','width="12" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-paste-' . $type)),
$editOnClick.'return false;'
);
}
function DB_info($table,$uid) {
return $this->linkItem(
$this->label('info'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/zoom2.gif','width="12" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-info')),
"top.launchView('".$table."', '".$uid."'); return hideCM();"
);
}
$url = 'show_rechis.php?element='.rawurlencode($table.':'.$uid);
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_history')),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/history2.gif','width="13" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-history-open')),
$this->urlRefForCM($url,'returnUrl'),
0
);
* @internal
*/
function DB_perms($table,$uid,$rec) {
- $url = 'mod/web/perm/index.php?id='.$uid.($rec['perms_userid']==$GLOBALS['BE_USER']->user['uid']||$GLOBALS['BE_USER']->isAdmin()?'&return_id='.$uid.'&edit=1':'');
+ if (!t3lib_extMgm::isLoaded('perm')) {
+ return '';
+ }
+ $url = t3lib_extMgm::extRelPath('perm') . 'mod1/index.php?id=' . $uid . ($rec['perms_userid'] == $GLOBALS['BE_USER']->user['uid'] || $GLOBALS['BE_USER']->isAdmin() ? '&return_id=' . $uid . '&edit=1' : '');
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_perms')),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/perm.gif','width="7" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('status-status-locked')),
$this->urlRefForCM($url),
0
);
* @internal
*/
function DB_db_list($table,$uid,$rec) {
- $url = t3lib_div::getIndpEnv('TYPO3_REQUEST_DIR').'db_list.php?table='.($table=='pages'?'':$table).'&id='.($table=='pages'?$uid:$rec['pid']);
+ $urlParams = array();
+ $urlParams['id'] = ($table == 'pages') ? $uid : $rec['pid'];
+ $urlParams['table'] = $table == 'pages' ? '' : $table;
+ $url = t3lib_BEfunc::getModuleUrl('web_list', $urlParams, '', TRUE);
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_db_list')),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/list.gif','width="11" height="11"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-system-list-open')),
"top.nextLoadModuleUrl='".$url."';top.goToModule('web_list',1);",
0
);
* @internal
*/
function DB_moveWizard($table,$uid,$rec) {
- $url = 'move_el.php?table='.$table.'&uid='.$uid.
- ($table=='tt_content'?'&sys_language_uid='.intval($rec['sys_language_uid']):''); // Hardcoded field for tt_content elements.
+ $url = 'move_el.php?table=' . $table . '&uid=' . $uid .
+ ($table=='tt_content' ? '&sys_language_uid=' . intval($rec['sys_language_uid']) : ''); // Hardcoded field for tt_content elements.
return $this->linkItem(
- $GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_moveWizard'.($table=='pages'?'_page':''))),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/move_'.($table=='pages'?'page':'record').'.gif','width="11" height="12"').' alt="" />'),
+ $GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_moveWizard' . ($table=='pages' ? '_page' : ''))),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-' . ($table === 'pages' ? 'page' : 'document' ) . '-move')),
$this->urlRefForCM($url,'returnUrl'),
0
);
$url = ($table=='pages' || !t3lib_extMgm::isLoaded('cms')) ? 'db_new.php?id='.$uid.'&pagesOnly=1' : $newContentWizScriptPath.'?id='.$rec['pid'].'&sys_language_uid='.intval($rec['sys_language_uid']);
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_newWizard')),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/new_'.($table=='pages'?'page':'record').'.gif','width="'.($table=='pages'?'13':'16').'" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-' . ($table === 'pages' ? 'page' : 'document' ) . '-new')),
$this->urlRefForCM($url,'returnUrl'),
0
);
$url = 'alt_doc.php?edit['.$table.']['.$uid.']=edit'.$addParam;
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_editAccess')),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/editaccess.gif','width="12" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-edit-access')),
$this->urlRefForCM($url,'returnUrl'),
1 // no top frame CM!
);
* @param integer page uid to edit (PID)
* @return array Item array, element in $menuItems
* @internal
- * @deprecated since TYPO3 4.0 - Use DB_editPageProperties instead
+ * @deprecated since TYPO3 4.0, will be removed in TYPO3 4.6 - Use DB_editPageProperties instead
*/
function DB_editPageHeader($uid) {
+ t3lib_div::logDeprecatedFunction();
return $this->DB_editPageProperties($uid);
}
$url = 'alt_doc.php?edit[pages]['.$uid.']=edit';
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_editPageProperties')),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/edit2.gif','width="11" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-page-open')),
$this->urlRefForCM($url,'returnUrl'),
1 // no top frame CM!
);
$pageModule = t3lib_BEfunc::isModuleSetInTBE_MODULES($newPageModule) ? $newPageModule : 'web_layout';
$editOnClick='';
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
+ $loc = 'top.content.list_frame';
$addParam='';
- $theIcon = t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/edit2.gif','width="11" height="12"');
+ $theIcon = 'actions-document-open';
if (
$this->iParts[0]=='pages' &&
$this->iParts[1] &&
$BE_USER->check('modules', $pageModule)
) {
- $theIcon = t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/edit_page.gif','width="12" height="12"');
+ $theIcon = 'actions-page-open';
$this->editPageIconSet=1;
if ($BE_USER->uc['classicPageEditMode'] || !t3lib_extMgm::isLoaded('cms')) {
$addParam='&editRegularContentFromId='.intval($this->iParts[1]);
} else {
- $editOnClick='if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'alt_doc.php?returnUrl='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")+'&edit[".$table."][".$uid."]=edit".$addParam."';}";
+ $editOnClick='if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'alt_doc.php?returnUrl='+top.rawurlencode(" . $this->frameLocation($loc . '.document') . ")+'&edit[".$table."][".$uid."]=edit".$addParam."';}";
}
}
if (!$editOnClick) {
- $editOnClick='if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'alt_doc.php?returnUrl='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")+'&edit[".$table."][".$uid."]=edit".$addParam."';}";
+ $editOnClick='if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'alt_doc.php?returnUrl='+top.rawurlencode(" . $this->frameLocation($loc . '.document') . ")+'&edit[".$table."][".$uid."]=edit".$addParam."';}";
}
return $this->linkItem(
$this->label('edit'),
- $this->excludeIcon('<img'.$theIcon.' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon($theIcon)),
$editOnClick.'return hideCM();'
);
}
*/
function DB_new($table,$uid) {
$editOnClick='';
- $loc='top.content'.(!$this->alwaysContentFrame?'.list_frame':'');
+ $loc = 'top.content.list_frame';
$editOnClick='if('.$loc.'){'.$loc.".location.href=top.TS.PATH_typo3+'".
($this->listFrame?
- "alt_doc.php?returnUrl='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")+'&edit[".$table."][-".$uid."]=new'":
+ "alt_doc.php?returnUrl='+top.rawurlencode(" . $this->frameLocation($loc . '.document') . ")+'&edit[".$table."][-".$uid."]=new'":
'db_new.php?id='.intval($uid)."'").
';}';
return $this->linkItem(
$this->label('new'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/new_'.($table=='pages'&&$this->listFrame?'page':'el').'.gif','width="'.($table=='pages'?'13':'11').'" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-' . ($table === 'pages' ? 'page' : 'document' ) . '-new')),
$editOnClick.'return hideCM();'
);
}
*/
function DB_delete($table,$uid,$elInfo) {
$editOnClick='';
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
+ $loc = 'top.content.list_frame';
if($GLOBALS['BE_USER']->jsConfirmation(4)) {
- $conf = "confirm(".$GLOBALS['LANG']->JScharCode(sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:mess.delete'),$elInfo[0]).t3lib_BEfunc::referenceCount($table,$uid,' (There are %s reference(s) to this record!)')).")";
+ $conf = "confirm(".$GLOBALS['LANG']->JScharCode(sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:mess.delete'),$elInfo[0]) .
+ t3lib_BEfunc::referenceCount($table,$uid,' (There are %s reference(s) to this record!)') .
+ t3lib_BEfunc::translationCount($table, $uid, ' ' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.translationsOfRecord'))
+ ) . ")";
} else {
$conf = '1==1';
}
- $editOnClick = 'if(' . $loc . " && " . $conf . " ){" . $loc . ".location.href=top.TS.PATH_typo3+'tce_db.php?redirect='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")+'".
- "&cmd[".$table.']['.$uid.'][delete]=1&prErr=1&vC='.$GLOBALS['BE_USER']->veriCode()."';hideCM();}";
+ $editOnClick = 'if(' . $loc . " && " . $conf . " ){" . $loc . ".location.href=top.TS.PATH_typo3+'tce_db.php?redirect='+top.rawurlencode(" . $this->frameLocation($loc . '.document') . ")+'".
+ "&cmd[" . $table . '][' . $uid . '][delete]=1&prErr=1&vC=' . $GLOBALS['BE_USER']->veriCode() . t3lib_BEfunc::getUrlToken('tceAction') . "';}hideCM();top.nav.refresh.defer(500, top.nav);";
return $this->linkItem(
$this->label('delete'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/garbage.gif','width="11" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-edit-delete')),
$editOnClick.'return false;'
);
}
function DB_view($id,$anchor='') {
return $this->linkItem(
$this->label('view'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/zoom.gif','width="12" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-view')),
t3lib_BEfunc::viewOnClick($id,$this->PH_backPath,t3lib_BEfunc::BEgetRootLine($id),$anchor).'return hideCM();'
);
}
function DB_tempMountPoint($page_id) {
return $this->linkItem(
$this->label('tempMountPoint'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/placeasroot.gif','width="14" height="12"').' alt="" />'),
- "if (top.content.nav_frame) { top.content.nav_frame.location.href = 'alt_db_navframe.php?setTempDBmount=".intval($page_id)."'; } return hideCM();"
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('apps-pagetree-page-mountpoint')),
+ "if (top.content.nav_frame) {
+ var node = top.TYPO3.Backend.NavigationContainer.PageTree.getSelected();
+ if (node === null) {
+ return false;
+ }
+
+ var useNode = {
+ attributes: {
+ nodeData: {
+ id: " . intval($page_id) . "
+ }
+ }
+ };
+
+ node.ownerTree.commandProvider.mountAsTreeRoot(useNode, node.ownerTree);
+ }
+ return hideCM();
+ "
);
}
function DB_changeFlag($table, $rec, $flagField, $title, $name, $iconRelPath='gfx/') {
$uid = $rec['_ORIG_uid'] ? $rec['_ORIG_uid'] : $rec['uid'];
$editOnClick='';
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
- $editOnClick = 'if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'tce_db.php?redirect='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")+'" .
- "&data[".$table.']['.$uid.']['.$flagField.']='.($rec[$flagField]?0:1).'&prErr=1&vC='.$GLOBALS['BE_USER']->veriCode()."';hideCM();}";
+ $loc = 'top.content.list_frame';
+ $editOnClick = 'if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'tce_db.php?redirect='+top.rawurlencode(" . $this->frameLocation($loc . '.document') . ")+'" .
+ "&data[" . $table . '][' . $uid . '][' . $flagField . ']=' .
+ ($rec[$flagField] ? 0 : 1) . '&prErr=1&vC=' . $GLOBALS['BE_USER']->veriCode() . t3lib_BEfunc::getUrlToken('tceAction') . "';}hideCM();top.nav.refresh.defer(500, top.nav);";
return $this->linkItem(
$title,
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,$iconRelPath.'button_'.($rec[$flagField]?'un':'').$name.'.gif','width="11" height="10"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-edit-' . ( $rec[$flagField] ? 'un' : '') . 'hide')),
$editOnClick.'return false;',
1
);
if (file_exists($path) && t3lib_div::isAllowedAbsPath($path)) {
$fI = pathinfo($path);
- $icon = is_dir($path) ? 'folder.gif' : t3lib_BEfunc::getFileIcon(strtolower($fI['extension']));
$size=' ('.t3lib_div::formatSize(filesize($path)).'bytes)';
- $icon = '<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/fileicons/'.$icon,'width="18" height="16"').' class="absmiddle" title="'.htmlspecialchars($fI['basename'].$size).'" alt="" />';
+ $icon = t3lib_iconWorks::getSpriteIconForFile(is_dir($path) ? 'folder' : strtolower($fI['extension']),
+ array('class'=>'absmiddle', 'title' => htmlspecialchars($fI['basename'] . $size)));
// edit
if (!in_array('edit',$this->disabledItems) && is_file($path) && t3lib_div::inList($GLOBALS['TYPO3_CONF_VARS']['SYS']['textfile_ext'],$fI['extension'])) $menuItems['edit']=$this->FILE_launch($path,'file_edit.php','edit','edit_file.gif');
// rename
if (!in_array('rename',$this->disabledItems)) $menuItems['rename']=$this->FILE_launch($path,'file_rename.php','rename','rename.gif');
// upload
- if (!in_array('upload',$this->disabledItems) && is_dir($path)) $menuItems['upload']=$this->FILE_launch($path,'file_upload.php','upload','upload.gif',TRUE);
+ if (!in_array('upload',$this->disabledItems) && is_dir($path)) {
+ $menuItems['upload'] = $this->FILE_upload($path);
+ }
+
// new
if (!in_array('new',$this->disabledItems) && is_dir($path)) $menuItems['new']=$this->FILE_launch($path,'file_newfolder.php','new','new_file.gif');
// info
* @internal
*/
function FILE_launch($path,$script,$type,$image,$noReturnUrl=FALSE) {
- $loc='top.content'.(!$this->alwaysContentFrame?'.list_frame':'');
+ $loc = 'top.content.list_frame';
- $editOnClick = 'if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'".$script.'?target=' . rawurlencode($path) . ($noReturnUrl ? "'" : "&returnUrl='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")") . ";}";
+ $editOnClick = 'if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'".$script.'?target=' . rawurlencode($path) . ($noReturnUrl ? "'" : "&returnUrl='+top.rawurlencode(" . $this->frameLocation($loc . '.document') . ")") . ";}";
return $this->linkItem(
$this->label($type),
$this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/'.$image,'width="12" height="12"').' alt="" />'),
- $editOnClick.'return hideCM();'
+ $editOnClick . 'top.nav.refresh();return hideCM();'
);
}
/**
+ * function for adding an upload entry to the $menuItems array
+ *
+ * @param string Path to the file/directory (target)
+ * @return array Item array, element in $menuItems
+ * @internal
+ */
+ function FILE_upload($path) {
+ $script = 'file_upload.php';
+ $type = 'upload';
+ $image = 'upload.gif';
+ if ($GLOBALS['BE_USER']->uc['enableFlashUploader']) {
+ $loc = 'top.content.list_frame';
+
+ $editOnClick = 'if (top.TYPO3.FileUploadWindow.isFlashAvailable()) { initFlashUploader("' . rawurlencode($path) . '"); } else if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'".$script.'?target=' . rawurlencode($path) . "';}";
+
+ return $this->linkItem(
+ $this->label($type),
+ $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/'.$image,'width="12" height="12"').' alt="" />'),
+ $editOnClick . 'return hideCM();'
+ );
+ } else {
+ return $this->FILE_launch($path, $script, $type, $image, true);
+ }
+ }
+
+ /**
* Returns element for copy or cut of files.
*
* @param string Path to the file/directory (target)
return $this->linkItem(
$this->label($type),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/clip_'.$type.($isSel==$type?'_h':'').'.gif','width="12" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-edit-' . $type . ($isSel === $type ? '-release' : ''))),
"top.loadTopMenu('".$this->clipObj->selUrlFile($path,($type=='copy'?1:0),($isSel==$type),$addParam)."');return false;"
);
}
*/
function FILE_delete($path) {
$editOnClick='';
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
+ $loc = 'top.content.list_frame';
if($GLOBALS['BE_USER']->jsConfirmation(4)) {
$conf = "confirm(".$GLOBALS['LANG']->JScharCode(sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:mess.delete'),basename($path)).t3lib_BEfunc::referenceCount('_FILE',$path,' (There are %s reference(s) to this file!)')).")";
} else {
$conf = '1==1';
}
- $editOnClick = 'if(' . $loc . " && " . $conf . " ){" . $loc . ".location.href=top.TS.PATH_typo3+'tce_file.php?redirect='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")+'" .
- "&file[delete][0][data]=".rawurlencode($path).'&vC='.$GLOBALS['BE_USER']->veriCode()."';hideCM();}";
+ $editOnClick = 'if(' . $loc . " && " . $conf . " ){" . $loc . ".location.href=top.TS.PATH_typo3+'tce_file.php?redirect='+top.rawurlencode(" . $this->frameLocation($loc . '.document') . ")+'" .
+ "&file[delete][0][data]=".rawurlencode($path).'&vC='.$GLOBALS['BE_USER']->veriCode()."';}hideCM();";
return $this->linkItem(
$this->label('delete'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/garbage.gif','width="11" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-edit-delete')),
$editOnClick.'return false;'
);
}
*/
function FILE_paste($path,$target,$elInfo) {
$editOnClick='';
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
+ $loc = 'top.content.list_frame';
if($GLOBALS['BE_USER']->jsConfirmation(2)) {
$conf=$loc." && confirm(".$GLOBALS['LANG']->JScharCode(sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:mess.'.($elInfo[2]=='copy'?'copy':'move').'_into'),$elInfo[0],$elInfo[1])).")";
} else {
}
$editOnClick='if('.$conf.'){'.$loc.".location.href=top.TS.PATH_typo3+'".$this->clipObj->pasteUrl('_FILE',$path,0).
- "&redirect='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') .'); hideCM();}';
+ "&redirect='+top.rawurlencode(" . $this->frameLocation($loc . '.document') .'); }hideCM();top.nav.refresh();';
return $this->linkItem(
$this->label('pasteinto'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/clip_pasteinto.gif','width="12" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-paste-into')),
$editOnClick.'return false;'
);
}
// Return the printed elements:
return $this->printItems($menuItems,
- t3lib_iconWorks::getIconImage($table,$this->rec,$this->PH_backPath,' class="absmiddle" title="'.htmlspecialchars(t3lib_BEfunc::getRecordIconAltText($this->rec,$table)).'"').t3lib_BEfunc::getRecordTitle($table,$this->rec,TRUE)
+ t3lib_iconWorks::getSpriteIconForRecord($table,$this->rec,array('title'=> t3lib_BEfunc::getRecordTitle($table,$this->rec,TRUE)))
);
}
function dragDrop_copymovepage($srcUid,$dstUid,$action,$into) {
$negativeSign = ($into == 'into') ? '' : '-';
$editOnClick='';
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
- $editOnClick = 'if(' . $loc . '){' . $loc . '.document.location=top.TS.PATH_typo3+"tce_db.php?redirect="+top.rawurlencodeAndRemoveSiteUrl(' . $this->frameLocation($loc . '.document') . ')+"' .
- '&cmd[pages]['.$srcUid.']['.$action.']='.$negativeSign.$dstUid.'&prErr=1&vC='.$GLOBALS['BE_USER']->veriCode().'";hideCM();}';
+ $loc = 'top.content.list_frame';
+ $editOnClick = 'if(' . $loc . '){' . $loc . '.document.location=top.TS.PATH_typo3+"tce_db.php?redirect="+top.rawurlencode(' . $this->frameLocation($loc . '.document') . ')+"' .
+ '&cmd[pages][' . $srcUid . '][' . $action . ']=' . $negativeSign . $dstUid . '&prErr=1&vC=' . $GLOBALS['BE_USER']->veriCode() . t3lib_BEfunc::getUrlToken('tceAction') . '";}hideCM();top.nav.refresh();';
return $this->linkItem(
$this->label($action.'Page_'.$into),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/'.$action.'_page_'.$into.'.gif','width="11" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-paste-' . $into)),
$editOnClick.'return false;',
0
);
*/
function dragDrop_copymovefolder($srcPath,$dstPath,$action) {
$editOnClick='';
- $loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
- $editOnClick = 'if(' . $loc . '){' . $loc . '.document.location=top.TS.PATH_typo3+"tce_file.php?redirect="+top.rawurlencodeAndRemoveSiteUrl(' . $this->frameLocation($loc . '.document') .')+"' .
- '&file['.$action.'][0][data]='.$srcPath.'&file['.$action.'][0][target]='.$dstPath.'&prErr=1&vC='.$GLOBALS['BE_USER']->veriCode().'";hideCM();}';
+ $loc = 'top.content.list_frame';
+ $editOnClick = 'if(' . $loc . '){' . $loc . '.document.location=top.TS.PATH_typo3+"tce_file.php?redirect="+top.rawurlencode(' . $this->frameLocation($loc . '.document') .')+"' .
+ '&file['.$action.'][0][data]='.$srcPath.'&file['.$action.'][0][target]='.$dstPath.'&prErr=1&vC='.$GLOBALS['BE_USER']->veriCode().'";}hideCM();top.nav.refresh();';
return $this->linkItem(
$this->label($action.'Folder_into'),
- $this->excludeIcon('<img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/'.$action.'_folder_into.gif','width="11" height="12"').' alt="" />'),
+ $this->excludeIcon(t3lib_iconWorks::getSpriteIcon('apps-pagetree-drag-move-into')),
$editOnClick.'return false;',
0
);
'</td>
<!-- Close button: -->
- <td class="c-closebutton"><a href="#" onclick="hideCM();return false;"><img'.t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/close_12h.gif','width="11" height="12"').' title="'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.close',1).'" alt="" /></a></td>
+ <td class="c-closebutton"><a href="#" onclick="hideCM();return false;">' .
+ t3lib_iconWorks::getSpriteIcon('actions-document-close', array(
+ 'title'=> $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.close', 1)
+ )) . '</a></td>
<!-- The item of the clickmenu: -->
<td class="c-itemicon">'.$item.'</td>
// Create the table displayed in the clickmenu layer:
$CMtable = '
- <table border="0" cellpadding="0" cellspacing="0" class="typo3-CSM bgColor4">
+ <table border="0" cellpadding="0" cellspacing="0" class="typo3-CSM">
'.implode('',$this->menuItemsForClickMenu($menuItems)).'
</table>';
*/
function wrapColorTableCM($str) {
- // Clear-gifs needed if opera is to set the table row height correctly in skins.
- $str = '<table border="0" cellspacing="0" class="typo3-CSM-wrapperCM">
- <tr class="c-rowA">
- <td class="c-aa">'.$str.'</td>
- <td class="c-ab"></td>
- </tr>
- <tr class="c-rowB">
- <td class="c-ba"><img src="clear.gif" width="1" height="1" alt="" /></td>
- <td class="c-bb"><img src="clear.gif" width="1" height="1" alt="" /></td>
- </tr>
- </table>';
- return $str;
+ return '<div class="typo3-CSM-wrapperCM">
+ ' . $str . '
+ </div>';
}
/**
* @return array Array of menu items for top frame.
*/
function menuItemsForTopFrame($menuItems) {
- reset($menuItems);
$out=array();
- while(list(,$i)=each($menuItems)) {
+ foreach ($menuItems as $i) {
if ($i[4]==1 && !$GLOBALS['SOBE']->doc->isCMlayers()) $i[4]=0; // IF the topbar is the ONLY means of the click menu, then items normally disabled from the top menu will appear anyways IF they are disabled with a "1" (2+ will still disallow them in the topbar)
if (is_array($i) && !$i[4]) $out[]=$i[0];
}
* @return array array for implosion in the CM div-layers table.
*/
function menuItemsForClickMenu($menuItems) {
- reset($menuItems);
$out=array();
- while(list($cc,$i)=each($menuItems)) {
+ foreach ($menuItems as $cc => $i) {
if (is_string($i) && $i=='spacer') { // MAKE horizontal spacer
$out[]='
<tr class="bgColor2">
</tr>';
} else { // Just make normal element:
$onClick=$i[3];
- $onClick=eregi_replace('return[[:space:]]+hideCM\(\)[[:space:]]*;','',$onClick);
- $onClick=eregi_replace('return[[:space:]]+false[[:space:]]*;','',$onClick);
- $onClick=eregi_replace('hideCM\(\);','',$onClick);
+ $onClick=preg_replace('/return[[:space:]]+hideCM\(\)[[:space:]]*;/i','',$onClick);
+ $onClick=preg_replace('/return[[:space:]]+false[[:space:]]*;/i','',$onClick);
+ $onClick=preg_replace('/hideCM\(\);/i','',$onClick);
if (!$i[5]) $onClick.='Clickmenu.hideAll();';
if ($GLOBALS['TYPO3_CONF_VARS']['BE']['useOnContextMenuHandler']) {
$onClick = str_replace('top.loadTopMenu', 'showClickmenu_raw', $onClick);
}
- $WHattribs = t3lib_iconWorks::skinImg($BACK_PATH,'gfx/content_client.gif','width="7" height="10"',2);
return array(
- '<img src="clear.gif" '.$WHattribs.' class="c-roimg" name="roimg_'.$this->elCount.'" alt="" />'.
+ t3lib_iconWorks::getSpriteIcon('empty-empty', array(
+ 'class' => 'c-roimg',
+ 'id'=> 'roimg_' . $this->elCount
+ )) .
'<a href="#" onclick="'.htmlspecialchars($onClick).'" onmouseover="mo('.$this->elCount.');" onmouseout="mout('.$this->elCount.');">'.
$str.$icon.
'</a>',
/**
* Script Class for the Context Sensitive Menu in TYPO3 (rendered in top frame, normally writing content dynamically to list frames).
*
- * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
* @package TYPO3
* @subpackage core
* @see template::getContextMenuCode()
var date = new Date();
var mo_timeout = Math.floor(date.getTime()/1000);
- roImg =new Image();
- roImg.src = "'.t3lib_iconWorks::skinImg($BACK_PATH,'gfx/content_client.gif','width="7" height="10"',1).'";
+ roImg = "' . t3lib_iconWorks::getSpriteIconClasses('status-status-current') . '";
- routImg =new Image();
- routImg.src = "clear.gif";
+ routImg = "t3-icon-empty";
function mo(c) { //
var name="roimg_"+c;
- document[name].src = roImg.src;
+ document.getElementById(name).className = roImg;
updateTime();
}
function mout(c) { //
var name="roimg_"+c;
- document[name].src = routImg.src;
+ document[name].src = routImg;
updateTime();
}
function updateTime() { //
$this->content = $this->doc->insertStylesAndJS($this->content);
echo $this->content;
} else {
+ t3lib_formprotection_Factory::get()->persistTokens();
$this->content = $GLOBALS['LANG']->csConvObj->utf8_encode($this->content,$GLOBALS['LANG']->charSet);
t3lib_ajax::outputXMLreply($this->content);
}
}
-if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/alt_clickmenu.php']) {
- include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/alt_clickmenu.php']);
+if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/alt_clickmenu.php'])) {
+ include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/alt_clickmenu.php']);
}