‪TYPO3CMS  9.5
ElementBrowserRecordList.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 
26 {
32  protected ‪$relatingTable;
33 
39  protected ‪$relatingField;
40 
50  public function ‪linkWrapItems(‪$table, $uid, $code, $row)
51  {
52  if (!$code) {
53  $code = '<i>[' . htmlspecialchars($this->‪getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.no_title')) . ']</i>';
54  } else {
55  $code = ‪BackendUtility::getRecordTitlePrep($code, $this->fixedL);
56  }
57  $title = ‪BackendUtility::getRecordTitle(‪$table, $row, false, true);
58  $ficon = $this->iconFactory->getIconForRecord(‪$table, $row, ‪Icon::SIZE_SMALL)->render();
59 
60  $ATag = '<a href="#" data-close="0" title="' . htmlspecialchars($this->‪getLanguageService()->getLL('addToList')) . '">';
61  $ATag_alt = '<a href="#" data-close="1" title="' . htmlspecialchars($this->‪getLanguageService()->getLL('addToList')) . '">';
62  $ATag_e = '</a>';
63  $out = '<span data-uid="' . htmlspecialchars($row['uid']) . '" data-table="' . htmlspecialchars(‪$table) . '" data-title="' . htmlspecialchars($title) . '" data-icon="' . htmlspecialchars($ficon) . '">';
64  $out .= $ATag . $this->iconFactory->getIcon('actions-add', ‪Icon::SIZE_SMALL)->render() . $ATag_e . $ATag_alt . $code . $ATag_e;
65  $out .= '</span>';
66 
67  return $out;
68  }
69 
77  protected function ‪isRowListingConditionFulfilled(‪$table, $row)
78  {
79  $returnValue = true;
80  if ($this->relatingField && $this->relatingTable) {
81  $tcaFieldConfig = ‪$GLOBALS['TCA'][‪$this->relatingTable]['columns'][‪$this->relatingField]['config'];
82  if (is_array($tcaFieldConfig['filter'])) {
83  foreach ($tcaFieldConfig['filter'] as $filter) {
84  if (!$filter['userFunc']) {
85  continue;
86  }
87  $parameters = $filter['parameters'] ?: [];
88  $parameters['values'] = [‪$table . '_' . $row['uid']];
89  $parameters['tcaFieldConfig'] = $tcaFieldConfig;
90  $valueArray = GeneralUtility::callUserFunction($filter['userFunc'], $parameters, $this);
91  if (empty($valueArray)) {
92  $returnValue = false;
93  }
94  }
95  }
96  }
97  return $returnValue;
98  }
99 
106  public function ‪setRelatingTableAndField($tableName, $fieldName)
107  {
108  // Check validity of the input data and load TCA
109  if (isset(‪$GLOBALS['TCA'][$tableName])) {
110  $this->relatingTable = $tableName;
111  if ($fieldName && isset(‪$GLOBALS['TCA'][$tableName]['columns'][$fieldName])) {
112  $this->relatingField = $fieldName;
113  }
114  }
115  }
116 
122  public function ‪generateList()
123  {
124  $this->allFields = true;
125  parent::generateList();
126  }
127 }
‪TYPO3\CMS\Core\Imaging\Icon\SIZE_SMALL
‪const SIZE_SMALL
Definition: Icon.php:29
‪TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList\$relatingField
‪string $relatingField
Definition: ElementBrowserRecordList.php:37
‪TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList
Definition: ElementBrowserRecordList.php:26
‪TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList\getLanguageService
‪LanguageService getLanguageService()
Definition: DatabaseRecordList.php:4469
‪TYPO3\CMS\Core\Imaging\Icon
Definition: Icon.php:25
‪TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList\generateList
‪generateList()
Definition: ElementBrowserRecordList.php:120
‪TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList\$relatingTable
‪string $relatingTable
Definition: ElementBrowserRecordList.php:31
‪TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList\$table
‪string $table
Definition: DatabaseRecordList.php:349
‪TYPO3\CMS\Backend\RecordList
Definition: AbstractRecordList.php:2
‪TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList
Definition: DatabaseRecordList.php:59
‪TYPO3\CMS\Backend\Utility\BackendUtility\getRecordTitlePrep
‪static string getRecordTitlePrep($title, $titleLength=0)
Definition: BackendUtility.php:1883
‪TYPO3\CMS\Backend\Utility\BackendUtility\getRecordTitle
‪static string getRecordTitle($table, $row, $prep=false, $forceResult=true)
Definition: BackendUtility.php:1811
‪TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList\isRowListingConditionFulfilled
‪bool isRowListingConditionFulfilled($table, $row)
Definition: ElementBrowserRecordList.php:75
‪TYPO3\CMS\Backend\Utility\BackendUtility
Definition: BackendUtility.php:72
‪TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList\linkWrapItems
‪string linkWrapItems($table, $uid, $code, $row)
Definition: ElementBrowserRecordList.php:48
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList\setRelatingTableAndField
‪setRelatingTableAndField($tableName, $fieldName)
Definition: ElementBrowserRecordList.php:104