1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
<?php
/***************************************************************
* Copyright notice
*
* (c) 1999-2006 Kasper Skaarhoj (kasperYYYY@typo3.com)
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
* A copy is found in the textfile GPL.txt and important notices to the license
* from the author is found in LICENSE.txt distributed with these scripts.
*
*
* This script is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* Contains class for loading database groups
*
* $Id: class.t3lib_loaddbgroup.php 1704 2006-08-31 10:52:20Z baschny $
* Revised for TYPO3 3.6 September/2003 by Kasper Skaarhoj
*
* @author Kasper Skaarhoj <kasperYYYY@typo3.com>
*/
/**
* [CLASS/FUNCTION INDEX of SCRIPT]
*
*
*
* 72: class t3lib_loadDBGroup
* 99: function start($itemlist,$tablelist, $MMtable='',$MMuid=0)
* 140: function readList($itemlist)
* 186: function readMM($tableName,$uid)
* 215: function writeMM($tableName,$uid,$prependTableName=0)
* 251: function getValueArray($prependTableName='')
* 279: function convertPosNeg($valueArray,$fTable,$nfTable)
* 301: function getFromDB()
* 333: function readyForInterface()
*
* TOTAL FUNCTIONS: 8
* (This index is automatically created/updated by the extension "extdeveval")
*
*/
/**
* Load database groups (relations)
* Used to process the relations created by the TCA element types "group" and "select" for database records. Manages MM-relations as well.
*
* @author Kasper Skaarhoj <kasperYYYY@typo3.com>
* @package TYPO3
* @subpackage t3lib
*/
class t3lib_loadDBGroup {
// External, static:
var $fromTC = 1; // Means that only uid and the label-field is returned
var $registerNonTableValues=0; // If set, values that are not ids in tables are normally discarded. By this options they will be preserved.
// Internal, dynamic:
var $tableArray=Array(); // Contains the table names as keys. The values are the id-values for each table. Should ONLY contain proper table names.
var $itemArray=Array(); // Contains items in an numeric array (table/id for each). Tablenames here might be "_NO_TABLE"
var $nonTableArray=array(); // Array for NON-table elements
var $additionalWhere=array();
var $checkIfDeleted = 1; // deleted-column is added to additionalWhere... if this is set...
var $dbPaths=Array();
var $firstTable = ''; // Will contain the first table name in the $tablelist (for positive ids)
var $secondTable = ''; // Will contain the second table name in the $tablelist (for negative ids)
/**
* Initialization of the class.
*
* @param string List of group/select items
* @param string Comma list of tables, first table takes priority if no table is set for an entry in the list.
* @param string Name of a MM table.
* @param integer Local UID for MM lookup
* @return void
*/
function start($itemlist,$tablelist, $MMtable='',$MMuid=0) {
// If the table list is "*" then all tables are used in the list:
if (!strcmp(trim($tablelist),'*')) {
$tablelist = implode(',',array_keys($GLOBALS['TCA']));
}
// The tables are traversed and internal arrays are initialized:
$tempTableArray = t3lib_div::trimExplode(',',$tablelist,1);
foreach($tempTableArray as $key => $val) {
$tName = trim($val);
$this->tableArray[$tName] = Array();
if ($this->checkIfDeleted && $GLOBALS['TCA'][$tName]['ctrl']['delete']) {
$fieldN = $tName.'.'.$GLOBALS['TCA'][$tName]['ctrl']['delete'];
$this->additionalWhere[$tName].=' AND '.$fieldN.'=0';
}
}
if (is_array($this->tableArray)) {
reset($this->tableArray);
} else {return 'No tables!';}
// Set first and second tables:
$this->firstTable = key($this->tableArray); // Is the first table
next($this->tableArray);
$this->secondTable = key($this->tableArray); // If the second table is set and the ID number is less than zero (later) then the record is regarded to come from the second table...
// Now, populate the internal itemArray and tableArray arrays:
if ($MMtable) { // If MM, then call this function to do that:
$this->readMM($MMtable,$MMuid);
} else {
// If not MM, then explode the itemlist by "," and traverse the list:
$this->readList($itemlist);
}
}
/**
* Explodes the item list and stores the parts in the internal arrays itemArray and tableArray from MM records.
*
* @param string Item list
* @return void
*/
function readList($itemlist) {
if ((string)trim($itemlist)!='') {
$tempItemArray = t3lib_div::trimExplode(',', $itemlist); // Changed to trimExplode 31/3 04; HMENU special type "list" didn't work if there were spaces in the list... I suppose this is better overall...
foreach($tempItemArray as $key => $val) {
$isSet = 0; // Will be set to "1" if the entry was a real table/id:
// Extract table name and id. This is un the formular [tablename]_[id] where table name MIGHT contain "_", hence the reversion of the string!
$val = strrev($val);
$parts = explode('_',$val,2);
$theID = strrev($parts[0]);
// Check that the id IS an integer:
if (t3lib_div::testInt($theID)) {
// Get the table name: If a part of the exploded string, use that. Otherwise if the id number is LESS than zero, use the second table, otherwise the first table
$theTable = trim($parts[1]) ? strrev(trim($parts[1])) : ($this->secondTable && $theID<0 ? $this->secondTable : $this->firstTable);
// If the ID is not blank and the table name is among the names in the inputted tableList, then proceed:
if ((string)$theID!='' && $theID && $theTable && isset($this->tableArray[$theTable])) {
// Get ID as the right value:
$theID = $this->secondTable ? abs(intval($theID)) : intval($theID);
// Register ID/table name in internal arrays:
$this->itemArray[$key]['id'] = $theID;
$this->itemArray[$key]['table'] = $theTable;
$this->tableArray[$theTable][] = $theID;
// Set update-flag:
$isSet=1;
}
}
// If it turns out that the value from the list was NOT a valid reference to a table-record, then we might still set it as a NO_TABLE value:
if (!$isSet && $this->registerNonTableValues) {
$this->itemArray[$key]['id'] = $tempItemArray[$key];
$this->itemArray[$key]['table'] = '_NO_TABLE';
$this->nonTableArray[] = $tempItemArray[$key];
}
}
}
}
/**
* Reads the record tablename/id into the internal arrays itemArray and tableArray from MM records.
* You can call this function after start if you supply no list to start()
*
* @param string MM Tablename
* @param integer Local UID
* @return void
*/
function readMM($tableName,$uid) {
$key=0;
// Select all MM relations:
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', $tableName, 'uid_local='.intval($uid), '', 'sorting');
while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
$theTable = $row['tablenames'] ? $row['tablenames'] : $this->firstTable; // If tablesnames columns exists and contain a name, then this value is the table, else it's the firstTable...
if (($row['uid_foreign'] || $theTable=='pages') && $theTable && isset($this->tableArray[$theTable])) {
$this->itemArray[$key]['id'] = $row['uid_foreign'];
$this->itemArray[$key]['table'] = $theTable;
$this->tableArray[$theTable][]= $row['uid_foreign'];
} elseif ($this->registerNonTableValues) {
$this->itemArray[$key]['id'] = $row['uid_foreign'];
$this->itemArray[$key]['table'] = '_NO_TABLE';
$this->nonTableArray[] = $row['uid_foreign'];
}
$key++;
}
$GLOBALS['TYPO3_DB']->sql_free_result($res);
}
/**
* Writes the internal itemArray to MM table:
*
* @param string MM table name
* @param integer Local UID
* @param boolean If set, then table names will always be written.
* @return void
*/
function writeMM($tableName,$uid,$prependTableName=0) {
// Delete all relations:
$GLOBALS['TYPO3_DB']->exec_DELETEquery($tableName, 'uid_local='.intval($uid));
// If there are tables...
$tableC = count($this->tableArray);
if ($tableC) {
$prep = ($tableC>1||$prependTableName) ? 1 : 0;
$c=0;
$tName=array();
// For each item, insert it:
foreach($this->itemArray as $val) {
$c++;
$insertFields = array(
'uid_local' => $uid,
'uid_foreign' => $val['id'],
'sorting' => $c
);
if ($prep || $val['table']=='_NO_TABLE') {
$insertFields['tablenames'] = $val['table'];
}
$GLOBALS['TYPO3_DB']->exec_INSERTquery($tableName, $insertFields);
}
}
}
/**
* After initialization you can extract an array of the elements from the object. Use this function for that.
*
* @param boolean If set, then table names will ALWAYS be prepended (unless its a _NO_TABLE value)
* @return array A numeric array.
*/
function getValueArray($prependTableName='') {
// INIT:
$valueArray=Array();
$tableC = count($this->tableArray);
// If there are tables in the table array:
if ($tableC) {
// If there are more than ONE table in the table array, then always prepend table names:
$prep = ($tableC>1||$prependTableName) ? 1 : 0;
// Traverse the array of items:
foreach($this->itemArray as $val) {
$valueArray[]=(($prep && $val['table']!='_NO_TABLE') ? $val['table'].'_' : '').
$val['id'];
}
}
// Return the array
return $valueArray;
}
/**
* Converts id numbers from negative to positive.
*
* @param array Array of [table]_[id] pairs.
* @param string Foreign table (the one used for positive numbers)
* @param string NEGative foreign table
* @return array The array with ID integer values, converted to positive for those where the table name was set but did NOT match the positive foreign table.
*/
function convertPosNeg($valueArray,$fTable,$nfTable) {
if (is_array($valueArray) && $fTable) {
foreach($valueArray as $key => $val) {
$val = strrev($val);
$parts = explode('_',$val,2);
$theID = strrev($parts[0]);
$theTable = strrev($parts[1]);
if ( t3lib_div::testInt($theID) && (!$theTable || !strcmp($theTable,$fTable) || !strcmp($theTable,$nfTable)) ) {
$valueArray[$key]= $theTable && strcmp($theTable,$fTable) ? $theID*-1 : $theID;
}
}
}
return $valueArray;
}
/**
* Reads all records from internal tableArray into the internal ->results array where keys are table names and for each table, records are stored with uids as their keys.
* If $this->fromTC is set you can save a little memory since only uid,pid and a few other fields are selected.
*
* @return void
*/
function getFromDB() {
// Traverses the tables listed:
foreach($this->tableArray as $key => $val) {
if (is_array($val)) {
$itemList = implode(',',$val);
if ($itemList) {
$from = '*';
if ($this->fromTC) {
$from = 'uid,pid';
if ($GLOBALS['TCA'][$key]['ctrl']['label']) {
$from.= ','.$GLOBALS['TCA'][$key]['ctrl']['label']; // Titel
}
if ($GLOBALS['TCA'][$key]['ctrl']['label_alt']) {
$from.= ','.$GLOBALS['TCA'][$key]['ctrl']['label_alt']; // Alternative Title-Fields
}
if ($GLOBALS['TCA'][$key]['ctrl']['thumbnail']) {
$from.= ','.$GLOBALS['TCA'][$key]['ctrl']['thumbnail']; // Thumbnail
}
}
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery($from, $key, 'uid IN ('.$itemList.')'.$this->additionalWhere[$key]);
while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
$this->results[$key][$row['uid']]=$row;
}
}
}
}
return $this->results;
}
/**
* Prepare items from itemArray to be transferred to the TCEforms interface (as a comma list)
*
* @return string
* @see t3lib_transferdata::renderRecord()
*/
function readyForInterface() {
global $TCA;
if (!is_array($this->itemArray)) {return false;}
$output=array();
$perms_clause = $GLOBALS['BE_USER']->getPagePermsClause(1); // For use when getting the paths....
$titleLen=intval($GLOBALS['BE_USER']->uc['titleLen']);
foreach($this->itemArray as $key => $val) {
$theRow = $this->results[$val['table']][$val['id']];
if ($theRow && is_array($TCA[$val['table']])) {
$label = t3lib_div::fixed_lgd_cs(strip_tags(t3lib_BEfunc::getRecordTitle($val['table'], $theRow)),$titleLen);
$label = ($label)?$label:'[...]';
$output[]=str_replace(',','',$val['table'].'_'.$val['id'].'|'.rawurlencode($label));
}
}
return implode(',',$output);
}
}
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_loaddbgroup.php']) {
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_loaddbgroup.php']);
}
?>
|