-layers
*
* @return boolean
*/
function doDisplayTopFrameCM() {
if($this->ajax) {
return false;
} else {
return !$GLOBALS['SOBE']->doc->isCMlayers() || !$this->dontDisplayTopFrameCM;
}
}
/***************************************
*
* DATABASE
*
***************************************/
/**
* Make 1st level clickmenu:
*
* @param string Table name
* @param integer UID for the current record.
* @return string HTML content
*/
function printDBClickMenu($table,$uid) {
global $TCA, $BE_USER;
// Get record:
$this->rec = t3lib_BEfunc::getRecordWSOL($table,$uid);
$menuItems=array();
$root=0;
$DBmount = FALSE;
if ($table=='pages' && !strcmp($uid,'0')) { // Rootlevel
$root=1;
}
if ($table=='pages' && in_array($uid,$GLOBALS['BE_USER']->returnWebmounts())) { // DB mount
$DBmount = TRUE;
}
// 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) {
// Get permissions
$lCP = $BE_USER->calcPerms(t3lib_BEfunc::getRecord('pages',($table=='pages'?$this->rec['uid']:$this->rec['pid'])));
// View
if (!in_array('view',$this->disabledItems)) {
if ($table=='pages') $menuItems['view']=$this->DB_view($uid);
if ($table==$GLOBALS['TYPO3_CONF_VARS']['SYS']['contentTable']) {
$ws_rec = t3lib_BEfunc::getRecordWSOL($table, $this->rec['uid']);
$menuItems['view']=$this->DB_view($ws_rec['pid']);
}
}
// Edit:
if(!$root && ($BE_USER->isPSet($lCP,$table,'edit')||$BE_USER->isPSet($lCP,$table,'editcontent'))) {
if (!in_array('edit',$this->disabledItems)) $menuItems['edit']=$this->DB_edit($table,$uid);
$this->editOK=1;
}
// New:
if (!in_array('new',$this->disabledItems) && $BE_USER->isPSet($lCP,$table,'new')) $menuItems['new']=$this->DB_new($table,$uid);
// Info:
if(!in_array('info',$this->disabledItems) && !$root) $menuItems['info']=$this->DB_info($table,$uid);
$menuItems['spacer1']='spacer';
// Copy:
if(!in_array('copy',$this->disabledItems) && !$root && !$DBmount) $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');
// Paste:
$elFromAllTables = count($this->clipObj->elFromTable(''));
if (!in_array('paste',$this->disabledItems) && $elFromAllTables) {
$selItem = $this->clipObj->getSelectedRecord();
$elInfo=array(
t3lib_div::fixed_lgd_cs($selItem['_RECORD_TITLE'],$BE_USER->uc['titleLen']),
($root?$GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']:t3lib_div::fixed_lgd_cs(t3lib_BEfunc::getRecordTitle($table,$this->rec),$BE_USER->uc['titleLen'])),
$this->clipObj->currentMode()
);
if ($table=='pages' && ($lCP & 8)) {
if ($elFromAllTables) $menuItems['pasteinto']=$this->DB_paste('',$uid,'into',$elInfo);
}
$elFromTable = count($this->clipObj->elFromTable($table));
if (!$root && !$DBmount && $elFromTable && $TCA[$table]['ctrl']['sortby']) $menuItems['pasteafter']=$this->DB_paste($table,-$uid,'after',$elInfo);
}
// Delete:
$elInfo=array(t3lib_div::fixed_lgd_cs(t3lib_BEfunc::getRecordTitle($table,$this->rec),$BE_USER->uc['titleLen']));
if(!in_array('delete',$this->disabledItems) && !$root && !$DBmount && $BE_USER->isPSet($lCP,$table,'delete')) {
$menuItems['spacer2']='spacer';
$menuItems['delete']=$this->DB_delete($table,$uid,$elInfo);
}
if(!in_array('history',$this->disabledItems)) {
$menuItems['history']=$this->DB_history($table,$uid,$elInfo);
}
}
// Adding external elements to the menuItems array
$menuItems = $this->processingByExtClassArray($menuItems,$table,$uid);
// Processing by external functions?
$menuItems = $this->externalProcessingOfDBMenuItems($menuItems);
// Return the printed elements:
return $this->printItems($menuItems,
$root?
'
![]()
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)
);
}
/**
* Make 2nd level clickmenu (only for DBmenus)
*
* @param string Table name
* @param integer UID for the current record.
* @return string HTML content
*/
function printNewDBLevel($table,$uid) {
global $TCA, $BE_USER;
// Setting internal record to the table/uid :
$this->rec = t3lib_BEfunc::getRecordWSOL($table,$uid);
$menuItems=array();
$root=0;
if ($table=='pages' && !strcmp($uid,'0')) { // Rootlevel
$root=1;
}
// If record was found, check permissions and get menu items.
if (is_array($this->rec) || $root) {
$lCP = $BE_USER->calcPerms(t3lib_BEfunc::getRecord('pages',($table=='pages'?$this->rec['uid']:$this->rec['pid'])));
// Edit:
if(!$root && ($BE_USER->isPSet($lCP,$table,'edit')||$BE_USER->isPSet($lCP,$table,'editcontent'))) {
$this->editOK=1;
}
$menuItems = $this->processingByExtClassArray($menuItems,$table,$uid);
}
// Return the printed elements:
if (!is_array($menuItems)) $menuItems=array();
return $this->printItems($menuItems,
$root?
'
![]()
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)
);
}
/**
* Processing the $menuItems array (for extension classes) (DATABASE RECORDS)
*
* @param array $menuItems array for manipulation.
* @return array Processed $menuItems array
*/
function externalProcessingOfDBMenuItems($menuItems) {
return $menuItems;
}
/**
* Processing the $menuItems array by external classes (typ. adding items)
*
* @param array $menuItems array for manipulation.
* @param string Table name
* @param integer UID for the current record.
* @return array Processed $menuItems array
*/
function processingByExtClassArray($menuItems,$table,$uid) {
if (is_array($this->extClassArray)) {
reset($this->extClassArray);
while(list(,$conf)=each($this->extClassArray)) {
$obj=t3lib_div::makeInstance($conf['name']);
$menuItems = $obj->main($this,$menuItems,$table,$uid);
}
}
return $menuItems;
}
/**
* Returning JavaScript for the onClick event linking to the input URL.
*
* @param string The URL relative to TYPO3_mainDir
* @param string The return_url-parameter
* @param boolean If set, the "hideCM()" will be called
* @param string If set, gives alternative location to load in (for example top frame or somewhere else)
* @return string JavaScript for an onClick event.
*/
function urlRefForCM($url,$retUrl='',$hideCM=1,$overrideLoc='') {
$loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.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();':'');
return $editOnClick;
}
/**
* Adding CM element for Clipboard "copy" and "cut"
*
* @param string Table name
* @param integer UID for the current record.
* @param string Type: "copy" or "cut"
* @return array Item array, element in $menuItems
* @internal
*/
function DB_copycut($table,$uid,$type) {
if ($this->clipObj->current=='normal') {
$isSel = $this->clipObj->isSelected($table,$uid);
}
$addParam = array();
if ($this->listFrame) {
$addParam['reloadListFrame'] = ($this->alwaysContentFrame ? 2 : 1);
}
return $this->linkItem(
$this->label($type),
$this->excludeIcon('
![]()
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;"
);
}
/**
* Adding CM element for Clipboard "paste into"/"paste after"
* NOTICE: $table and $uid should follow the special syntax for paste, see clipboard-class :: pasteUrl();
*
* @param string Table name
* @param integer UID for the current record. NOTICE: Special syntax!
* @param string Type: "into" or "after"
* @param array Contains instructions about whether to copy or cut an element.
* @return array Item array, element in $menuItems
* @see t3lib_clipboard::pasteUrl()
* @internal
*/
function DB_paste($table,$uid,$type,$elInfo) {
$editOnClick = '';
$loc = 'top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.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();}';
return $this->linkItem(
$this->label('paste'.$type),
$this->excludeIcon('
![]()
PH_backPath,'gfx/clip_paste'.$type.'.gif','width="12" height="12"').' alt="" />'),
$editOnClick.'return false;'
);
}
/**
* Adding CM element for Info
*
* @param string Table name
* @param integer UID for the current record.
* @return array Item array, element in $menuItems
* @internal
*/
function DB_info($table,$uid) {
return $this->linkItem(
$this->label('info'),
$this->excludeIcon('
![]()
PH_backPath,'gfx/zoom2.gif','width="12" height="12"').' alt="" />'),
"top.launchView('".$table."', '".$uid."'); return hideCM();"
);
}
/**
* Adding CM element for History
*
* @param string Table name
* @param integer UID for the current record.
* @return array Item array, element in $menuItems
* @internal
*/
function DB_history($table,$uid) {
$url = 'show_rechis.php?element='.rawurlencode($table.':'.$uid);
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_history')),
$this->excludeIcon('
![]()
PH_backPath,'gfx/history2.gif','width="13" height="12"').' alt="" />'),
$this->urlRefForCM($url,'returnUrl'),
0
);
}
/**
* Adding CM element for Permission setting
*
* @param string Table name
* @param integer UID for the current record.
* @param array The "pages" record with "perms_*" fields inside.
* @return array Item array, element in $menuItems
* @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':'');
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_perms')),
$this->excludeIcon('
![]()
PH_backPath,'gfx/perm.gif','width="7" height="12"').' alt="" />'),
$this->urlRefForCM($url),
0
);
}
/**
* Adding CM element for DBlist
*
* @param string Table name
* @param integer UID for the current record.
* @param array Record of the element (needs "pid" field if not pages-record)
* @return array Item array, element in $menuItems
* @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']);
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_db_list')),
$this->excludeIcon('
![]()
PH_backPath,'gfx/list.gif','width="11" height="11"').' alt="" />'),
"top.nextLoadModuleUrl='".$url."';top.goToModule('web_list',1);",
0
);
}
/**
* Adding CM element for Moving wizard
*
* @param string Table name
* @param integer UID for the current record.
* @param array Record. Needed for tt-content elements which will have the sys_language_uid sent
* @return array Item array, element in $menuItems
* @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.
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_moveWizard'.($table=='pages'?'_page':''))),
$this->excludeIcon('
![]()
PH_backPath,'gfx/move_'.($table=='pages'?'page':'record').'.gif','width="11" height="12"').' alt="" />'),
$this->urlRefForCM($url,'returnUrl'),
0
);
}
/**
* Adding CM element for Create new wizard (either db_new.php or sysext/cms/layout/db_new_content_el.php or custom wizard)
*
* @param string Table name
* @param integer UID for the current record.
* @param array Record.
* @return array Item array, element in $menuItems
* @internal
*/
function DB_newWizard($table,$uid,$rec) {
// If mod.web_list.newContentWiz.overrideWithExtension is set, use that extension's create new content wizard instead:
$tmpTSc = t3lib_BEfunc::getModTSconfig($this->pageinfo['uid'],'mod.web_list');
$tmpTSc = $tmpTSc ['properties']['newContentWiz.']['overrideWithExtension'];
$newContentWizScriptPath = t3lib_extMgm::isLoaded($tmpTSc) ? (t3lib_extMgm::extRelPath($tmpTSc).'mod1/db_new_content_el.php') : 'sysext/cms/layout/db_new_content_el.php';
$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('
![]()
PH_backPath,'gfx/new_'.($table=='pages'?'page':'record').'.gif','width="'.($table=='pages'?'13':'16').'" height="12"').' alt="" />'),
$this->urlRefForCM($url,'returnUrl'),
0
);
}
/**
* Adding CM element for Editing of the access related fields of a table (disable, starttime, endtime, fe_groups)
*
* @param string Table name
* @param integer UID for the current record.
* @return array Item array, element in $menuItems
* @internal
*/
function DB_editAccess($table,$uid) {
$addParam='&columnsOnly='.rawurlencode(implode(',',$GLOBALS['TCA'][$table]['ctrl']['enablecolumns']).($table=='pages' ? ',extendToSubpages' :''));
$url = 'alt_doc.php?edit['.$table.']['.$uid.']=edit'.$addParam;
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_editAccess')),
$this->excludeIcon('
![]()
PH_backPath,'gfx/editaccess.gif','width="12" height="12"').' alt="" />'),
$this->urlRefForCM($url,'returnUrl'),
1 // no top frame CM!
);
}
/**
* Adding CM element for edit page header
*
* @param integer page uid to edit (PID)
* @return array Item array, element in $menuItems
* @internal
* @deprecated since TYPO3 4.0 - Use DB_editPageProperties instead
*/
function DB_editPageHeader($uid) {
return $this->DB_editPageProperties($uid);
}
/**
* Adding CM element for edit page properties
*
* @param integer page uid to edit (PID)
* @return array Item array, element in $menuItems
* @internal
*/
function DB_editPageProperties($uid) {
$url = 'alt_doc.php?edit[pages]['.$uid.']=edit';
return $this->linkItem(
$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLL('CM_editPageProperties')),
$this->excludeIcon('
![]()
PH_backPath,'gfx/edit2.gif','width="11" height="12"').' alt="" />'),
$this->urlRefForCM($url,'returnUrl'),
1 // no top frame CM!
);
}
/**
* Adding CM element for regular editing of the element!
*
* @param string Table name
* @param integer UID for the current record.
* @return array Item array, element in $menuItems
* @internal
*/
function DB_edit($table,$uid) {
global $BE_USER;
// If another module was specified, replace the default Page module with the new one
$newPageModule = trim($BE_USER->getTSConfigVal('options.overridePageModule'));
$pageModule = t3lib_BEfunc::isModuleSetInTBE_MODULES($newPageModule) ? $newPageModule : 'web_layout';
$editOnClick='';
$loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.list_frame':'');
$addParam='';
$theIcon = t3lib_iconWorks::skinImg($this->PH_backPath,'gfx/edit2.gif','width="11" height="12"');
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"');
$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."';}";
}
}
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."';}";
}
return $this->linkItem(
$this->label('edit'),
$this->excludeIcon('
![]()
'),
$editOnClick.'return hideCM();'
);
}
/**
* Adding CM element for regular Create new element
*
* @param string Table name
* @param integer UID for the current record.
* @return array Item array, element in $menuItems
* @internal
*/
function DB_new($table,$uid) {
$editOnClick='';
$loc='top.content'.(!$this->alwaysContentFrame?'.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'":
'db_new.php?id='.intval($uid)."'").
';}';
return $this->linkItem(
$this->label('new'),
$this->excludeIcon('
![]()
PH_backPath,'gfx/new_'.($table=='pages'&&$this->listFrame?'page':'el').'.gif','width="'.($table=='pages'?'13':'11').'" height="12"').' alt="" />'),
$editOnClick.'return hideCM();'
);
}
/**
* Adding CM element for Delete
*
* @param string Table name
* @param integer UID for the current record.
* @param array Label for including in the confirmation message, EXT:lang/locallang_core.php:mess.delete
* @return array Item array, element in $menuItems
* @internal
*/
function DB_delete($table,$uid,$elInfo) {
$editOnClick='';
$loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.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!)')).")";
} 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();}";
return $this->linkItem(
$this->label('delete'),
$this->excludeIcon('
![]()
PH_backPath,'gfx/garbage.gif','width="11" height="12"').' alt="" />'),
$editOnClick.'return false;'
);
}
/**
* Adding CM element for View Page
*
* @param integer Page uid (PID)
* @param string Anchor, if any
* @return array Item array, element in $menuItems
* @internal
*/
function DB_view($id,$anchor='') {
return $this->linkItem(
$this->label('view'),
$this->excludeIcon('
![]()
PH_backPath,'gfx/zoom.gif','width="12" height="12"').' alt="" />'),
t3lib_BEfunc::viewOnClick($id,$this->PH_backPath,t3lib_BEfunc::BEgetRootLine($id),$anchor).'return hideCM();'
);
}
/**
* Adding element for setting temporary mount point.
*
* @param integer Page uid (PID)
* @return array Item array, element in $menuItems
* @internal
*/
function DB_tempMountPoint($page_id) {
return $this->linkItem(
$this->label('tempMountPoint'),
$this->excludeIcon('
![]()
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();"
);
}
/**
* Adding CM element for hide/unhide of the input record
*
* @param string Table name
* @param array Record array
* @param string Name of the hide field
* @return array Item array, element in $menuItems
* @internal
*/
function DB_hideUnhide($table,$rec,$hideField) {
return $this->DB_changeFlag($table, $rec, $hideField, $this->label(($rec[$hideField]?'un':'').'hide'), 'hide');
}
/**
* Adding CM element for a flag field of the input record
*
* @param string Table name
* @param array Record array
* @param string Name of the flag field
* @param string Menu item Title
* @param string Name of the item used for icons and labels
* @param string Icon path relative to typo3/ folder
* @return array Item array, element in $menuItems
*/
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();}";
return $this->linkItem(
$title,
$this->excludeIcon('
![]()
PH_backPath,$iconRelPath.'button_'.($rec[$flagField]?'un':'').$name.'.gif','width="11" height="10"').' alt="" />'),
$editOnClick.'return false;',
1
);
}
/***************************************
*
* FILE
*
***************************************/
/**
* Make 1st level clickmenu:
*
* @param string The absolute path
* @return string HTML content
*/
function printFileClickMenu($path) {
$menuItems=array();
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 = '
![]()
PH_backPath,'gfx/fileicons/'.$icon,'width="18" height="16"').' class="absmiddle" title="'.htmlspecialchars($fI['basename'].$size).'" alt="" />';
// 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);
// new
if (!in_array('new',$this->disabledItems) && is_dir($path)) $menuItems['new']=$this->FILE_launch($path,'file_newfolder.php','new','new_file.gif');
// info
if (!in_array('info',$this->disabledItems)) $menuItems['info']=$this->DB_info($path,'');
$menuItems[]='spacer';
// copy:
if (!in_array('copy',$this->disabledItems)) $menuItems['copy']=$this->FILE_copycut($path,'copy');
// cut:
if (!in_array('cut',$this->disabledItems)) $menuItems['cut']=$this->FILE_copycut($path,'cut');
// Paste:
$elFromAllTables = count($this->clipObj->elFromTable('_FILE'));
if (!in_array('paste',$this->disabledItems) && $elFromAllTables && is_dir($path)) {
$elArr = $this->clipObj->elFromTable('_FILE');
reset($elArr);
$selItem = current($elArr);
$elInfo=array(
basename($selItem),
basename($path),
$this->clipObj->currentMode()
);
$menuItems['pasteinto']=$this->FILE_paste($path,$selItem,$elInfo);
}
$menuItems[]='spacer';
// delete:
if (!in_array('delete',$this->disabledItems)) $menuItems['delete']=$this->FILE_delete($path);
}
// Adding external elements to the menuItems array
$menuItems = $this->processingByExtClassArray($menuItems,$path,0);
// Processing by external functions?
$menuItems = $this->externalProcessingOfFileMenuItems($menuItems);
// Return the printed elements:
return $this->printItems($menuItems,$icon.basename($path));
}
/**
* Processing the $menuItems array (for extension classes) (FILES)
*
* @param array $menuItems array for manipulation.
* @return array Processed $menuItems array
*/
function externalProcessingOfFileMenuItems($menuItems) {
return $menuItems;
}
/**
* Multi-function for adding an entry to the $menuItems array
*
* @param string Path to the file/directory (target)
* @param string Script (eg. file_edit.php) to pass &target= to
* @param string "type" is the code which fetches the correct label for the element from "cm."
* @param string icon image-filename from "gfx/" (12x12 icon)
* @param boolean If set, the return URL parameter will not be set in the link
* @return array Item array, element in $menuItems
* @internal
*/
function FILE_launch($path,$script,$type,$image,$noReturnUrl=FALSE) {
$loc='top.content'.(!$this->alwaysContentFrame?'.list_frame':'');
$editOnClick = 'if(' . $loc . '){' . $loc . ".location.href=top.TS.PATH_typo3+'".$script.'?target=' . rawurlencode($path) . ($noReturnUrl ? "'" : "&returnUrl='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') . ")") . ";}";
return $this->linkItem(
$this->label($type),
$this->excludeIcon('
![]()
PH_backPath,'gfx/'.$image,'width="12" height="12"').' alt="" />'),
$editOnClick.'return hideCM();'
);
}
/**
* Returns element for copy or cut of files.
*
* @param string Path to the file/directory (target)
* @param string Type: "copy" or "cut"
* @return array Item array, element in $menuItems
* @internal
*/
function FILE_copycut($path,$type) {
$table = '_FILE'; // Pseudo table name for use in the clipboard.
$uid = t3lib_div::shortmd5($path);
if ($this->clipObj->current=='normal') {
$isSel = $this->clipObj->isSelected($table,$uid);
}
$addParam = array();
if ($this->listFrame) {
$addParam['reloadListFrame'] = ($this->alwaysContentFrame ? 2 : 1);
}
return $this->linkItem(
$this->label($type),
$this->excludeIcon('
![]()
PH_backPath,'gfx/clip_'.$type.($isSel==$type?'_h':'').'.gif','width="12" height="12"').' alt="" />'),
"top.loadTopMenu('".$this->clipObj->selUrlFile($path,($type=='copy'?1:0),($isSel==$type),$addParam)."');return false;"
);
}
/**
* Creates element for deleting of target
*
* @param string Path to the file/directory (target)
* @return array Item array, element in $menuItems
* @internal
*/
function FILE_delete($path) {
$editOnClick='';
$loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.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();}";
return $this->linkItem(
$this->label('delete'),
$this->excludeIcon('
![]()
PH_backPath,'gfx/garbage.gif','width="11" height="12"').' alt="" />'),
$editOnClick.'return false;'
);
}
/**
* Creates element for pasting files.
*
* @param string Path to the file/directory (target)
* @param string target - NOT USED.
* @param array Various values for the labels.
* @return array Item array, element in $menuItems
* @internal
*/
function FILE_paste($path,$target,$elInfo) {
$editOnClick='';
$loc='top.content'.($this->listFrame && !$this->alwaysContentFrame ?'.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 {
$conf=$loc;
}
$editOnClick='if('.$conf.'){'.$loc.".location.href=top.TS.PATH_typo3+'".$this->clipObj->pasteUrl('_FILE',$path,0).
"&redirect='+top.rawurlencodeAndRemoveSiteUrl(" . $this->frameLocation($loc . '.document') .'); hideCM();}';
return $this->linkItem(
$this->label('pasteinto'),
$this->excludeIcon('
![]()
PH_backPath,'gfx/clip_pasteinto.gif','width="12" height="12"').' alt="" />'),
$editOnClick.'return false;'
);
}
/***************************************
*
* DRAG AND DROP
*
***************************************/
/**
* Make 1st level clickmenu:
*
* @param string The absolute path
* @param integer UID for the current record.
* @param integer Destination ID
* @return string HTML content
*/
function printDragDropClickMenu($table,$srcId,$dstId) {
$menuItems=array();
// If the drag and drop menu should apply to PAGES use this set of menu items
if ($table == 'pages') {
// Move Into:
$menuItems['movePage_into']=$this->dragDrop_copymovepage($srcId,$dstId,'move','into');
// Move After:
$menuItems['movePage_after']=$this->dragDrop_copymovepage($srcId,$dstId,'move','after');
// Copy Into:
$menuItems['copyPage_into']=$this->dragDrop_copymovepage($srcId,$dstId,'copy','into');
// Copy After:
$menuItems['copyPage_after']=$this->dragDrop_copymovepage($srcId,$dstId,'copy','after');
}
// If the drag and drop menu should apply to FOLDERS use this set of menu items
if ($table == 'folders') {
// Move Into:
$menuItems['moveFolder_into']=$this->dragDrop_copymovefolder($srcId,$dstId,'move');
// Copy Into:
$menuItems['copyFolder_into']=$this->dragDrop_copymovefolder($srcId,$dstId,'copy');
}
// Adding external elements to the menuItems array
$menuItems = $this->processingByExtClassArray($menuItems,"dragDrop_".$table,$srcId); // to extend this, you need to apply a Context Menu to a "virtual" table called "dragDrop_pages" or similar
// Processing by external functions?
$menuItems = $this->externalProcessingOfDBMenuItems($menuItems);
// 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)
);
}
/**
* Processing the $menuItems array (for extension classes) (DRAG'N DROP)
*
* @param array $menuItems array for manipulation.
* @return array Processed $menuItems array
*/
function externalProcessingOfDragDropMenuItems($menuItems) {
return $menuItems;
}
/**
* Adding CM element for Copying/Moving a Page Into/After from a drag & drop action
*
* @param integer source UID code for the record to modify
* @param integer destination UID code for the record to modify
* @param string Action code: either "move" or "copy"
* @param string Parameter code: either "into" or "after"
* @return array Item array, element in $menuItems
* @internal
*/
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();}';
return $this->linkItem(
$this->label($action.'Page_'.$into),
$this->excludeIcon('
![]()
PH_backPath,'gfx/'.$action.'_page_'.$into.'.gif','width="11" height="12"').' alt="" />'),
$editOnClick.'return false;',
0
);
}
/**
* Adding CM element for Copying/Moving a Folder Into from a drag & drop action
*
* @param string source path for the record to modify
* @param string destination path for the records to modify
* @param string Action code: either "move" or "copy"
* @return array Item array, element in $menuItems
* @internal
*/
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();}';
return $this->linkItem(
$this->label($action.'Folder_into'),
$this->excludeIcon('
![]()
PH_backPath,'gfx/'.$action.'_folder_into.gif','width="11" height="12"').' alt="" />'),
$editOnClick.'return false;',
0
);
}
/***************************************
*
* COMMON
*
**************************************/
/**
* Prints the items from input $menuItems array - both as topframe menu AND the JS section for writing to the div-layers.
* Of course the topframe menu will appear only if $this->doDisplayTopFrameCM() returns true
*
* @param array $menuItems array
* @param string HTML code for the element which was clicked - shown in the end of the horizontal menu in topframe after the close-button.
* @return string HTML code
*/
function printItems($menuItems,$item) {
$out='';
// Enable/Disable items:
$menuItems = $this->enableDisableItems($menuItems);
// Clean up spacers:
$menuItems = $this->cleanUpSpacers($menuItems);
// Adding topframe part (horizontal clickmenu)
if ($this->doDisplayTopFrameCM()) {
$out.= '
';
// Set remaining BACK_PATH to blank (if any)
$out = str_replace($this->PH_backPath,'',$out);
}
// Adding JS part:
$out.=$this->printLayerJScode($menuItems);
// Return the content
return $out;
}
/**
* Create the JavaScript section
*
* @param array The $menuItems array to print
* @return string The JavaScript section which will print the content of the CM to the div-layer in the target frame.
*/
function printLayerJScode($menuItems) {
$script='';
if ($this->isCMlayers()) { // Clipboard must not be submitted - then it's probably a copy/cut situation.
$frameName = '.'.($this->listFrame ? 'list_frame' : 'nav_frame');
if ($this->alwaysContentFrame) $frameName='';
// Create the table displayed in the clickmenu layer:
$CMtable = '
'.implode('',$this->menuItemsForClickMenu($menuItems)).'
';
// Wrap the inner table in another table to create outer border:
$CMtable = $this->wrapColorTableCM($CMtable);
// Set back path place holder to real back path
$CMtable = str_replace($this->PH_backPath,$this->backPath,$CMtable);
if ($this->ajax) {
$innerXML = '
'.$this->cmLevel.'';
return $innerXML;
} else {
// Create JavaScript section:
$script=$GLOBALS['TBE_TEMPLATE']->wrapScriptTags('
if (top.content && top.content'.$frameName.' && top.content'.$frameName.'.Clickmenu) {
top.content'.$frameName.'.Clickmenu.populateData(unescape("'.t3lib_div::rawurlencodeJS($CMtable).'"),'.$this->cmLevel.');
}
'.(!$this->doDisplayTopFrameCM()?'hideCM();':'')
);
return $script;
}
}
}
/**
* Wrapping the input string in a table with background color 4 and a black border style.
* For the pop-up menu
*
* @param string HTML content to wrap in table.
* @return string
*/
function wrapColorTableCM($str) {
// Clear-gifs needed if opera is to set the table row height correctly in skins.
$str = '
'.$str.' |
|
 |
 |
';
return $str;
}
/**
* Traverses the menuItems and generates an output array for implosion in the topframe horizontal menu
*
* @param array $menuItem array
* @param array Array with HTML content to be imploded between
-tags
* @return array Array of menu items for top frame.
*/
function menuItemsForTopFrame($menuItems) {
reset($menuItems);
$out=array();
while(list(,$i)=each($menuItems)) {
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 $out;
}
/**
* Traverses the menuItems and generates an output array for implosion in the CM div-layers table.
*
* @param array $menuItem array
* @param array Array with HTML content to be imploded between | -tags
* @return array array for implosion in the CM div-layers table.
*/
function menuItemsForClickMenu($menuItems) {
reset($menuItems);
$out=array();
while(list($cc,$i)=each($menuItems)) {
if (is_string($i) && $i=='spacer') { // MAKE horizontal spacer
$out[]='
|
 |
';
} 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);
if (!$i[5]) $onClick.='Clickmenu.hideAll();';
if ($GLOBALS['TYPO3_CONF_VARS']['BE']['useOnContextMenuHandler']) {
$CSM = ' oncontextmenu="'.htmlspecialchars($onClick).';return false;"';
}
$out[]='
'.(!$this->leftIcons?''.$i[1].' | '.$i[2].' | ' : ''.$i[2].' | '.$i[1].' | ').'
';
}
}
return $out;
}
/**
* Adds or inserts a menu item
* Can be used to set the position of new menu entries within the list of existing menu entries. Has this syntax: [cmd]:[menu entry key],[cmd].... cmd can be "after", "before" or "top" (or blank/"bottom" which is default). If "after"/"before" then menu items will be inserted after/before the existing entry with [menu entry key] if found. "after-spacer" and "before-spacer" do the same, but inserts before or after an item and a spacer. If not found, the bottom of list. If "top" the items are inserted in the top of the list.
*
* @param array Menu items array
* @param array Menu items array to insert
* @param string Position command string. Has this syntax: [cmd]:[menu entry key],[cmd].... cmd can be "after", "before" or "top" (or blank/"bottom" which is default). If "after"/"before" then menu items will be inserted after/before the existing entry with [menu entry key] if found. "after-spacer" and "before-spacer" do the same, but inserts before or after an item and a spacer. If not found, the bottom of list. If "top" the items are inserted in the top of the list.
* @return array Menu items array, processed.
*/
function addMenuItems($menuItems,$newMenuItems,$position='') {
if (is_array($newMenuItems)) {
if($position) {
$posArr = t3lib_div::trimExplode(',', $position, 1);
foreach($posArr as $pos) {
list($place,$menuEntry) = t3lib_div::trimExplode(':', $pos, 1);
list($place,$placeExtra) = t3lib_div::trimExplode('-', $place, 1);
// bottom
$pointer = count($menuItems);
$found=FALSE;
if ($place) {
switch(strtolower($place)) {
case 'after':
case 'before':
if ($menuEntry) {
$p=1;
reset ($menuItems);
while (true) {
if (!strcmp(key($menuItems), $menuEntry)) {
$pointer = $p;
$found=TRUE;
break;
}
if (!next($menuItems)) break;
$p++;
}
if (!$found) break;
if ($place=='before') {
$pointer--;
if ($placeExtra=='spacer' AND prev($menuItems)=='spacer') {
$pointer--;
}
} elseif ($place=='after') {
if ($placeExtra=='spacer' AND next($menuItems)=='spacer') {
$pointer++;
}
}
}
break;
default:
if (strtolower($place)=='top') {
$pointer = 0;
} else {
$pointer = count($menuItems);
}
$found=TRUE;
break;
}
}
if($found) break;
}
}
$pointer=max(0,$pointer);
$menuItemsBefore = array_slice($menuItems, 0, ($pointer?$pointer:0));
$menuItemsAfter = array_slice($menuItems, $pointer);
$menuItems = $menuItemsBefore + $newMenuItems + $menuItemsAfter;
}
return $menuItems;
}
/**
* Creating an array with various elements for the clickmenu entry
*
* @param string The label, htmlspecialchar'ed already
* @param string
![]()
-tag for the icon
* @param string JavaScript onclick event for label/icon
* @param boolean ==1 and the element will NOT appear in clickmenus in the topframe (unless clickmenu is totally unavailable)! ==2 and the item will NEVER appear in top frame. (This is mostly for "less important" options since the top frame is not capable of holding so many elements horizontally)
* @param boolean If set, the clickmenu layer will not hide itself onclick - used for secondary menus to appear...
* @return array $menuItem entry with 6 numerical entries: [0] is the HTML for display of the element with link and icon an mouseover etc., [1]-[5] is simply the input params passed through!
*/
function linkItem($str,$icon,$onClick,$onlyCM=0,$dontHide=0) {
global $BACK_PATH;
$this->elCount++;
if($this->ajax) {
$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(
'

'.
'
'.
$str.$icon.
'',
$str,
$icon,
$onClick,
$onlyCM,
$dontHide
);
}
/**
* Returns the input string IF not a user setting has disabled display of icons.
*
* @param string The icon-image tag
* @return string The icon-image tag prefixed with space char IF the icon should be printed at all due to user settings
*/
function excludeIcon($iconCode) {
return ($GLOBALS['BE_USER']->uc['noMenuMode'] && strcmp($GLOBALS['BE_USER']->uc['noMenuMode'],'icons')) ? '' : ' '.$iconCode;
}
/**
* Enabling / Disabling items based on list provided from GET var ($this->iParts[3])
*
* @param array Menu items array
* @return array Menu items array, processed.
*/
function enableDisableItems($menuItems) {
if ($this->iParts[3]) {
// Detect "only" mode: (only showing listed items)
if (substr($this->iParts[3],0,1)=='+') {
$this->iParts[3] = substr($this->iParts[3],1);
$only = TRUE;
} else {
$only = FALSE;
}
// Do filtering:
if ($only) { // Transfer ONLY elements which are mentioned (or are spacers)
$newMenuArray = array();
foreach($menuItems as $key => $value) {
if (t3lib_div::inList($this->iParts[3], $key) || (is_string($value) && $value=='spacer')) {
$newMenuArray[$key] = $value;
}
}
$menuItems = $newMenuArray;
} else { // Traverse all elements except those listed (just unsetting them):
$elements = t3lib_div::trimExplode(',',$this->iParts[3],1);
foreach($elements as $value) {
unset($menuItems[$value]);
}
}
}
// Return processed menu items:
return $menuItems;
}
/**
* Clean up spacers; Will remove any spacers in the start/end of menu items array plus any duplicates.
*
* @param array Menu items array
* @return array Menu items array, processed.
*/
function cleanUpSpacers($menuItems) {
// Remove doubles:
$prevItemWasSpacer = FALSE;
foreach($menuItems as $key => $value) {
if (is_string($value) && $value=='spacer') {
if ($prevItemWasSpacer) {
unset($menuItems[$key]);
}
$prevItemWasSpacer = TRUE;
} else {
$prevItemWasSpacer = FALSE;
}
}
// Remove first:
reset($menuItems);
$key = key($menuItems);
$value = current($menuItems);
if (is_string($value) && $value=='spacer') {
unset($menuItems[$key]);
}
// Remove last:
end($menuItems);
$key = key($menuItems);
$value = current($menuItems);
if (is_string($value) && $value=='spacer') {
unset($menuItems[$key]);
}
// Return processed menu items:
return $menuItems;
}
/**
* Get label from locallang_core.php:cm.*
*
* @param string The "cm."-suffix to get.
* @return string
*/
function label($label) {
return $GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:cm.'.$label,1));
}
/**
* Returns true if there should be writing to the div-layers (commands sent to clipboard MUST NOT write to div-layers)
*
* @return boolean
*/
function isCMlayers() {
if($this->ajax) {
return !$this->CB;
} else {
return $GLOBALS['SOBE']->doc->isCMlayers() && !$this->CB;
}
}
/**
* Appends ".location" to input string
*
* @param string Input string, probably a JavaScript document reference
* @return string
*/
function frameLocation($str) {
return $str.'.location';
}
}
/**
* Script Class for the Context Sensitive Menu in TYPO3 (rendered in top frame, normally writing content dynamically to list frames).
*
* @author Kasper Skaarhoj
* @package TYPO3
* @subpackage core
* @see template::getContextMenuCode()
*/
class SC_alt_clickmenu {
// Internal, static: GPvar:
var $backPath; // Back path.
var $item; // Definition of which item the click menu should be made for.
var $reloadListFrame; // Defines the name of the document object for which to reload the URL.
// Internal:
var $content=''; // Content accumulation
var $doc; // Template object
var $include_once=array(); // Files to include_once() - set in init() function
var $extClassArray=array(); // Internal array of classes for extending the clickmenu
var $dontDisplayTopFrameCM=0; // If set, then the clickmenu will NOT display in the top frame.
/**
* Constructor function for script class.
*
* @return void
*/
function init() {
global $BE_USER,$BACK_PATH;
// Setting GPvars:
$this->backPath = t3lib_div::_GP('backPath');
$this->item = t3lib_div::_GP('item');
$this->reloadListFrame = t3lib_div::_GP('reloadListFrame');
// Setting pseudo module name
$this->MCONF['name']='xMOD_alt_clickmenu.php';
// Takes the backPath as a parameter BUT since we are worried about someone forging a backPath (XSS security hole) we will check with sent md5 hash:
$inputBP = explode('|',$this->backPath);
if (count($inputBP)==2 && $inputBP[1]==t3lib_div::shortMD5($inputBP[0].'|'.$GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey'])) {
$this->backPath = $inputBP[0];
} else {
$this->backPath = $BACK_PATH;
}
// Setting internal array of classes for extending the clickmenu:
$this->extClassArray = $GLOBALS['TBE_MODULES_EXT']['xMOD_alt_clickmenu']['extendCMclasses'];
// Traversing that array and setting files for inclusion:
if (is_array($this->extClassArray)) {
foreach($this->extClassArray as $extClassConf) {
if ($extClassConf['path']) $this->include_once[]=$extClassConf['path'];
}
}
// Initialize template object
if (!$this->ajax) {
$this->doc = t3lib_div::makeInstance('template');
$this->doc->backPath = $BACK_PATH;
}
// Setting mode for display and background image in the top frame
$this->dontDisplayTopFrameCM= $this->doc->isCMlayers() && !$BE_USER->getTSConfigVal('options.contextMenu.options.alwaysShowClickMenuInTopFrame');
if ($this->dontDisplayTopFrameCM) {
$this->doc->bodyTagId.= '-notop';
}
// Setting clickmenu timeout
$secs = t3lib_div::intInRange($BE_USER->getTSConfigVal('options.contextMenu.options.clickMenuTimeOut'),1,100,5); // default is 5
// Setting the JavaScript controlling the timer on the page
$listFrameDoc = $this->reloadListFrame!=2 ? 'top.content.list_frame' : 'top.content';
$this->doc->JScode.=$this->doc->wrapScriptTags('
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).'";
routImg =new Image();
routImg.src = "clear.gif";
function mo(c) { //
var name="roimg_"+c;
document[name].src = roImg.src;
updateTime();
}
function mout(c) { //
var name="roimg_"+c;
document[name].src = routImg.src;
updateTime();
}
function updateTime() { //
date = new Date();
mo_timeout = Math.floor(date.getTime()/1000);
}
function timeout_func() { //
date = new Date();
if (Math.floor(date.getTime()/1000)-mo_timeout > '.$secs.') {
hideCM();
return false;
} else {
window.setTimeout("timeout_func();",1*1000);
}
}
function hideCM() { //
window.location.href="alt_topmenu_dummy.php";
return false;
}
// Start timer
timeout_func();
'.($this->reloadListFrame ? '
// Reload list frame:
if('.$listFrameDoc.'){'.$listFrameDoc.'.location.href='.$listFrameDoc.'.location.href;}' :
'').'
');
}
/**
* Main function - generating the click menu in whatever form it has.
*
* @return void
*/
function main() {
$this->ajax = t3lib_div::_GP('ajax') ? TRUE : FALSE;
// Initialize Clipboard object:
$clipObj = t3lib_div::makeInstance('t3lib_clipboard');
$clipObj->initializeClipboard();
$clipObj->lockToNormal(); // This locks the clipboard to the Normal for this request.
// Update clipboard if some actions are sent.
$CB = t3lib_div::_GET('CB');
$clipObj->setCmd($CB);
$clipObj->cleanCurrent();
$clipObj->endClipboard(); // Saves
// Create clickmenu object
$clickMenu = t3lib_div::makeInstance('clickMenu');
// Set internal vars in clickmenu object:
$clickMenu->clipObj = $clipObj;
$clickMenu->extClassArray = $this->extClassArray;
$clickMenu->dontDisplayTopFrameCM = $this->dontDisplayTopFrameCM;
$clickMenu->backPath = $this->backPath;
// Start page
if(!$this->ajax) {
$this->content.= $this->doc->startPage('Context Sensitive Menu');
}
// Set content of the clickmenu with the incoming var, "item"
$this->content.= $clickMenu->init();
}
/**
* End page and output content.
*
* @return void
*/
function printContent() {
if (!$this->ajax) {
$this->content.= $this->doc->endPage();
$this->content = $this->doc->insertStylesAndJS($this->content);
echo $this->content;
} else {
$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']);
}
// Make instance:
$SOBE = t3lib_div::makeInstance('SC_alt_clickmenu');
$SOBE->init();
// Include files?
foreach($SOBE->include_once as $INC_FILE) include_once($INC_FILE);
$SOBE->main();
$SOBE->printContent();
?>