2 /***************************************************************
5 * (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Library with a single function addElement that returns tablerows based on some input.
31 * Revised for TYPO3 3.6 July/2003 by Kasper Skaarhoj
34 * @author Kasper Skaarhoj <kasper@typo3.com>
37 * [CLASS/FUNCTION INDEX of SCRIPT]
41 * 78: class t3lib_recordList
42 * 119: function addElement($h,$icon,$data,$tdParams='',$lMargin='',$altLine='')
43 * 193: function writeTop()
44 * 201: function writeBottom()
45 * 220: function fwd_rwd_nav($table='')
46 * 253: function fwd_rwd_HTML($type,$pointer,$table='')
47 * 276: function listURL()
48 * 285: function CBfunctions()
51 * (This index is automatically created/updated by the extension "extdeveval")
71 * This class is the base for listing of database records and files in the modules Web>List and File>Filelist
73 * @author Kasper Skaarhoj <kasper@typo3.com>
76 * @see typo3/db_list.php, typo3/file_list.php
78 class t3lib_recordList
{
80 // Used in this class:
81 var $iLimit = 10; // default Max items shown
82 var $leftMargin = 0; // OBSOLETE - NOT USED ANYMORE. leftMargin
85 var $oddColumnsTDParams =''; // If set this is <td>-params for odd columns in addElement. Used with db_layout / pages section
87 var $fieldArray = Array(); // Decides the columns shown. Filled with values that refers to the keys of the data-array. $this->fieldArray[0] is the title column.
88 var $addElement_tdParams=array(); // Keys are fieldnames and values are td-parameters to add in addElement();
90 // Not used in this class - but maybe extension classes...
91 var $fixedL = 50; // Max length of strings
93 var $thumbScript = 'thumbs.php';
94 var $setLMargin=1; // Set to zero, if you don't want a left-margin with addElement function
96 var $counter=0; // Counter increased for each element. Used to index elements for the JavaScript-code that transfers to the clipboard
97 var $totalItems = ''; // This could be set to the total number of items. Used by the fwd_rew_navigation...
99 // Internal (used in this class.)
100 var $firstElementNumber=0;
102 var $HTMLcode=''; // String with accumulated HTML content
108 * Returns a table-row with the content from the fields in the input data array.
109 * OBS: $this->fieldArray MUST be set! (represents the list of fields to display)
111 * @param integer $h is an integer >=0 and denotes how tall a element is. Set to '0' makes a halv line, -1 = full line, set to 1 makes a 'join' and above makes 'line'
112 * @param string $icon is the <img>+<a> of the record. If not supplied the first 'join'-icon will be a 'line' instead
113 * @param array $data is the dataarray, record with the fields. Notice: These fields are (currently) NOT htmlspecialchar'ed before being wrapped in <td>-tags
114 * @param string $tdParams is insert in the <td>-tags. Must carry a ' ' as first character
115 * @param integer OBSOLETE - NOT USED ANYMORE. $lMargin is the leftMargin (integer)
116 * @param string $altLine is the HTML <img>-tag for an alternative 'gfx/ol/line.gif'-icon (used in the top)
117 * @return string HTML content for the table row
119 function addElement($h,$icon,$data,$tdParams='',$lMargin='',$altLine='') {
120 $noWrap = ($this->no_noWrap
) ?
'' : ' nowrap="nowrap"';
124 <!-- Element, begin: -->
126 // Show icon and lines
127 if ($this->showIcon
) {
129 <td nowrap="nowrap"'.$tdParams.'>';
132 $out.='<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/ol/halfline.gif','width="18" height="8"').' alt="" />';
134 for ($a=0;$a<$h;$a++
) {
136 $out.= $altLine ?
$altLine : '<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/ol/line.gif','width="18" height="16"').' alt="" />';
137 if ($icon) $out.= $icon;
139 $out.= $altLine ?
$altLine :'<br /><img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/ol/line.gif','width="18" height="16"').' alt="" />';
152 $tdP[0]= $this->oddColumnsTDParams ?
$this->oddColumnsTDParams
: $tdParams;
155 // Traverse field array which contains the data to present:
156 reset($this->fieldArray
);
157 while(list(,$vKey)=each($this->fieldArray
)) {
158 if (isset($data[$vKey])) {
165 $this->addElement_tdParams
[$lastKey].
166 '>'.$data[$lastKey].'</td>';
172 if (!$lastKey) {$lastKey=$vKey;}
175 if ($c>1) {$colsp=' colspan="'.$c.'"';} else {$colsp='';}
177 if ($lastKey) { $out.='
178 <td'.$noWrap.$tdP[($ccount%2
)].$colsp.$this->addElement_tdParams
[$lastKey].'>'.$data[$lastKey].'</td>'; }
189 * Dummy function, used to write the top of a table listing.
193 function writeTop() {
197 * Finishes the list with the "stopper"-gif, adding the HTML code for that item to the internal ->HTMLcode string
201 function writeBottom() {
207 <table border="0" cellpadding="0" cellspacing="0">';
208 $theIcon='<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/ol/stopper.gif','width="18" height="16"').' alt="" />';
209 $this->HTMLcode
.=$this->addElement(1,'','','',$this->leftMargin
,$theIcon);
215 * Creates a forward/reverse button based on the status of ->eCounter, ->firstElementNumber, ->iLimit
217 * @param string Table name
218 * @return array array([boolean], [HTML]) where [boolean] is 1 for reverse element, [HTML] is the table-row code for the element
220 function fwd_rwd_nav($table='') {
222 if ($this->eCounter
>= $this->firstElementNumber
&& $this->eCounter
< $this->firstElementNumber+
$this->iLimit
) {
223 if ($this->firstElementNumber
&& $this->eCounter
==$this->firstElementNumber
) {
226 $titleCol=$this->fieldArray
[0];
227 $theData[$titleCol] = $this->fwd_rwd_HTML('fwd',$this->eCounter
,$table);
228 $code=$this->addElement(1,'',$theData);
230 return Array(1,$code);
232 if ($this->eCounter
==$this->firstElementNumber+
$this->iLimit
) {
235 $titleCol=$this->fieldArray
[0];
236 $theData[$titleCol] = $this->fwd_rwd_HTML('rwd',$this->eCounter
,$table);
237 $code=$this->addElement(1,'',$theData);
239 return Array(0,$code);
245 * Creates the button with link to either forward or reverse
247 * @param string Type: "fwd" or "rwd"
248 * @param integer Pointer
249 * @param string Table name
253 function fwd_rwd_HTML($type,$pointer,$table='') {
254 $tParam = $table ?
'&table='.rawurlencode($table) : '';
257 $href = $this->listURL().'&pointer='.($pointer-$this->iLimit
).$tParam;
258 return '<a href="'.htmlspecialchars($href).'">'.
259 '<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/pilup.gif','width="14" height="14"').' alt="" />'.
260 '</a> <i>[1 - '.$pointer.']</i>';
263 $href = $this->listURL().'&pointer='.$pointer.$tParam;
264 return '<a href="'.htmlspecialchars($href).'">'.
265 '<img'.t3lib_iconWorks
::skinImg($this->backPath
,'gfx/pildown.gif','width="14" height="14"').' alt="" />'.
266 '</a> <i>['.($pointer+
1).' - '.$this->totalItems
.']</i>';
272 * Returning "listURL" - the script with parameters to which forward/backward requests are sent
281 * Returning JavaScript for ClipBoard functionality.
285 function CBfunctions() {
288 function checkOffCB(listOfCBnames) { //
292 // Checking how many is checked, how many is not
294 var pos = listOfCBnames.indexOf(",");
296 if (!cbValue(listOfCBnames.substr(pointer,pos-pointer))) notChecked++;
299 pos = listOfCBnames.indexOf(",",pointer);
301 if (!cbValue(listOfCBnames.substr(pointer))) notChecked++;
304 // Setting the status...
305 var flag = notChecked*2>total;
307 pos = listOfCBnames.indexOf(",");
309 setcbValue(listOfCBnames.substr(pointer,pos-pointer),flag);
312 pos = listOfCBnames.indexOf(",",pointer);
314 setcbValue(listOfCBnames.substr(pointer),flag);
317 function cbValue(CBname) { //
318 var CBfullName = "CBC["+CBname+"]";
319 return (document.dblistForm[CBfullName] && document.dblistForm[CBfullName].checked ? 1 : 0);
322 function setcbValue(CBname,flag) { //
323 CBfullName = "CBC["+CBname+"]";
324 document.dblistForm[CBfullName].checked = flag ? "on" : 0;
332 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_recordlist.php']) {
333 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_recordlist.php']);