0byt3m1n1
Path:
/
data
/
applications
/
aps
/
typo3
/
4.5.5-0
/
standard
/
htdocs
/
t3lib
/
[
Home
]
File: class.t3lib_recordlist.php
<?php /*************************************************************** * Copyright notice * * (c) 1999-2011 Kasper Skårhøj (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! ***************************************************************/ /** * Library with a single function addElement that returns tablerows based on some input. * * $Id$ * Revised for TYPO3 3.6 July/2003 by Kasper Skårhøj * XHTML compliant * * @author Kasper Skårhøj <kasperYYYY@typo3.com> */ /** * [CLASS/FUNCTION INDEX of SCRIPT] * * * * 80: class t3lib_recordList * 123: function addElement($h,$icon,$data,$tdParams='',$lMargin='',$altLine='') * 198: function writeTop() * 206: function writeBottom() * 225: function fwd_rwd_nav($table='') * 258: function fwd_rwd_HTML($type,$pointer,$table='') * 284: function listURL($altId='') * 294: function CBfunctions() * 344: function initializeLanguages() * 411: function languageFlag($sys_language_uid) * * TOTAL FUNCTIONS: 9 * (This index is automatically created/updated by the extension "extdeveval") * */ /** * This class is the base for listing of database records and files in the modules Web>List and File>Filelist * * @author Kasper Skårhøj <kasperYYYY@typo3.com> * @package TYPO3 * @subpackage t3lib * @see typo3/db_list.php, typo3/file_list.php */ class t3lib_recordList { // Used in this class: var $iLimit = 10; // default Max items shown var $leftMargin = 0; // OBSOLETE - NOT USED ANYMORE. leftMargin var $showIcon = 1; var $no_noWrap = 0; var $oddColumnsTDParams = ''; // Deprecated since TYPO3 4.2, remove in 4.4. If set this is <td>-params for odd columns in addElement. Used with db_layout / pages section var $oddColumnsCssClass = ''; // If set this is <td> CSS-classname for odd columns in addElement. Used with db_layout / pages section var $backPath = ''; 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. var $addElement_tdParams = array(); // Keys are fieldnames and values are td-parameters to add in addElement(), please use $addElement_tdCSSClass for CSS-classes; var $addElement_tdCssClass = array(); // Keys are fieldnames and values are td-css-classes to add in addElement(); // Not used in this class - but maybe extension classes... var $fixedL = 30; // Max length of strings var $script = ''; var $thumbScript = 'thumbs.php'; var $setLMargin = 1; // Set to zero, if you don't want a left-margin with addElement function var $counter = 0; // Counter increased for each element. Used to index elements for the JavaScript-code that transfers to the clipboard var $totalItems = ''; // This could be set to the total number of items. Used by the fwd_rew_navigation... // Internal (used in this class.) var $firstElementNumber = 0; var $eCounter = 0; var $HTMLcode = ''; // String with accumulated HTML content var $pageOverlays = array(); // Contains page translation languages var $languageIconTitles = array(); // Contains sys language icons and titles var $translateTools; // translateTools object /** * constructor for t3lib_recordList * * @author Ingo Renner <ingo@typo3.org> */ public function __construct() { if (isset($GLOBALS['BE_USER']->uc['titleLen']) && $GLOBALS['BE_USER']->uc['titleLen'] > 0) { $this->fixedL = $GLOBALS['BE_USER']->uc['titleLen']; } $this->getTranslateTools(); } /** * Returns a table-row with the content from the fields in the input data array. * OBS: $this->fieldArray MUST be set! (represents the list of fields to display) * * @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' * @param string $icon is the <img>+<a> of the record. If not supplied the first 'join'-icon will be a 'line' instead * @param array $data is the dataarray, record with the fields. Notice: These fields are (currently) NOT htmlspecialchar'ed before being wrapped in <td>-tags * @param string $tdParams is insert in the <td>-tags. Must carry a ' ' as first character * @param integer OBSOLETE - NOT USED ANYMORE. $lMargin is the leftMargin (integer) * @param string $altLine is the HTML <img>-tag for an alternative 'gfx/ol/line.gif'-icon (used in the top) * @return string HTML content for the table row */ function addElement($h, $icon, $data, $trParams = '', $lMargin = '', $altLine = '') { $noWrap = ($this->no_noWrap) ? '' : ' nowrap="nowrap"'; // Start up: $out = ' <!-- Element, begin: --> <tr ' . $trParams . '>'; // Show icon and lines if ($this->showIcon) { $out .= ' <td nowrap="nowrap" class="col-icon">'; if (!$h) { $out .= '<img src="clear.gif" width="1" height="8" alt="" />'; } else { for ($a = 0; $a < $h; $a++) { if (!$a) { if ($icon) { $out .= $icon; } } else { } } } $out .= '</td> '; } // Init rendering. $colsp = ''; $lastKey = ''; $c = 0; $ccount = 0; // Traverse field array which contains the data to present: foreach ($this->fieldArray as $vKey) { if (isset($data[$vKey])) { if ($lastKey) { $cssClass = $this->addElement_tdCssClass[$lastKey]; if ($this->oddColumnsCssClass && $ccount % 2 == 0) { $cssClass = implode(' ', array($this->addElement_tdCssClass[$lastKey], $this->oddColumnsCssClass)); } $out .= ' <td' . $noWrap . ' class="' . $cssClass . '"' . $colsp . $this->addElement_tdParams[$lastKey] . '>' . $data[$lastKey] . '</td>'; } $lastKey = $vKey; $c = 1; $ccount++; } else { if (!$lastKey) { $lastKey = $vKey; } $c++; } if ($c > 1) { $colsp = ' colspan="' . $c . '"'; } else { $colsp = ''; } } if ($lastKey) { $cssClass = $this->addElement_tdCssClass[$lastKey]; if ($this->oddColumnsCssClass) { $cssClass = implode(' ', array($this->addElement_tdCssClass[$lastKey], $this->oddColumnsCssClass)); } $out .= ' <td' . $noWrap . ' class="' . $cssClass . '"' . $colsp . $this->addElement_tdParams[$lastKey] . '>' . $data[$lastKey] . '</td>'; } // End row $out .= ' </tr>'; // Return row. return $out; } /** * Dummy function, used to write the top of a table listing. * * @return void */ function writeTop() { } /** * Finishes the list with the "stopper"-gif, adding the HTML code for that item to the internal ->HTMLcode string * * @return void */ function writeBottom() { $this->HTMLcode .= ' <!-- End of list table: --> <table border="0" cellpadding="0" cellspacing="0">'; $theIcon = '<img' . t3lib_iconWorks::skinImg($this->backPath, 'gfx/ol/stopper.gif', 'width="18" height="16"') . ' alt="" />'; $this->HTMLcode .= $this->addElement(1, '', '', '', $this->leftMargin, $theIcon); $this->HTMLcode .= ' </table>'; } /** * Creates a forward/reverse button based on the status of ->eCounter, ->firstElementNumber, ->iLimit * * @param string Table name * @return array array([boolean], [HTML]) where [boolean] is 1 for reverse element, [HTML] is the table-row code for the element */ function fwd_rwd_nav($table = '') { $code = ''; if ($this->eCounter >= $this->firstElementNumber && $this->eCounter < $this->firstElementNumber + $this->iLimit) { if ($this->firstElementNumber && $this->eCounter == $this->firstElementNumber) { // reverse $theData = Array(); $titleCol = $this->fieldArray[0]; $theData[$titleCol] = $this->fwd_rwd_HTML('fwd', $this->eCounter, $table); $code = $this->addElement(1, '', $theData, 'class="fwd_rwd_nav"'); } return array(1, $code); } else { if ($this->eCounter == $this->firstElementNumber + $this->iLimit) { // forward $theData = Array(); $titleCol = $this->fieldArray[0]; $theData[$titleCol] = $this->fwd_rwd_HTML('rwd', $this->eCounter, $table); $code = $this->addElement(1, '', $theData, 'class="fwd_rwd_nav"'); } return array(0, $code); } } /** * Creates the button with link to either forward or reverse * * @param string Type: "fwd" or "rwd" * @param integer Pointer * @param string Table name * @return string * @access private */ function fwd_rwd_HTML($type, $pointer, $table = '') { $content = ''; $tParam = $table ? '&table=' . rawurlencode($table) : ''; switch ($type) { case 'fwd': $href = $this->listURL() . '&pointer=' . ($pointer - $this->iLimit) . $tParam; $content = '<a href="' . htmlspecialchars($href) . '">' . t3lib_iconWorks::getSpriteIcon('actions-move-up') . '</a> <i>[1 - ' . $pointer . ']</i>'; break; case 'rwd': $href = $this->listURL() . '&pointer=' . $pointer . $tParam; $content = '<a href="' . htmlspecialchars($href) . '">' . t3lib_iconWorks::getSpriteIcon('actions-move-down') . '</a> <i>[' . ($pointer + 1) . ' - ' . $this->totalItems . ']</i>'; break; } return $content; } /** * Creates the URL to this script, including all relevant GPvars * * @param string Alternative id value. Enter blank string for the current id ($this->id) * @return string URL */ function listURL($altId = '') { return $this->script . '?id=' . (strcmp($altId, '') ? $altId : $this->id); } /** * Returning JavaScript for ClipBoard functionality. * * @return string */ function CBfunctions() { return ' // checkOffCB() function checkOffCB(listOfCBnames, link) { // var checkBoxes, flag, i; var checkBoxes = listOfCBnames.split(","); if (link.rel === "") { link.rel = "allChecked"; flag = true; } else { link.rel = ""; flag = false; } for (i = 0; i < checkBoxes.length; i++) { setcbValue(checkBoxes[i], flag); } } // cbValue() function cbValue(CBname) { // var CBfullName = "CBC["+CBname+"]"; return (document.dblistForm[CBfullName] && document.dblistForm[CBfullName].checked ? 1 : 0); } // setcbValue() function setcbValue(CBname,flag) { // CBfullName = "CBC["+CBname+"]"; if(document.dblistForm[CBfullName]) { document.dblistForm[CBfullName].checked = flag ? "on" : 0; } } '; } /** * Initializes page languages and icons * * @return void */ function initializeLanguages() { global $TCA, $LANG; // Look up page overlays: $this->pageOverlays = $GLOBALS['TYPO3_DB']->exec_SELECTgetRows( '*', 'pages_language_overlay', 'pid=' . intval($this->id) . t3lib_BEfunc::deleteClause('pages_language_overlay') . t3lib_BEfunc::versioningPlaceholderClause('pages_language_overlay'), '', '', '', 'sys_language_uid' ); $this->languageIconTitles = $this->getTranslateTools()->getSystemLanguages($this->id, $this->backPath); } /** * Return the icon for the language * * @param integer Sys language uid * @return string Language icon */ function languageFlag($sys_language_uid) { $out = ''; if ($this->languageIconTitles[$sys_language_uid]['flagIcon']) { $out .= t3lib_iconWorks::getSpriteIcon($this->languageIconTitles[$sys_language_uid]['flagIcon']); $out .= ' '; } $out .= htmlspecialchars($this->languageIconTitles[$sys_language_uid]['title']); return $out; } /** * Gets an instance of t3lib_transl8tools. * * @return t3lib_transl8tools */ protected function getTranslateTools() { if (!isset($this->translateTools)) { $this->translateTools = t3lib_div::makeInstance('t3lib_transl8tools'); } return $this->translateTools; } } if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_recordlist.php'])) { include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_recordlist.php']); } ?>