"TYPO3 4.0.1: typo3_src-4.0.1/t3lib/class.t3lib_browsetree.php Source File", "datetime" => "Sat Dec 2 19:22:17 2006", "date" => "2 Dec 2006", "doxygenversion" => "1.4.6", "projectname" => "TYPO3 4.0.1", "projectnumber" => "4.0.1" ); get_header($doxygen_vars); ?>
00001 <?php 00002 /*************************************************************** 00003 * Copyright notice 00004 * 00005 * (c) 1999-2006 Kasper Skaarhoj (kasperYYYY@typo3.com) 00006 * All rights reserved 00007 * 00008 * This script is part of the TYPO3 project. The TYPO3 project is 00009 * free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * The GNU General Public License can be found at 00015 * http://www.gnu.org/copyleft/gpl.html. 00016 * A copy is found in the textfile GPL.txt and important notices to the license 00017 * from the author is found in LICENSE.txt distributed with these scripts. 00018 * 00019 * 00020 * This script is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * This copyright notice MUST APPEAR in all copies of the script! 00026 ***************************************************************/ 00051 require_once (PATH_t3lib.'class.t3lib_treeview.php'); 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00074 class t3lib_browseTree extends t3lib_treeView { 00075 00083 function init($clause='') { 00084 00085 // this will hide records from display - it has nothing todo with user rights!! 00086 $clauseExludePidList = ''; 00087 if ($pidList = $GLOBALS['BE_USER']->getTSConfigVal('options.hideRecords.pages')) { 00088 if ($pidList = $GLOBALS['TYPO3_DB']->cleanIntList($pidList)) { 00089 $clauseExludePidList = ' AND pages.uid NOT IN ('.$pidList.')'; 00090 } 00091 } 00092 00093 // This is very important for making trees of pages: Filtering out deleted pages, pages with no access to and sorting them correctly: 00094 parent::init(' AND '.$GLOBALS['BE_USER']->getPagePermsClause(1).' '.$clause.$clauseExludePidList, 'sorting'); 00095 00096 $this->table = 'pages'; 00097 $this->setTreeName('browsePages'); 00098 $this->domIdPrefix = 'pages'; 00099 $this->iconName = ''; 00100 $this->title = $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']; 00101 $this->MOUNTS = $GLOBALS['WEBMOUNTS']; 00102 00103 $this->fieldArray = array_merge($this->fieldArray,array('doktype','php_tree_stop','t3ver_id','t3ver_state','t3ver_wsid','t3ver_swapmode')); 00104 if (t3lib_extMgm::isLoaded('cms')) { 00105 $this->fieldArray = array_merge($this->fieldArray,array('hidden','starttime','endtime','fe_group','module','extendToSubpages')); 00106 } 00107 } 00108 00116 function getTitleAttrib($row) { 00117 return t3lib_BEfunc::titleAttribForPages($row,'1=1 '.$this->clause,0); 00118 } 00119 00128 function wrapIcon($icon,$row) { 00129 // Add title attribute to input icon tag 00130 $theIcon = $this->addTagAttributes($icon,($this->titleAttrib ? $this->titleAttrib.'="'.$this->getTitleAttrib($row).'"' : '')); 00131 00132 // Wrap icon in click-menu link. 00133 if (!$this->ext_IconMode) { 00134 $theIcon = $GLOBALS['TBE_TEMPLATE']->wrapClickMenuOnIcon($theIcon,$this->treeName,$this->getId($row),0); 00135 } elseif (!strcmp($this->ext_IconMode,'titlelink')) { 00136 $aOnClick = 'return jumpTo(\''.$this->getJumpToParam($row).'\',this,\''.$this->domIdPrefix.$this->getId($row).'\','.$this->bank.');'; 00137 $theIcon='<a href="#" onclick="'.htmlspecialchars($aOnClick).'">'.$theIcon.'</a>'; 00138 } 00139 return $theIcon; 00140 } 00141 } 00142 00143 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_browsetree.php']) { 00144 include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_browsetree.php']); 00145 } 00146 ?>