Project

General

Profile

Bug #22524 » 14217.diff

Administrator Admin, 2010-04-27 14:50

View differences:

typo3/class.browse_links.php (working copy)
* @return string The processed icon input value.
*/
function wrapIcon($icon,$row) {
return $this->addTagAttributes($icon,' title="id='.$row['uid'].'"');
$pageIdStr = ($this->ext_showPageId ? '[' . $row['uid'] . '] ' : '');
return $this->addTagAttributes($icon,' title="id='.$row['uid'].'"') . $pageIdStr;
}
}
......
case 'page':
$pagetree = t3lib_div::makeInstance('rtePageTree');
$pagetree->thisScript = $this->thisScript;
$pagetree->ext_showPageId = $GLOBALS['BE_USER']->getTSConfigVal('options.pageTree.showPageIdWithTitle');
$tree=$pagetree->getBrowsableTree();
$cElements = $this->expandPage();
$content.= '
......
$pagetree->thisScript=$this->thisScript;
$pagetree->ext_pArrPages = !strcmp($pArr[3],'pages')?1:0;
$pagetree->ext_showNavTitle = $GLOBALS['BE_USER']->getTSConfigVal('options.pageTree.showNavTitle');
$pagetree->ext_showPageId = $GLOBALS['BE_USER']->getTSConfigVal('options.pageTree.showPageIdWithTitle');
$pagetree->addField('nav_title');
$tree=$pagetree->getBrowsableTree();
(1-1/2)