List module (db_list.php) * * Revised for TYPO3 3.6 December/2003 by Kasper Skårhøj * XHTML compliant * * @author Kasper Skårhøj */ /** * Class for rendering of Web>List module * * @author Kasper Skårhøj * @package TYPO3 * @subpackage core */ class localRecordList extends recordList { // External: var $alternateBgColors=FALSE; // If TRUE, table rows in the list will alternate in background colors (and have background colors at all!) var $allowedNewTables=array(); // Used to indicate which tables (values in the array) that can have a create-new-record link. If the array is empty, all tables are allowed. var $deniedNewTables=array(); // Used to indicate which tables (values in the array) that cannot have a create-new-record link. If the array is empty, all tables are allowed. var $newWizards=FALSE; // If TRUE, the control panel will contain links to the create-new wizards for pages and tt_content elements (normally, the link goes to just creating a new element without the wizards!). var $dontShowClipControlPanels=FALSE; // If TRUE, will disable the rendering of clipboard + control panels. var $showClipboard=FALSE; // If TRUE, will show the clipboard in the field list. var $noControlPanels = FALSE; // If TRUE, will DISABLE all control panels in lists. (Takes precedence) var $clickMenuEnabled = TRUE; // If TRUE, clickmenus will be rendered var $totalRowCount; // count of record rows in view var $spaceIcon; // space icon used for alignment // Internal: var $pageRow=array(); // Set to the page record (see writeTop()) // Used to accumulate CSV lines for CSV export. protected $csvLines = array(); var $csvOutput=FALSE; // If set, the listing is returned as CSV instead. /** * Clipboard object * * @var t3lib_clipboard */ var $clipObj; var $CBnames=array(); // Tracking names of elements (for clipboard use) var $duplicateStack=array(); // Used to track which elements has duplicates and how many /** * [$tablename][$uid] = number of references to this record * * @var array */ protected $referenceCount = array(); var $translations; // Translations of the current record var $selFieldList; // select fields for the query which fetches the translations of the current record public function __construct() { parent::__construct(); } /** * Create the panel of buttons for submitting the form or otherwise perform operations. * * @return array all available buttons as an assoc. array */ public function getButtons() { $buttons = array( 'csh' => '', 'view' => '', 'edit' => '', 'hide_unhide' => '', 'move' => '', 'new_record' => '', 'paste' => '', 'level_up' => '', 'cache' => '', 'reload' => '', 'shortcut' => '', 'back' => '', 'csv' => '', 'export' => '' ); // Get users permissions for this page record: $localCalcPerms = $GLOBALS['BE_USER']->calcPerms($this->pageRow); // CSH if (!strlen($this->id)) { $buttons['csh'] = t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'list_module_noId', $GLOBALS['BACK_PATH'], '', TRUE); } elseif(!$this->id) { $buttons['csh'] = t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'list_module_root', $GLOBALS['BACK_PATH'], '', TRUE); } else { $buttons['csh'] = t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'list_module', $GLOBALS['BACK_PATH'], '', TRUE); } if (isset($this->id)) { // View Exclude doktypes 254,255 Configuration: mod.web_list.noViewWithDokTypes = 254,255 if (isset($GLOBALS['SOBE']->modTSconfig['properties']['noViewWithDokTypes'])) { $noViewDokTypes = t3lib_div::trimExplode(',', $GLOBALS['SOBE']->modTSconfig['properties']['noViewWithDokTypes'], TRUE); } else { //default exclusion: doktype 254 (folder), 255 (recycler) $noViewDokTypes = array(t3lib_pageSelect::DOKTYPE_SYSFOLDER, t3lib_pageSelect::DOKTYPE_RECYCLER); } if (!in_array($this->pageRow['doktype'], $noViewDokTypes)) { $buttons['view'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-view') . ''; } // New record if (!$GLOBALS['SOBE']->modTSconfig['properties']['noCreateRecordsLink']) { $buttons['new_record'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-new') . ''; } // If edit permissions are set (see class.t3lib_userauthgroup.php) if ($localCalcPerms&2 && !empty($this->id)) { // Edit $params = '&edit[pages][' . $this->pageRow['uid'] . ']=edit'; $buttons['edit'] = '' . t3lib_iconWorks::getSpriteIcon('actions-page-open') . ''; // Unhide if ($this->pageRow['hidden']) { $params = '&data[pages][' . $this->pageRow['uid'] . '][hidden]=0'; $buttons['hide_unhide'] = '' . t3lib_iconWorks::getSpriteIcon('actions-edit-unhide') . ''; // Hide } else { $params = '&data[pages][' . $this->pageRow['uid'] . '][hidden]=1'; $buttons['hide_unhide'] = ''. t3lib_iconWorks::getSpriteIcon('actions-edit-hide') . ''; } // Move $buttons['move'] = '' . (($this->table == 'tt_content') ? t3lib_iconWorks::getSpriteIcon('actions-document-move') : t3lib_iconWorks::getSpriteIcon('actions-page-move')) . ''; // Up one level $buttons['level_up'] = '' . t3lib_iconWorks::getSpriteIcon('actions-view-go-up') . ''; } // Paste if (($localCalcPerms&8) || ($localCalcPerms&16)) { $elFromTable = $this->clipObj->elFromTable(''); if (count($elFromTable)) { $buttons['paste'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-paste-after') . ''; } } // Cache $buttons['cache'] = '' . t3lib_iconWorks::getSpriteIcon('actions-system-cache-clear') . ''; if ($this->table) { // CSV $buttons['csv'] = '' . t3lib_iconWorks::getSpriteIcon('mimetypes-text-csv') . ''; // Export if (t3lib_extMgm::isLoaded('impexp')) { $url = $this->backPath . t3lib_extMgm::extRelPath('impexp') . 'app/index.php?tx_impexp[action]=export'; $buttons['export'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-export-t3d') . ''; } } // Reload $buttons['reload'] = '' . t3lib_iconWorks::getSpriteIcon('actions-system-refresh') . ''; // Shortcut if ($GLOBALS['BE_USER']->mayMakeShortcut()) { $buttons['shortcut'] = $GLOBALS['TBE_TEMPLATE']->makeShortcutIcon('id, imagemode, pointer, table, search_field, search_levels, showLimit, sortField, sortRev', implode(',', array_keys($this->MOD_MENU)), 'web_list'); } // Back if ($this->returnUrl) { $buttons['back'] = '' . t3lib_iconWorks::getSpriteIcon('actions-view-go-back') . ''; } } return $buttons; } /** * Creates the listing of records from a single table * * @param string Table name * @param integer Page id * @param string List of fields to show in the listing. Pseudo fields will be added including the record header. * @return string HTML table with the listing for the record. */ function getTable($table,$id,$rowlist) { // Loading all TCA details for this table: t3lib_div::loadTCA($table); // Init $addWhere = ''; $titleCol = $GLOBALS['TCA'][$table]['ctrl']['label']; $thumbsCol = $GLOBALS['TCA'][$table]['ctrl']['thumbnail']; $l10nEnabled = $GLOBALS['TCA'][$table]['ctrl']['languageField'] && $GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField'] && !$GLOBALS['TCA'][$table]['ctrl']['transOrigPointerTable']; $tableCollapsed = (!$this->tablesCollapsed[$table]) ? FALSE : TRUE; // prepare space icon $this->spaceIcon = t3lib_iconWorks::getSpriteIcon('empty-empty', array('style' => 'background-position: 0 10px;')); // Cleaning rowlist for duplicates and place the $titleCol as the first column always! $this->fieldArray=array(); // title Column $this->fieldArray[] = $titleCol; // Add title column // Control-Panel if (!t3lib_div::inList($rowlist,'_CONTROL_')) { $this->fieldArray[] = '_CONTROL_'; $this->fieldArray[] = '_AFTERCONTROL_'; } // Clipboard if ($this->showClipboard) { $this->fieldArray[] = '_CLIPBOARD_'; } // Ref if (!$this->dontShowClipControlPanels) { $this->fieldArray[]='_REF_'; $this->fieldArray[]='_AFTERREF_'; } // Path if ($this->searchLevels) { $this->fieldArray[]='_PATH_'; } // Localization if ($this->localizationView && $l10nEnabled) { $this->fieldArray[] = '_LOCALIZATION_'; $this->fieldArray[] = '_LOCALIZATION_b'; $addWhere.=' AND ( ' . $GLOBALS['TCA'][$table]['ctrl']['languageField'] . '<=0 OR ' . $GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField'] . ' = 0 )'; } // Cleaning up: $this->fieldArray=array_unique(array_merge($this->fieldArray,t3lib_div::trimExplode(',',$rowlist,1))); if ($this->noControlPanels) { $tempArray = array_flip($this->fieldArray); unset($tempArray['_CONTROL_']); unset($tempArray['_CLIPBOARD_']); $this->fieldArray = array_keys($tempArray); } // Creating the list of fields to include in the SQL query: $selectFields = $this->fieldArray; $selectFields[] = 'uid'; $selectFields[] = 'pid'; if ($thumbsCol) $selectFields[] = $thumbsCol; // adding column for thumbnails if ($table=='pages') { if (t3lib_extMgm::isLoaded('cms')) { $selectFields[] = 'module'; $selectFields[] = 'extendToSubpages'; $selectFields[] = 'nav_hide'; } $selectFields[] = 'doktype'; } if (is_array($GLOBALS['TCA'][$table]['ctrl']['enablecolumns'])) { $selectFields = array_merge($selectFields, $GLOBALS['TCA'][$table]['ctrl']['enablecolumns']); } if ($GLOBALS['TCA'][$table]['ctrl']['type']) { $selectFields[] = $GLOBALS['TCA'][$table]['ctrl']['type']; } if ($GLOBALS['TCA'][$table]['ctrl']['typeicon_column']) { $selectFields[] = $GLOBALS['TCA'][$table]['ctrl']['typeicon_column']; } if ($GLOBALS['TCA'][$table]['ctrl']['versioningWS']) { $selectFields[] = 't3ver_id'; $selectFields[] = 't3ver_state'; $selectFields[] = 't3ver_wsid'; $selectFields[] = 't3ver_swapmode'; // Filtered out when pages in makeFieldList() } if ($l10nEnabled) { $selectFields[] = $GLOBALS['TCA'][$table]['ctrl']['languageField']; $selectFields[] = $GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField']; } if ($GLOBALS['TCA'][$table]['ctrl']['label_alt']) { $selectFields = array_merge( $selectFields, t3lib_div::trimExplode(',', $GLOBALS['TCA'][$table]['ctrl']['label_alt'], 1) ); } $selectFields = array_unique($selectFields); // Unique list! $selectFields = array_intersect($selectFields,$this->makeFieldList($table,1)); // Making sure that the fields in the field-list ARE in the field-list from TCA! $selFieldList = implode(',',$selectFields); // implode it into a list of fields for the SQL-statement. $this->selFieldList = $selFieldList; /** * @hook DB-List getTable * @date 2007-11-16 * @request Malte Jansen */ if(is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['getTable'])) { foreach($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['getTable'] as $classData) { $hookObject = t3lib_div::getUserObj($classData); if(!($hookObject instanceof t3lib_localRecordListGetTableHook)) { throw new UnexpectedValueException('$hookObject must implement interface t3lib_localRecordListGetTableHook', 1195114460); } $hookObject->getDBlistQuery($table, $id, $addWhere, $selFieldList, $this); } } // Create the SQL query for selecting the elements in the listing: if ($this->csvOutput) { // do not do paging when outputting as CSV $this->iLimit = 0; } if ($this->firstElementNumber > 2 && $this->iLimit > 0) { // Get the two previous rows for sorting if displaying page > 1 $this->firstElementNumber = $this->firstElementNumber - 2; $this->iLimit = $this->iLimit + 2; $queryParts = $this->makeQueryArray($table, $id,$addWhere,$selFieldList); // (API function from class.db_list.inc) $this->firstElementNumber = $this->firstElementNumber + 2; $this->iLimit = $this->iLimit - 2; } else { $queryParts = $this->makeQueryArray($table, $id,$addWhere,$selFieldList); // (API function from class.db_list.inc) } $this->setTotalItems($queryParts); // Finding the total amount of records on the page (API function from class.db_list.inc) // Init: $dbCount = 0; $out = ''; $listOnlyInSingleTableMode = $this->listOnlyInSingleTableMode && !$this->table; // If the count query returned any number of records, we perform the real query, selecting records. if ($this->totalItems) { // Fetch records only if not in single table mode or if in multi table mode and not collapsed if ($listOnlyInSingleTableMode || (!$this->table && $tableCollapsed)) { $dbCount = $this->totalItems; } else { // set the showLimit to the number of records when outputting as CSV if ($this->csvOutput) { $this->showLimit = $this->totalItems; $this->iLimit = $this->totalItems; } $result = $GLOBALS['TYPO3_DB']->exec_SELECT_queryArray($queryParts); $dbCount = $GLOBALS['TYPO3_DB']->sql_num_rows($result); } } // If any records was selected, render the list: if ($dbCount) { // Half line is drawn between tables: if (!$listOnlyInSingleTableMode) { $theData = Array(); if (!$this->table && !$rowlist) { $theData[$titleCol] = ''; if (in_array('_CONTROL_',$this->fieldArray)) $theData['_CONTROL_']=''; if (in_array('_CLIPBOARD_',$this->fieldArray)) $theData['_CLIPBOARD_']=''; } $out.=$this->addelement(0,'',$theData,'class="c-table-row-spacer"',$this->leftMargin); } // Header line is drawn $theData = Array(); if ($this->disableSingleTableView) { $theData[$titleCol] = '' . t3lib_BEfunc::wrapInHelp($table, '', $GLOBALS['LANG']->sL($GLOBALS['TCA'][$table]['ctrl']['title'], TRUE)) . ' ('.$this->totalItems.')'; } else { $theData[$titleCol] = $this->linkWrapTable($table, '' . $GLOBALS['LANG']->sL($GLOBALS['TCA'][$table]['ctrl']['title'], TRUE) . ' (' . $this->totalItems . ') ' . ($this->table ? t3lib_iconWorks::getSpriteIcon('actions-view-table-collapse', array('title' => $GLOBALS['LANG']->getLL('contractView', TRUE))) : t3lib_iconWorks::getSpriteIcon('actions-view-table-expand', array('title' => $GLOBALS['LANG']->getLL('expandView', TRUE)))) ); } if ($listOnlyInSingleTableMode) { $out.=' ' . t3lib_BEfunc::wrapInHelp($table, '', $theData[$titleCol]) . ' '; } else { // Render collapse button if in multi table mode $collapseIcon = ''; if (!$this->table) { $collapseIcon = '' . ($tableCollapsed ? t3lib_iconWorks::getSpriteIcon('actions-view-list-expand', array('class' => 'collapseIcon')) : t3lib_iconWorks::getSpriteIcon('actions-view-list-collapse', array('class' => 'collapseIcon'))) . ''; } $out .= $this->addElement(1, $collapseIcon, $theData, ' class="t3-row-header"', ''); } // Render table rows only if in multi table view and not collapsed or if in single table view if (!$listOnlyInSingleTableMode && (!$tableCollapsed || $this->table)) { // Fixing a order table for sortby tables $this->currentTable = array(); $currentIdList = array(); $doSort = ($GLOBALS['TCA'][$table]['ctrl']['sortby'] && !$this->sortField); $prevUid = 0; $prevPrevUid = 0; // Get first two rows and initialize prevPrevUid and prevUid if on page > 1 if ($this->firstElementNumber > 2 && $this->iLimit > 0) { $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($result); $prevPrevUid = -(int) $row['uid']; $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($result); $prevUid = $row['uid']; } $accRows = array(); // Accumulate rows here while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($result)) { // In offline workspace, look for alternative record: t3lib_BEfunc::workspaceOL($table, $row, $GLOBALS['BE_USER']->workspace, TRUE); if (is_array($row)) { $accRows[] = $row; $currentIdList[] = $row['uid']; if ($doSort) { if ($prevUid) { $this->currentTable['prev'][$row['uid']] = $prevPrevUid; $this->currentTable['next'][$prevUid] = '-'.$row['uid']; $this->currentTable['prevUid'][$row['uid']] = $prevUid; } $prevPrevUid = isset($this->currentTable['prev'][$row['uid']]) ? -$prevUid : $row['pid']; $prevUid=$row['uid']; } } } $GLOBALS['TYPO3_DB']->sql_free_result($result); $this->totalRowCount = count($accRows); // CSV initiated if ($this->csvOutput) $this->initCSV(); // Render items: $this->CBnames=array(); $this->duplicateStack=array(); $this->eCounter=$this->firstElementNumber; $iOut = ''; $cc = 0; foreach($accRows as $row) { // Render item row if counter < limit if ($cc < $this->iLimit) { $cc++; $this->translations = FALSE; $iOut.= $this->renderListRow($table,$row,$cc,$titleCol,$thumbsCol); // If localization view is enabled it means that the selected records are either default or All language and here we will not select translations which point to the main record: if ($this->localizationView && $l10nEnabled) { // For each available translation, render the record: if (is_array($this->translations)) { foreach ($this->translations as $lRow) { // $lRow isn't always what we want - if record was moved we've to work with the placeholder records otherwise the list is messed up a bit if ($row['_MOVE_PLH_uid'] && $row['_MOVE_PLH_pid']) { $tmpRow = t3lib_BEfunc::getRecordRaw($table, 't3ver_move_id="'.intval($lRow['uid']) . '" AND pid="' . $row['_MOVE_PLH_pid'] . '" AND t3ver_wsid=' . $row['t3ver_wsid'] . t3lib_beFunc::deleteClause($table), $selFieldList); $lRow = is_array($tmpRow)?$tmpRow:$lRow; } // In offline workspace, look for alternative record: t3lib_BEfunc::workspaceOL($table, $lRow, $GLOBALS['BE_USER']->workspace, TRUE); if (is_array($lRow) && $GLOBALS['BE_USER']->checkLanguageAccess($lRow[$GLOBALS['TCA'][$table]['ctrl']['languageField']])) { $currentIdList[] = $lRow['uid']; $iOut.=$this->renderListRow($table,$lRow,$cc,$titleCol,$thumbsCol,18); } } } } } // Counter of total rows incremented: $this->eCounter++; } // Record navigation is added to the beginning and end of the table if in single table mode if ($this->table) { $iOut = $this->renderListNavigation('top') . $iOut . $this->renderListNavigation('bottom'); } else { // show that there are more records than shown if ($this->totalItems > $this->itemsLimitPerTable) { $countOnFirstPage = $this->totalItems > $this->itemsLimitSingleTable ? $this->itemsLimitSingleTable : $this->totalItems; $hasMore = ($this->totalItems > $this->itemsLimitSingleTable); $iOut .= ' ' . 'backPath,'gfx/pildown.gif', 'width="14" height="14"') .' alt="" />'. ' [1 - ' . $countOnFirstPage . ($hasMore ? '+' : '') . '] '; } } // The header row for the table is now created: $out .= $this->renderListHeader($table,$currentIdList); } // The list of records is added after the header: $out .= $iOut; unset($iOut); // ... and it is all wrapped in a table: $out=' '.$out.'
'; // Output csv if... if ($this->csvOutput) $this->outputCSV($table); // This ends the page with exit. } // Return content: return $out; } /** * Rendering a single row for the list * * @param string Table name * @param array Current record * @param integer Counter, counting for each time an element is rendered (used for alternating colors) * @param string Table field (column) where header value is found * @param string Table field (column) where (possible) thumbnails can be found * @param integer Indent from left. * @return string Table row for the element * @access private * @see getTable() */ function renderListRow($table,$row,$cc,$titleCol,$thumbsCol,$indent=0) { $iOut = ''; if (strlen($this->searchString)) { // If in search mode, make sure the preview will show the correct page $id_orig = $this->id; $this->id = $row['pid']; } if (is_array($row)) { // add special classes for first and last row $rowSpecial = ''; if ($cc == 1 && $indent == 0) { $rowSpecial .= ' firstcol'; } if ($cc == $this->totalRowCount || $cc == $this->iLimit) { $rowSpecial .= ' lastcol'; } // Background color, if any: if ($this->alternateBgColors) { $row_bgColor = ($cc%2) ? ' class="db_list_normal'.$rowSpecial.'"' : ' class="db_list_alt'.$rowSpecial.'"'; } else { $row_bgColor = ' class="db_list_normal'.$rowSpecial.'"'; } // Overriding with versions background color if any: $row_bgColor = $row['_CSSCLASS'] ? ' class="'.$row['_CSSCLASS'].'"' : $row_bgColor; // Incr. counter. $this->counter++; // The icon with link $alttext = t3lib_BEfunc::getRecordIconAltText($row,$table); $iconImg = t3lib_iconWorks::getSpriteIconForRecord($table, $row, array('title' => htmlspecialchars($alttext), 'style' => ($indent ? ' margin-left: ' . $indent . 'px;' : ''))); $theIcon = $this->clickMenuEnabled ? $GLOBALS['SOBE']->doc->wrapClickMenuOnIcon($iconImg,$table,$row['uid']) : $iconImg; // Preparing and getting the data-array $theData = Array(); foreach($this->fieldArray as $fCol) { if ($fCol==$titleCol) { $recTitle = t3lib_BEfunc::getRecordTitle($table,$row,FALSE,TRUE); // If the record is edit-locked by another user, we will show a little warning sign: if (($lockInfo = t3lib_BEfunc::isRecordLocked($table, $row['uid']))) { $warning = '' . t3lib_iconWorks::getSpriteIcon('status-warning-in-use') . ''; } $theData[$fCol] = $warning . $this->linkWrapItems($table, $row['uid'], $recTitle, $row); // Render thumbsnails if a thumbnail column exists and there is content in it: if ($this->thumbs && trim($row[$thumbsCol])) { $theData[$fCol] .= '
' . $this->thumbCode($row,$table,$thumbsCol); } $localizationMarkerClass = ''; if (isset($GLOBALS['TCA'][$table]['ctrl']['languageField']) && $row[$GLOBALS['TCA'][$table]['ctrl']['languageField']] != 0 && $row[$GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField']] != 0) { // it's a translated record with a language parent $localizationMarkerClass = ' localization'; } } elseif ($fCol == 'pid') { $theData[$fCol]=$row[$fCol]; } elseif ($fCol == '_PATH_') { $theData[$fCol]=$this->recPath($row['pid']); } elseif ($fCol == '_REF_') { $theData[$fCol] = $this->createReferenceHtml($table, $row['uid']); } elseif ($fCol == '_CONTROL_') { $theData[$fCol]=$this->makeControl($table,$row); } elseif ($fCol == '_AFTERCONTROL_' || $fCol == '_AFTERREF_') { $theData[$fCol] = ' '; } elseif ($fCol == '_CLIPBOARD_') { $theData[$fCol]=$this->makeClip($table,$row); } elseif ($fCol == '_LOCALIZATION_') { list($lC1, $lC2) = $this->makeLocalizationPanel($table,$row); $theData[$fCol] = $lC1; $theData[$fCol.'b'] = $lC2; } elseif ($fCol == '_LOCALIZATION_b') { // Do nothing, has been done above. } else { $tmpProc = t3lib_BEfunc::getProcessedValueExtra($table, $fCol, $row[$fCol], 100, $row['uid']); $theData[$fCol] = $this->linkUrlMail(htmlspecialchars($tmpProc), $row[$fCol]); if ($this->csvOutput) { $row[$fCol] = t3lib_BEfunc::getProcessedValueExtra($table, $fCol, $row[$fCol], 0, $row['uid']); } } } if (strlen($this->searchString)) { // Reset the ID if it was overwritten $this->id = $id_orig; } // Add row to CSV list: if ($this->csvOutput) { $this->addToCSV($row,$table); } // Add classes to table cells $this->addElement_tdCssClass[$titleCol] = 'col-title' . $localizationMarkerClass; if (!$this->dontShowClipControlPanels) { $this->addElement_tdCssClass['_CONTROL_'] = 'col-control'; $this->addElement_tdCssClass['_AFTERCONTROL_'] = 'col-control-space'; $this->addElement_tdCssClass['_CLIPBOARD_'] = 'col-clipboard'; } $this->addElement_tdCssClass['_PATH_'] = 'col-path'; $this->addElement_tdCssClass['_LOCALIZATION_'] = 'col-localizationa'; $this->addElement_tdCssClass['_LOCALIZATION_b'] = 'col-localizationb'; // Create element in table cells: $iOut.=$this->addelement(1,$theIcon,$theData,$row_bgColor); // Finally, return table row element: return $iOut; } } /** * Gets the number of records referencing the record with the UID $uid in * the table $tableName. * * @param string $tableName * table name of the referenced record, must not be empty * @param integer $uid * UID of the referenced record, must be > 0 * * @return integer the number of references to record $uid in table * $tableName, will be >= 0 */ protected function getReferenceCount($tableName, $uid) { if (!isset($this->referenceCount[$tableName][$uid])) { $numberOfReferences = $GLOBALS['TYPO3_DB']->exec_SELECTcountRows( '*', 'sys_refindex', 'ref_table = ' . $GLOBALS['TYPO3_DB']->fullQuoteStr( $tableName, 'sys_refindex' ) . ' AND ref_uid = ' . $uid . ' AND deleted = 0' ); $this->referenceCount[$tableName][$uid] = $numberOfReferences; } return $this->referenceCount[$tableName][$uid]; } /** * Rendering the header row for a table * * @param string Table name * @param array Array of the currently displayed uids of the table * @return string Header table row * @access private * @see getTable() */ function renderListHeader($table, $currentIdList) { // Init: $theData = Array(); // Traverse the fields: foreach($this->fieldArray as $fCol) { // Calculate users permissions to edit records in the table: $permsEdit = $this->calcPerms & ($table=='pages'?2:16); switch((string)$fCol) { case '_PATH_': // Path $theData[$fCol] = '[' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels._PATH_', 1) . ']'; break; case '_REF_': // References $theData[$fCol] = '[' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:c__REF_', 1) . ']'; break; case '_LOCALIZATION_': // Path $theData[$fCol] = '[' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels._LOCALIZATION_', 1) . ']'; break; case '_LOCALIZATION_b': // Path $theData[$fCol] = $GLOBALS['LANG']->getLL('Localize', 1); break; case '_CLIPBOARD_': // Clipboard: $cells=array(); // If there are elements on the clipboard for this table, then display the "paste into" icon: $elFromTable = $this->clipObj->elFromTable($table); if (count($elFromTable)) { $cells['pasteAfter'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-paste-after') . ''; } // If the numeric clipboard pads are enabled, display the control icons for that: if ($this->clipObj->current!='normal') { // The "select" link: $cells['copyMarked'] = $this->linkClipboardHeaderIcon( t3lib_iconWorks::getSpriteIcon( 'actions-edit-copy', array('title' => $GLOBALS['LANG']->getLL('clip_selectMarked', TRUE)) ), $table, 'setCB'); // The "edit marked" link: $editIdList = implode(',',$currentIdList); $editIdList = "'+editList('".$table."','".$editIdList."')+'"; $params='&edit['.$table.']['.$editIdList.']=edit&disHelp=1'; $cells['edit'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-open') . ''; // The "Delete marked" link: $cells['delete'] = $this->linkClipboardHeaderIcon( t3lib_iconWorks::getSpriteIcon( 'actions-edit-delete', array('title' => $GLOBALS['LANG']->getLL('clip_deleteMarked', TRUE)) ), $table, 'delete', sprintf($GLOBALS['LANG']->getLL('clip_deleteMarkedWarning'), $GLOBALS['LANG']->sL($GLOBALS['TCA'][$table]['ctrl']['title'])) ); // The "Select all" link: $cells['markAll'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-select') . ''; } else { $cells['empty']=''; } /** * @hook renderListHeaderActions: Allows to change the clipboard icons of the Web>List table headers * @date 2007-11-20 * @request Bernhard Kraft * @usage Above each listed table in Web>List a header row is shown. This hook allows to modify the icons responsible for the clipboard functions (shown above the clipboard checkboxes when a clipboard other than "Normal" is selected), or other "Action" functions which perform operations on the listed records. */ if(is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'])) { foreach($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'] as $classData) { $hookObject = t3lib_div::getUserObj($classData); if(!($hookObject instanceof localRecordList_actionsHook)) { throw new UnexpectedValueException('$hookObject must implement interface localRecordList_actionsHook', 1195567850); } $cells = $hookObject->renderListHeaderActions($table, $currentIdList, $cells, $this); } } $theData[$fCol]=implode('',$cells); break; case '_CONTROL_': // Control panel: if (!$GLOBALS['TCA'][$table]['ctrl']['readOnly']) { // If new records can be created on this page, add links: if ($this->calcPerms&($table=='pages'?8:16) && $this->showNewRecLink($table)) { if ($table=="tt_content" && $this->newWizards) { // If mod.web_list.newContentWiz.overrideWithExtension is set, use that extension's create new content wizard instead: $tmpTSc = t3lib_BEfunc::getModTSconfig($this->pageinfo['uid'],'mod.web_list'); $tmpTSc = $tmpTSc['properties']['newContentWiz.']['overrideWithExtension']; $newContentWizScriptPath = $this->backPath.t3lib_extMgm::isLoaded($tmpTSc) ? (t3lib_extMgm::extRelPath($tmpTSc).'mod1/db_new_content_el.php') : 'sysext/cms/layout/db_new_content_el.php'; $icon = ''. ($table == 'pages' ? t3lib_iconWorks::getSpriteIcon('actions-page-new') : t3lib_iconWorks::getSpriteIcon('actions-document-new')) . ''; } elseif ($table=='pages' && $this->newWizards) { $icon = ''. ($table=='pages' ? t3lib_iconWorks::getSpriteIcon('actions-page-new') : t3lib_iconWorks::getSpriteIcon('actions-document-new')) . ''; } else { $params = '&edit['.$table.']['.$this->id.']=new'; if ($table == 'pages_language_overlay') { $params .= '&overrideVals[pages_language_overlay][doktype]=' . (int) $this->pageRow['doktype']; } $icon = ''. ($table=='pages' ? t3lib_iconWorks::getSpriteIcon('actions-page-new') : t3lib_iconWorks::getSpriteIcon('actions-document-new')) . ''; } } // If the table can be edited, add link for editing ALL SHOWN fields for all listed records: if ($permsEdit && $this->table && is_array($currentIdList)) { $editIdList = implode(',',$currentIdList); if ($this->clipNumPane()) $editIdList = "'+editList('".$table."','".$editIdList."')+'"; $params = '&edit['.$table.']['.$editIdList.']=edit&columnsOnly='.implode(',',$this->fieldArray).'&disHelp=1'; $icon .= '' . t3lib_iconWorks::getSpriteIcon('actions-document-open') . ''; } // add an empty entry, so column count fits again after moving this into $icon $theData[$fCol] = ' '; } break; case '_AFTERCONTROL_': // space column case '_AFTERREF_': // space column $theData[$fCol] = ' '; break; default: // Regular fields header: $theData[$fCol]=''; if ($this->table && is_array($currentIdList)) { // If the numeric clipboard pads are selected, show duplicate sorting link: if ($this->clipNumPane()) { $theData[$fCol] .= '' . t3lib_iconWorks::getSpriteIcon('actions-document-duplicates-select') . ''; } // If the table can be edited, add link for editing THIS field for all listed records: if (!$GLOBALS['TCA'][$table]['ctrl']['readOnly'] && $permsEdit && $GLOBALS['TCA'][$table]['columns'][$fCol]) { $editIdList = implode(',',$currentIdList); if ($this->clipNumPane()) $editIdList = "'+editList('".$table."','".$editIdList."')+'"; $params='&edit['.$table.']['.$editIdList.']=edit&columnsOnly='.$fCol.'&disHelp=1'; $iTitle = sprintf($GLOBALS['LANG']->getLL('editThisColumn'), rtrim(trim($GLOBALS['LANG']->sL(t3lib_BEfunc::getItemLabel($table, $fCol))), ':')); $theData[$fCol].=''. t3lib_iconWorks::getSpriteIcon('actions-document-open') . ''; } } $theData[$fCol] .= $this->addSortLink($GLOBALS['LANG']->sL(t3lib_BEfunc::getItemLabel($table, $fCol, '[|]')), $fCol, $table); break; } } /** * @hook renderListHeader: Allows to change the contents of columns/cells of the Web>List table headers * @date 2007-11-20 * @request Bernhard Kraft * @usage Above each listed table in Web>List a header row is shown. Containing the labels of all shown fields and additional icons to create new records for this table or perform special clipboard tasks like mark and copy all listed records to clipboard, etc. */ if(is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'])) { foreach($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'] as $classData) { $hookObject = t3lib_div::getUserObj($classData); if(!($hookObject instanceof localRecordList_actionsHook)) { throw new UnexpectedValueException('$hookObject must implement interface localRecordList_actionsHook', 1195567855); } $theData = $hookObject->renderListHeader($table, $currentIdList, $theData, $this); } } // Create and return header table row: return $this->addelement(1, $icon, $theData, ' class="c-headLine"', ''); } /** * Creates a page browser for tables with many records * * @param string Distinguish between 'top' and 'bottom' part of the navigation (above or below the records) * @return string Navigation HTML * */ protected function renderListNavigation($renderPart = 'top') { $totalPages = ceil($this->totalItems / $this->iLimit); $content = ''; $returnContent = ''; // Show page selector if not all records fit into one page if ($totalPages > 1) { $first = $previous = $next = $last = $reload = ''; $listURL = $this->listURL('', $this->table); // 1 = first page $currentPage = floor(($this->firstElementNumber + 1) / $this->iLimit) + 1; // Compile first, previous, next, last and refresh buttons if ($currentPage > 1) { $labelFirst = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:first'); $first = '' . t3lib_iconWorks::getSpriteIcon('actions-view-paging-first', array('title'=> $labelFirst)) . ''; } else { $first = t3lib_iconWorks::getSpriteIcon('actions-view-paging-first-disabled'); } if (($currentPage - 1) > 0) { $labelPrevious = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:previous'); $previous = '' . t3lib_iconWorks::getSpriteIcon('actions-view-paging-previous', array('title' => $labelPrevious)) . ''; } else { $previous = t3lib_iconWorks::getSpriteIcon('actions-view-paging-previous-disabled'); } if (($currentPage + 1) <= $totalPages) { $labelNext = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:next'); $next = '' . t3lib_iconWorks::getSpriteIcon('actions-view-paging-next', array('title' => $labelNext)) . ''; } else { $next = t3lib_iconWorks::getSpriteIcon('actions-view-paging-next-disabled'); } if ($currentPage != $totalPages) { $labelLast = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:last'); $last = '' . t3lib_iconWorks::getSpriteIcon('actions-view-paging-last', array('title' => $labelLast)) . ''; } else { $last = t3lib_iconWorks::getSpriteIcon('actions-view-paging-last-disabled'); } $reload = '' . t3lib_iconWorks::getSpriteIcon('actions-system-refresh') . ''; if ($renderPart === 'top') { // Add js to traverse a page select input to a pointer value $content = ' '; } $pageNumberInput = ' '; $pageIndicator = '' . sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_web_list.xml:pageIndicator'), $pageNumberInput, $totalPages) . ''; if ($this->totalItems > ($this->firstElementNumber + $this->iLimit)) { $lastElementNumber = $this->firstElementNumber + $this->iLimit; } else { $lastElementNumber = $this->totalItems; } $rangeIndicator = '' . sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_web_list.xml:rangeIndicator'), $this->firstElementNumber + 1, $lastElementNumber) . ''; $content .= '
' . $first . $previous . ' ' . $rangeIndicator . ' ' . $pageIndicator . ' ' . $next . $last . ' ' . $reload . '
'; $data = Array(); $titleColumn = $this->fieldArray[0]; $data[$titleColumn] = $content; $returnContent = $this->addElement(1, '', $data); } // end of if pages > 1 return $returnContent; } /********************************* * * Rendering of various elements * *********************************/ /** * Creates the control panel for a single record in the listing. * * @param string The table * @param array The record for which to make the control panel. * @return string HTML table with the control panel (unless disabled) */ function makeControl($table,$row) { if ($this->dontShowClipControlPanels) return ''; $rowUid = $row['uid']; if (t3lib_extMgm::isLoaded('version') && isset($row['_ORIG_uid'])) { $rowUid = $row['_ORIG_uid']; } // Initialize: t3lib_div::loadTCA($table); $cells=array(); // If the listed table is 'pages' we have to request the permission settings for each page: if ($table=='pages') { $localCalcPerms = $GLOBALS['BE_USER']->calcPerms(t3lib_BEfunc::getRecord('pages',$row['uid'])); } // This expresses the edit permissions for this particular element: $permsEdit = ($table=='pages' && ($localCalcPerms&2)) || ($table!='pages' && ($this->calcPerms&16)); // "Show" link (only pages and tt_content elements) if ($table=='pages' || $table=='tt_content') { $params='&edit['.$table.']['.$row['uid'].']=edit'; $cells['view'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-view') . ''; } elseif(!$this->table) { $cells['view'] = $this->spaceIcon; } // "Edit" link: ( Only if permissions to edit the page-record of the content of the parent page ($this->id) if ($permsEdit) { $params='&edit['.$table.']['.$row['uid'].']=edit'; $cells['edit'] = '' . ( $GLOBALS['TCA'][$table]['ctrl']['readOnly'] ? t3lib_iconWorks::getSpriteIcon('actions-document-open-read-only') : t3lib_iconWorks::getSpriteIcon('actions-document-open')) . ''; } elseif(!$this->table) { $cells['edit'] = $this->spaceIcon; } // "Move" wizard link for pages/tt_content elements: if (($table=="tt_content" && $permsEdit) || ($table=='pages')) { $cells['move'] = '' . ($table == 'tt_content' ? t3lib_iconWorks::getSpriteIcon('actions-document-move') : t3lib_iconWorks::getSpriteIcon('actions-page-move')) . ''; } elseif(!$this->table) { $cells['move'] = $this->spaceIcon; } // If the extended control panel is enabled OR if we are seeing a single table: if ($GLOBALS['SOBE']->MOD_SETTINGS['bigControlPanel'] || $this->table) { // "Info": (All records) $cells['viewBig'] = ''. t3lib_iconWorks::getSpriteIcon('actions-document-info') . ''; // If the table is NOT a read-only table, then show these links: if (!$GLOBALS['TCA'][$table]['ctrl']['readOnly']) { // "Revert" link (history/undo) $cells['history'] = ''. t3lib_iconWorks::getSpriteIcon('actions-document-history-open') . ''; // Versioning: if (t3lib_extMgm::isLoaded('version') && !t3lib_extMgm::isLoaded('workspaces')) { $vers = t3lib_BEfunc::selectVersionsOfRecord($table, $row['uid'], 'uid', $GLOBALS['BE_USER']->workspace, FALSE, $row); if (is_array($vers)) { // If table can be versionized. $versionIcon = 'no-version'; if (count($vers) > 1) { $versionIcon = count($vers) - 1; } $cells['version'] = '' . t3lib_iconWorks::getSpriteIcon('status-version-' . $versionIcon) . ''; } elseif(!$this->table) { $cells['version'] = $this->spaceIcon; } } // "Edit Perms" link: if ($table == 'pages' && $GLOBALS['BE_USER']->check('modules','web_perm') && t3lib_extMgm::isLoaded('perm')) { $cells['perms'] = ''. t3lib_iconWorks::getSpriteIcon('status-status-locked') . ''; } elseif(!$this->table && $GLOBALS['BE_USER']->check('modules','web_perm')) { $cells['perms'] = $this->spaceIcon; } // "New record after" link (ONLY if the records in the table are sorted by a "sortby"-row or if default values can depend on previous record): if ($GLOBALS['TCA'][$table]['ctrl']['sortby'] || $GLOBALS['TCA'][$table]['ctrl']['useColumnsForDefaultValues']) { if ( ($table!='pages' && ($this->calcPerms&16)) || // For NON-pages, must have permission to edit content on this parent page ($table=='pages' && ($this->calcPerms&8)) // For pages, must have permission to create new pages here. ) { if ($this->showNewRecLink($table)) { $params='&edit['.$table.']['.(-($row['_MOVE_PLH']?$row['_MOVE_PLH_uid']:$row['uid'])).']=new'; $cells['new'] = '' . ($table == 'pages' ? t3lib_iconWorks::getSpriteIcon('actions-page-new') : t3lib_iconWorks::getSpriteIcon('actions-document-new')) . ''; } } } elseif(!$this->table) { $cells['new'] = $this->spaceIcon; } // "Up/Down" links if ($permsEdit && $GLOBALS['TCA'][$table]['ctrl']['sortby'] && !$this->sortField && !$this->searchLevels) { if (isset($this->currentTable['prev'][$row['uid']])) { // Up $params='&cmd['.$table.']['.$row['uid'].'][move]='.$this->currentTable['prev'][$row['uid']]; $cells['moveUp'] = '' . t3lib_iconWorks::getSpriteIcon('actions-move-up') . ''; } else { $cells['moveUp'] = $this->spaceIcon; } if ($this->currentTable['next'][$row['uid']]) { // Down $params='&cmd['.$table.']['.$row['uid'].'][move]='.$this->currentTable['next'][$row['uid']]; $cells['moveDown']='' . t3lib_iconWorks::getSpriteIcon('actions-move-down') . ''; } else { $cells['moveDown'] = $this->spaceIcon; } } elseif(!$this->table) { $cells['moveUp'] = $this->spaceIcon; $cells['moveDown'] = $this->spaceIcon; } // "Hide/Unhide" links: $hiddenField = $GLOBALS['TCA'][$table]['ctrl']['enablecolumns']['disabled']; if ($permsEdit && $hiddenField && $GLOBALS['TCA'][$table]['columns'][$hiddenField] && (!$GLOBALS['TCA'][$table]['columns'][$hiddenField]['exclude'] || $GLOBALS['BE_USER']->check('non_exclude_fields', $table . ':' . $hiddenField))) { if ($row[$hiddenField]) { $params = '&data[' . $table . '][' . $rowUid . '][' . $hiddenField . ']=0'; $cells['hide']='' . t3lib_iconWorks::getSpriteIcon('actions-edit-unhide') . ''; } else { $params = '&data[' . $table . '][' . $rowUid . '][' . $hiddenField . ']=1'; $cells['hide']='' . t3lib_iconWorks::getSpriteIcon('actions-edit-hide') . ''; } } elseif(!$this->table) { $cells['hide'] = $this->spaceIcon; } // "Delete" link: if (($table=='pages' && ($localCalcPerms&4)) || ($table!='pages' && ($this->calcPerms&16))) { $titleOrig = t3lib_BEfunc::getRecordTitle($table,$row,FALSE,TRUE); $title = t3lib_div::slashJS(t3lib_div::fixed_lgd_cs($titleOrig, $this->fixedL), 1); $params = '&cmd['.$table.']['.$row['uid'].'][delete]=1'; $refCountMsg = t3lib_BEfunc::referenceCount( $table, $row['uid'], ' ' . $GLOBALS['LANG']->sL( 'LLL:EXT:lang/locallang_core.xml:labels.referencesToRecord' ), $this->getReferenceCount($table, $row['uid']) ) . t3lib_BEfunc::translationCount($table, $row['uid'], ' ' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.translationsOfRecord')); $cells['delete'] = 'doc->issueCommand($params, -1) . '\');} return false;') . '" title="' . $GLOBALS['LANG']->getLL('delete', TRUE) . '">' . t3lib_iconWorks::getSpriteIcon('actions-edit-delete') . ''; } elseif(!$this->table) { $cells['delete'] = $this->spaceIcon; } // "Levels" links: Moving pages into new levels... if ($permsEdit && $table=='pages' && !$this->searchLevels) { // Up (Paste as the page right after the current parent page) if ($this->calcPerms&8) { $params='&cmd['.$table.']['.$row['uid'].'][move]='.-$this->id; $cells['moveLeft'] = '' . t3lib_iconWorks::getSpriteIcon('actions-move-left') . ''; } // Down (Paste as subpage to the page right above) if ($this->currentTable['prevUid'][$row['uid']]) { $localCalcPerms = $GLOBALS['BE_USER']->calcPerms(t3lib_BEfunc::getRecord('pages',$this->currentTable['prevUid'][$row['uid']])); if ($localCalcPerms&8) { $params='&cmd['.$table.']['.$row['uid'].'][move]='.$this->currentTable['prevUid'][$row['uid']]; $cells['moveRight'] = '' . t3lib_iconWorks::getSpriteIcon('actions-move-right') . ''; } else { $cells['moveRight'] = $this->spaceIcon; } } else { $cells['moveRight'] = $this->spaceIcon; } } elseif(!$this->table) { $cells['moveLeft'] = $this->spaceIcon; $cells['moveRight'] = $this->spaceIcon; } } } /** * @hook recStatInfoHooks: Allows to insert HTML before record icons on various places * @date 2007-09-22 * @request Kasper Skårhøj */ if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['GLOBAL']['recStatInfoHooks'])) { $stat=''; $_params = array($table,$row['uid']); foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['GLOBAL']['recStatInfoHooks'] as $_funcRef) { $stat.=t3lib_div::callUserFunction($_funcRef,$_params,$this); } $cells['stat'] = $stat; } /** * @hook makeControl: Allows to change control icons of records in list-module * @date 2007-11-20 * @request Bernhard Kraft * @usage This hook method gets passed the current $cells array as third parameter. This array contains values for the icons/actions generated for each record in Web>List. Each array entry is accessible by an index-key. The order of the icons is dependend on the order of those array entries. */ if(is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'])) { foreach($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'] as $classData) { $hookObject = t3lib_div::getUserObj($classData); if(!($hookObject instanceof localRecordList_actionsHook)) { throw new UnexpectedValueException('$hookObject must implement interface localRecordList_actionsHook', 1195567840); } $cells = $hookObject->makeControl($table, $row, $cells, $this); } } // Compile items into a DIV-element: return '
'.implode('',$cells).'
'; } /** * Creates the clipboard panel for a single record in the listing. * * @param string The table * @param array The record for which to make the clipboard panel. * @return string HTML table with the clipboard panel (unless disabled) */ function makeClip($table,$row) { // Return blank, if disabled: if ($this->dontShowClipControlPanels) return ''; $cells=array(); $cells['pasteAfter'] = $cells['pasteInto'] = $this->spaceIcon; //enables to hide the copy, cut and paste icons for localized records - doesn't make much sense to perform these options for them $isL10nOverlay = $this->localizationView && $table != 'pages_language_overlay' && $row[$GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField']] != 0; // Return blank, if disabled: // Whether a numeric clipboard pad is active or the normal pad we will see different content of the panel: if ($this->clipObj->current=='normal') { // For the "Normal" pad: // Show copy/cut icons: $isSel = (string)$this->clipObj->isSelected($table,$row['uid']); $cells['copy'] = $isL10nOverlay ? $this->spaceIcon : '' . ((!$isSel=='copy') ? t3lib_iconWorks::getSpriteIcon('actions-edit-copy') : t3lib_iconWorks::getSpriteIcon('actions-edit-copy-release')) . ''; $cells['cut'] = $isL10nOverlay ? $this->spaceIcon : '' . ((!$isSel=='cut') ? t3lib_iconWorks::getSpriteIcon('actions-edit-cut') : t3lib_iconWorks::getSpriteIcon('actions-edit-cut-release')) . ''; } else { // For the numeric clipboard pads (showing checkboxes where one can select elements on/off) // Setting name of the element in ->CBnames array: $n=$table.'|'.$row['uid']; $this->CBnames[]=$n; // Check if the current element is selected and if so, prepare to set the checkbox as selected: $checked = ($this->clipObj->isSelected($table,$row['uid'])?' checked="checked"':''); // If the "duplicateField" value is set then select all elements which are duplicates... if ($this->duplicateField && isset($row[$this->duplicateField])) { $checked=''; if (in_array($row[$this->duplicateField], $this->duplicateStack)) { $checked=' checked="checked"'; } $this->duplicateStack[] = $row[$this->duplicateField]; } // Adding the checkbox to the panel: $cells['select'] = $isL10nOverlay ? $this->spaceIcon : ''; } // Now, looking for selected elements from the current table: $elFromTable = $this->clipObj->elFromTable($table); if (count($elFromTable) && $GLOBALS['TCA'][$table]['ctrl']['sortby']){ // IF elements are found and they can be individually ordered, then add a "paste after" icon: $cells['pasteAfter'] = $isL10nOverlay ? $this->spaceIcon : '' . t3lib_iconWorks::getSpriteIcon('actions-document-paste-after') . ''; } // Now, looking for elements in general: $elFromTable = $this->clipObj->elFromTable(''); if ($table=='pages' && count($elFromTable)) { $cells['pasteInto'] = '' . t3lib_iconWorks::getSpriteIcon('actions-document-paste-into') . ''; } /* * @hook makeClip: Allows to change clip-icons of records in list-module * @date 2007-11-20 * @request Bernhard Kraft * @usage This hook method gets passed the current $cells array as third parameter. This array contains values for the clipboard icons generated for each record in Web>List. Each array entry is accessible by an index-key. The order of the icons is dependend on the order of those array entries. */ if(is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'])) { foreach($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/class.db_list_extra.inc']['actions'] as $classData) { $hookObject = t3lib_div::getUserObj($classData); if(!($hookObject instanceof localRecordList_actionsHook)) { throw new UnexpectedValueException('$hookObject must implement interface localRecordList_actionsHook', 1195567845); } $cells = $hookObject->makeClip($table, $row, $cells, $this); } } // Compile items into a DIV-element: return '
'.implode('',$cells).'
'; } /** * Creates the HTML for a reference count for the record with the UID $uid * in the table $tableName. * * @param string $tableName * table name of the referenced record, must not be empty * @param integer $uid * UID of the referenced record, must be > 0 * * @return string HTML of reference a link, will be empty if there are no * references to the corresponding record */ protected function createReferenceHtml($tableName, $uid) { $referenceCount = $this->getReferenceCount($tableName, $uid); if ($referenceCount == 0) { return ''; } $queryResult = $GLOBALS['TYPO3_DB']->exec_SELECTquery( 'tablename, recuid, field', 'sys_refindex', 'ref_table = ' . $GLOBALS['TYPO3_DB']->fullQuoteStr( $tableName, 'sys_refindex' ) . ' AND ref_uid = ' . $uid . ' AND deleted = 0', '', '', '0,20' ); $referenceTitles = array(); while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($queryResult)) { $referenceTitles[] = $row['tablename'] . ':' . $row['recuid'] . ':' . $row['field']; if (strlen(implode(' / ', $referenceTitles)) >= 100) { break; } } $GLOBALS['TYPO3_DB']->sql_free_result($queryResult); return '' . $referenceCount . ''; } /** * Creates the localization panel * * @param string The table * @param array The record for which to make the localization panel. * @return array Array with key 0/1 with content for column 1 and 2 */ function makeLocalizationPanel($table,$row) { $out = array( 0 => '', 1 => '', ); $translations = $this->translateTools->translationInfo($table, $row['uid'], 0, $row, $this->selFieldList); $this->translations = $translations['translations']; // Language title and icon: $out[0] = $this->languageFlag($row[$GLOBALS['TCA'][$table]['ctrl']['languageField']]); if (is_array($translations)) { // Traverse page translations and add icon for each language that does NOT yet exist: $lNew = ''; foreach($this->pageOverlays as $lUid_OnPage => $lsysRec) { if (!isset($translations['translations'][$lUid_OnPage]) && $GLOBALS['BE_USER']->checkLanguageAccess($lUid_OnPage)) { $url = substr($this->listURL(), strlen($this->backPath)); $href = $GLOBALS['SOBE']->doc->issueCommand( '&cmd[' . $table . '][' . $row['uid'] . '][localize]=' . $lUid_OnPage, $url . '&justLocalized=' . rawurlencode($table . ':' . $row['uid'] . ':' . $lUid_OnPage) ); $language = t3lib_BEfunc::getRecord('sys_language', $lUid_OnPage, 'title'); if ($this->languageIconTitles[$lUid_OnPage]['flagIcon']) { $lC = t3lib_iconWorks::getSpriteIcon($this->languageIconTitles[$lUid_OnPage]['flagIcon']); } else { $lC = $this->languageIconTitles[$lUid_OnPage]['title']; } $lC = '' . $lC . ' '; $lNew.=$lC; } } if ($lNew) $out[1].= $lNew; } elseif ($row['l18n_parent']) { $out[0] = '    '.$out[0]; } return $out; } /** * Create the selector box for selecting fields to display from a table: * * @param string Table name * @param boolean If TRUE, form-fields will be wrapped around the table. * @return string HTML table with the selector box (name: displayFields['.$table.'][]) */ function fieldSelectBox($table,$formFields=1) { // Init: t3lib_div::loadTCA($table); $formElements=array('',''); if ($formFields) { $formElements=array('
','
'); } // Load already selected fields, if any: $setFields=is_array($this->setFields[$table]) ? $this->setFields[$table] : array(); // Request fields from table: $fields = $this->makeFieldList($table, FALSE, TRUE); // Add pseudo "control" fields $fields[]='_PATH_'; $fields[]='_REF_'; $fields[]='_LOCALIZATION_'; $fields[]='_CONTROL_'; $fields[]='_CLIPBOARD_'; // Create an option for each field: $opt=array(); $opt[] = ''; foreach($fields as $fN) { // Field label $fL = (is_array($GLOBALS['TCA'][$table]['columns'][$fN]) ? rtrim($GLOBALS['LANG']->sL($GLOBALS['TCA'][$table]['columns'][$fN]['label']), ':') : '[' . $fN . ']'); $opt[] = ' '; } // Compile the options into a multiple selector box: $lMenu = ' '; // Table with the field selector:: $content.= ' '.$formElements[0].'
'.$lMenu.'
'.$formElements[1]; return $content; } /********************************* * * Helper functions * *********************************/ /** * Creates a link around $string. The link contains an onclick action which submits the script with some clipboard action. * Currently, this is used for setting elements / delete elements. * * @param string The HTML content to link (image/text) * @param string Table name * @param string Clipboard command (eg. "setCB" or "delete") * @param string Warning text, if any ("delete" uses this for confirmation) * @return string tag wrapped link. */ function linkClipboardHeaderIcon($string,$table,$cmd,$warning='') { $onClickEvent = 'document.dblistForm.cmd.value=\''.$cmd.'\';document.dblistForm.cmd_table.value=\''.$table.'\';document.dblistForm.submit();'; if ($warning) $onClickEvent = 'if (confirm('.$GLOBALS['LANG']->JScharCode($warning).')){'.$onClickEvent.'}'; return ''.$string.''; } /** * Returns TRUE if a numeric clipboard pad is selected/active * * @return boolean */ function clipNumPane() { return in_Array('_CLIPBOARD_',$this->fieldArray) && $this->clipObj->current!='normal'; } /** * Creates a sort-by link on the input string ($code). * It will automatically detect if sorting should be ascending or descending depending on $this->sortRev. * Also some fields will not be possible to sort (including if single-table-view is disabled). * * @param string The string to link (text) * @param string The fieldname represented by the title ($code) * @param string Table name * @return string Linked $code variable */ function addSortLink($code,$field,$table) { // Certain circumstances just return string right away (no links): if ($field=='_CONTROL_' || $field=='_LOCALIZATION_' || $field=='_CLIPBOARD_' || $field=='_REF_' || $this->disableSingleTableView) return $code; // If "_PATH_" (showing record path) is selected, force sorting by pid field (will at least group the records!) if ($field=='_PATH_') $field=pid; // Create the sort link: $sortUrl = $this->listURL('', -1, 'sortField,sortRev,table,firstElementNumber') . '&table=' . $table . '&sortField=' . $field . '&sortRev=' . ($this->sortRev || ($this->sortField != $field) ? 0 : 1); $sortArrow = ($this->sortField==$field?'backPath,'gfx/red'.($this->sortRev?'up':'down').'.gif','width="7" height="4"').' alt="" />':''); // Return linked field: return ''.$code. $sortArrow. ''; } /** * Returns the path for a certain pid * The result is cached internally for the session, thus you can call this function as much as you like without performance problems. * * @param integer The page id for which to get the path * @return string The path. */ function recPath($pid) { if (!isset($this->recPath_cache[$pid])) { $this->recPath_cache[$pid] = t3lib_BEfunc::getRecordPath($pid,$this->perms_clause,20); } return $this->recPath_cache[$pid]; } /** * Returns TRUE if a link for creating new records should be displayed for $table * * @param string Table name * @return boolean Returns TRUE if a link for creating new records should be displayed for $table * @see SC_db_new::showNewRecLink */ function showNewRecLink($table) { // No deny/allow tables are set: if (!count($this->allowedNewTables) && !count($this->deniedNewTables)) { return TRUE; // If table is not denied (which takes precedence over allowed tables): } elseif (!in_array($table, $this->deniedNewTables) && (!count($this->allowedNewTables) || in_array($table, $this->allowedNewTables))) { return TRUE; // If table is denied or allowed tables are set, but table is not part of: } else { return FALSE; } } /** * Creates the "&returnUrl" parameter for links - this is used when the script links to other scripts and passes its own URL with the link so other scripts can return to the listing again. * Uses REQUEST_URI as value. * * @return string */ function makeReturnUrl() { return '&returnUrl='.rawurlencode(t3lib_div::getIndpEnv('REQUEST_URI')); } /************************************ * * CSV related functions * ************************************/ /** * Initializes internal csvLines array with the header of field names * * @return void */ protected function initCSV() { $this->addHeaderRowToCSV(); } /** * Add header line with field names as CSV line * * @return void */ protected function addHeaderRowToCSV() { // Add header row, control fields will be reduced inside addToCSV() $this->addToCSV(array_combine($this->fieldArray, $this->fieldArray)); } /** * Adds selected columns of one table row as CSV line. * * @param array Record array, from which the values of fields found in $this->fieldArray will be listed in the CSV output. * @return void */ protected function addToCSV(array $row = array()) { $rowReducedByControlFields = self::removeControlFieldsFromFieldRow($row); $rowReducedToSelectedColumns = array_intersect_key($rowReducedByControlFields, array_flip($this->fieldArray)); $this->setCsvRow($rowReducedToSelectedColumns); } /** * Remove control fields from row for CSV export * * @param array fieldNames => fieldValues * @return array Input array reduces by control fields */ protected static function removeControlFieldsFromFieldRow(array $row = array()) { // Possible control fields in a list row $controlFields = array( '_PATH_', '_REF_', '_CONTROL_', '_AFTERCONTROL_', '_AFTERREF_', '_CLIPBOARD_', '_LOCALIZATION_', '_LOCALIZATION_b', ); return array_diff_key($row, array_flip($controlFields)); } /** * Adds input row of values to the internal csvLines array as a CSV formatted line * * @param array Array with values to be listed. * @return void */ function setCsvRow($csvRow) { $this->csvLines[] = t3lib_div::csvValues($csvRow); } /** * Compiles the internal csvLines array to a csv-string and outputs it to the browser. * This function exits! * * @param string Filename prefix: * @return void EXITS php execusion! */ function outputCSV($prefix) { // Setting filename: $filename=$prefix.'_'.date('dmy-Hi').'.csv'; // Creating output header: $mimeType = 'application/octet-stream'; Header('Content-Type: '.$mimeType); Header('Content-Disposition: attachment; filename='.$filename); // Printing the content of the CSV lines: echo implode(chr(13).chr(10),$this->csvLines); // Exits: exit; } } if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.db_list_extra.inc'])) { include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.db_list_extra.inc']); } ?>