-tags with a class attribute (if $wrapArr is not passed,
+ */
+ public function pi_list_browseresults($showResultCount = 1, $tableParams = '', $wrapArr = [], $pointerName = 'pointer', $hscText = true, $forceOutput = false)
+ {
+ $wrapper = [];
+ $markerArray = [];
+ foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS'][self::class]['pi_list_browseresults'] ?? [] as $classRef) {
+ $hookObj = GeneralUtility::makeInstance($classRef);
+ if (method_exists($hookObj, 'pi_list_browseresults')) {
+ $pageBrowser = $hookObj->pi_list_browseresults($showResultCount, $tableParams, $wrapArr, $pointerName, $hscText, $forceOutput, $this);
+ if (is_string($pageBrowser) && trim($pageBrowser) !== '') {
+ return $pageBrowser;
+ }
+ }
+ }
+ // example $wrapArr-array how it could be traversed from an extension
+ /* $wrapArr = array(
+ * 'browseBoxWrap' => '
|
',
+ * 'showResultsWrap' => '
|
',
+ * 'browseLinksWrap' => '
|
',
+ * 'showResultsNumbersWrap' => '
|',
+ * 'disabledLinkWrap' => '
|',
+ * 'inactiveLinkWrap' => '
|',
+ * 'activeLinkWrap' => '
|'
+ * );*/
+ // Initializing variables:
+ $pointer = (int)($this->piVars[$pointerName] ?? 0);
+ $count = (int)($this->internal['res_count'] ?? 0);
+ $results_at_a_time = MathUtility::forceIntegerInRange(($this->internal['results_at_a_time'] ?? 1), 1, 1000);
+ $totalPages = (int)ceil($count / $results_at_a_time);
+ $maxPages = MathUtility::forceIntegerInRange($this->internal['maxPages'], 1, 100);
+ $pi_isOnlyFields = (bool)$this->pi_isOnlyFields($this->pi_isOnlyFields);
+ if (!$forceOutput && $count <= $results_at_a_time) {
+ return '';
+ }
+ // $showResultCount determines how the results of the pagerowser will be shown.
+ // If set to 0: only the result-browser will be shown
+ // 1: (default) the text "Displaying results..." and the result-browser will be shown.
+ // 2: only the text "Displaying results..." will be shown
+ $showResultCount = (int)$showResultCount;
+ // If this is set, two links named "<< First" and "LAST >>" will be shown and point to the very first or last page.
+ $showFirstLast = !empty($this->internal['showFirstLast']);
+ // If this has a value the "previous" button is always visible (will be forced if "showFirstLast" is set)
+ $alwaysPrev = $showFirstLast ? 1 : $this->pi_alwaysPrev;
+ if (isset($this->internal['pagefloat'])) {
+ if (strtoupper($this->internal['pagefloat']) === 'CENTER') {
+ $pagefloat = ceil(($maxPages - 1) / 2);
+ } else {
+ // pagefloat set as integer. 0 = left, value >= $this->internal['maxPages'] = right
+ $pagefloat = MathUtility::forceIntegerInRange($this->internal['pagefloat'], -1, $maxPages - 1);
+ }
+ } else {
+ // pagefloat disabled
+ $pagefloat = -1;
+ }
+ // Default values for "traditional" wrapping with a table. Can be overwritten by vars from $wrapArr
+ $wrapper['disabledLinkWrap'] = '
| | ';
+ $wrapper['inactiveLinkWrap'] = '
| | ';
+ $wrapper['activeLinkWrap'] = '
pi_classParam('browsebox-SCell') . ' class="nowrap"> | | ';
+ $wrapper['browseLinksWrap'] = rtrim('
';
+ $wrapper['showResultsWrap'] = '
|
';
+ $wrapper['browseBoxWrap'] = '
+
+
pi_classParam('browsebox') . '>
+ |
+
';
+ // Now overwrite all entries in $wrapper which are also in $wrapArr
+ $wrapper = array_merge($wrapper, $wrapArr);
+ // Show pagebrowser
+ if ($showResultCount != 2) {
+ if ($pagefloat > -1) {
+ $lastPage = min($totalPages, max($pointer + 1 + $pagefloat, $maxPages));
+ $firstPage = max(0, $lastPage - $maxPages);
+ } else {
+ $firstPage = 0;
+ $lastPage = MathUtility::forceIntegerInRange($totalPages, 1, $maxPages);
+ }
+ $links = [];
+ // Make browse-table/links:
+ // Link to first page
+ if ($showFirstLast) {
+ if ($pointer > 0) {
+ $label = $this->pi_getLL('pi_list_browseresults_first', '<< First');
+ $links[] = $this->cObj->wrap($this->pi_linkTP_keepPIvars($hscText ? htmlspecialchars($label) : $label, [$pointerName => null], $pi_isOnlyFields), $wrapper['inactiveLinkWrap']);
+ } else {
+ $label = $this->pi_getLL('pi_list_browseresults_first', '<< First');
+ $links[] = $this->cObj->wrap($hscText ? htmlspecialchars($label) : $label, $wrapper['disabledLinkWrap']);
+ }
+ }
+ // Link to previous page
+ if ($alwaysPrev >= 0) {
+ if ($pointer > 0) {
+ $label = $this->pi_getLL('pi_list_browseresults_prev', '< Previous');
+ $links[] = $this->cObj->wrap($this->pi_linkTP_keepPIvars($hscText ? htmlspecialchars($label) : $label, [$pointerName => ($pointer - 1) ?: ''], $pi_isOnlyFields), $wrapper['inactiveLinkWrap']);
+ } elseif ($alwaysPrev) {
+ $label = $this->pi_getLL('pi_list_browseresults_prev', '< Previous');
+ $links[] = $this->cObj->wrap($hscText ? htmlspecialchars($label) : $label, $wrapper['disabledLinkWrap']);
+ }
+ }
+ // Links to pages
+ for ($a = $firstPage; $a < $lastPage; $a++) {
+ if ($this->internal['showRange'] ?? false) {
+ $pageText = ($a * $results_at_a_time + 1) . '-' . min($count, ($a + 1) * $results_at_a_time);
+ } else {
+ $label = $this->pi_getLL('pi_list_browseresults_page', 'Page');
+ $pageText = trim(($hscText ? htmlspecialchars($label) : $label) . ' ' . ($a + 1));
+ }
+ // Current page
+ if ($pointer == $a) {
+ if ($this->internal['dontLinkActivePage'] ?? false) {
+ $links[] = $this->cObj->wrap($pageText, $wrapper['activeLinkWrap']);
+ } else {
+ $links[] = $this->cObj->wrap($this->pi_linkTP_keepPIvars($pageText, [$pointerName => $a ?: ''], $pi_isOnlyFields), $wrapper['activeLinkWrap']);
+ }
+ } else {
+ $links[] = $this->cObj->wrap($this->pi_linkTP_keepPIvars($pageText, [$pointerName => $a ?: ''], $pi_isOnlyFields), $wrapper['inactiveLinkWrap']);
+ }
+ }
+ if ($pointer < $totalPages - 1 || $showFirstLast) {
+ // Link to next page
+ if ($pointer >= $totalPages - 1) {
+ $label = $this->pi_getLL('pi_list_browseresults_next', 'Next >');
+ $links[] = $this->cObj->wrap($hscText ? htmlspecialchars($label) : $label, $wrapper['disabledLinkWrap']);
+ } else {
+ $label = $this->pi_getLL('pi_list_browseresults_next', 'Next >');
+ $links[] = $this->cObj->wrap($this->pi_linkTP_keepPIvars($hscText ? htmlspecialchars($label) : $label, [$pointerName => $pointer + 1], $pi_isOnlyFields), $wrapper['inactiveLinkWrap']);
+ }
+ }
+ // Link to last page
+ if ($showFirstLast) {
+ if ($pointer < $totalPages - 1) {
+ $label = $this->pi_getLL('pi_list_browseresults_last', 'Last >>');
+ $links[] = $this->cObj->wrap($this->pi_linkTP_keepPIvars($hscText ? htmlspecialchars($label) : $label, [$pointerName => $totalPages - 1], $pi_isOnlyFields), $wrapper['inactiveLinkWrap']);
+ } else {
+ $label = $this->pi_getLL('pi_list_browseresults_last', 'Last >>');
+ $links[] = $this->cObj->wrap($hscText ? htmlspecialchars($label) : $label, $wrapper['disabledLinkWrap']);
+ }
+ }
+ $theLinks = $this->cObj->wrap(implode(LF, $links), $wrapper['browseLinksWrap']);
+ } else {
+ $theLinks = '';
+ }
+ $pR1 = $pointer * $results_at_a_time + 1;
+ $pR2 = $pointer * $results_at_a_time + $results_at_a_time;
+ if ($showResultCount) {
+ if ($wrapper['showResultsNumbersWrap'] ?? false) {
+ // This will render the resultcount in a more flexible way using markers (new in TYPO3 3.8.0).
+ // The formatting string is expected to hold template markers (see function header). Example: 'Displaying results ###FROM### to ###TO### out of ###OUT_OF###'
+ $markerArray['###FROM###'] = $this->cObj->wrap(($this->internal['res_count'] ?? 0) > 0 ? $pR1 : 0, $wrapper['showResultsNumbersWrap']);
+ $markerArray['###TO###'] = $this->cObj->wrap(min(($this->internal['res_count'] ?? 0), $pR2), $wrapper['showResultsNumbersWrap']);
+ $markerArray['###OUT_OF###'] = $this->cObj->wrap(($this->internal['res_count'] ?? 0), $wrapper['showResultsNumbersWrap']);
+ $markerArray['###FROM_TO###'] = $this->cObj->wrap((($this->internal['res_count'] ?? 0) > 0 ? $pR1 : 0) . ' ' . $this->pi_getLL('pi_list_browseresults_to', 'to') . ' ' . min($this->internal['res_count'] ?? 0, $pR2), $wrapper['showResultsNumbersWrap']);
+ $markerArray['###CURRENT_PAGE###'] = $this->cObj->wrap($pointer + 1, $wrapper['showResultsNumbersWrap']);
+ $markerArray['###TOTAL_PAGES###'] = $this->cObj->wrap($totalPages, $wrapper['showResultsNumbersWrap']);
+ // Substitute markers
+ $resultCountMsg = $this->templateService->substituteMarkerArray($this->pi_getLL('pi_list_browseresults_displays', 'Displaying results ###FROM### to ###TO### out of ###OUT_OF###'), $markerArray);
+ } else {
+ // Render the resultcount in the "traditional" way using sprintf
+ $resultCountMsg = sprintf(str_replace('###SPAN_BEGIN###', '
pi_classParam('browsebox-strong') . '>', $this->pi_getLL('pi_list_browseresults_displays', 'Displaying results ###SPAN_BEGIN###%s to %s out of ###SPAN_BEGIN###%s')), $count > 0 ? $pR1 : 0, min($count, $pR2), $count);
+ }
+ $resultCountMsg = $this->cObj->wrap($resultCountMsg, $wrapper['showResultsWrap']);
+ } else {
+ $resultCountMsg = '';
+ }
+ $sTables = $this->cObj->wrap($resultCountMsg . $theLinks, $wrapper['browseBoxWrap']);
+ return $sTables;
+ }
+
+ /**
+ * Returns a mode selector; a little menu in a table normally put in the top of the page/list.
+ *
+ * @param array $items Key/Value pairs for the menu; keys are the piVars[mode] values and the "values" are the labels for them.
+ * @param string $tableParams Attributes for the table tag which is wrapped around the table cells containing the menu
+ * @return string Output HTML, wrapped in
-tags with a class attribute
+ */
+ public function pi_list_modeSelector($items = [], $tableParams = '')
+ {
+ $cells = [];
+ foreach ($items as $k => $v) {
+ $cells[] = '
+
piVars['mode'] == $k ? $this->pi_classParam('modeSelector-SCell') : '') . '> ' . $this->pi_linkTP_keepPIvars(htmlspecialchars($v), ['mode' => $k], (bool)$this->pi_isOnlyFields($this->pi_isOnlyFields)) . ' | ';
+ }
+ $sTables = '
+
+
+
pi_classParam('modeSelector') . '>
+ <' . rtrim('table ' . $tableParams) . '>
+
+ ' . implode('', $cells) . '
+
+
+ ';
+ return $sTables;
+ }
+
+ /**
+ * Returns the list of items based on the input SQL result pointer
+ * For each result row the internal var, $this->internal['currentRow'], is set with the row returned.
+ * $this->pi_list_header() makes the header row for the list
+ * $this->pi_list_row() is used for rendering each row
+ * Notice that these two functions are typically ALWAYS defined in the extension class of the plugin since they are directly concerned with the specific layout for that plugins purpose.
+ *
+ * @param Result $statement Result pointer to a SQL result which can be traversed.
+ * @param string $tableParams Attributes for the table tag which is wrapped around the table rows containing the list
+ * @return string Output HTML, wrapped in
-tags with a class attribute
+ * @see pi_list_row()
+ * @see pi_list_header()
+ */
+ public function pi_list_makelist($statement, $tableParams = '')
+ {
+ // Make list table header:
+ $tRows = [];
+ $this->internal['currentRow'] = '';
+ $tRows[] = $this->pi_list_header();
+ // Make list table rows
+ $c = 0;
+ while ($this->internal['currentRow'] = $statement->fetchAssociative()) {
+ $tRows[] = $this->pi_list_row($c);
+ $c++;
+ }
+ $out = '
+
+
+
pi_classParam('listrow') . '>
+ <' . rtrim('table ' . $tableParams) . '>
+ ' . implode('', $tRows) . '
+
+
';
+ return $out;
+ }
+
+ /**
+ * Returns a list row. Get data from $this->internal['currentRow'];
+ * (Dummy)
+ * Notice: This function should ALWAYS be defined in the extension class of the plugin since it is directly concerned with the specific layout of the listing for your plugins purpose.
+ *
+ * @param int $c Row counting. Starts at 0 (zero). Used for alternating class values in the output rows.
+ * @return string HTML output, a table row with a class attribute set (alternative based on odd/even rows)
+ */
+ public function pi_list_row($c)
+ {
+ // Dummy
+ return '
pi_classParam('listrow-odd') : '') . '>[dummy row] |
';
+ }
+
+ /**
+ * Returns a list header row.
+ * (Dummy)
+ * Notice: This function should ALWAYS be defined in the extension class of the plugin since it is directly concerned with the specific layout of the listing for your plugins purpose.
+ *
+ * @return string HTML output, a table row with a class attribute set
+ */
+ public function pi_list_header()
+ {
+ return '
pi_classParam('listrow-header') . '>[dummy header row] |
';
+ }
+
+ /***************************
+ *
+ * Stylesheet, CSS
+ *
+ **************************/
+ /**
+ * Returns a class-name prefixed with $this->prefixId and with all underscores substituted to dashes (-)
+ *
+ * @param string $class The class name (or the END of it since it will be prefixed by $this->prefixId.'-')
+ * @return string The combined class name (with the correct prefix)
+ */
+ public function pi_getClassName($class)
+ {
+ return str_replace('_', '-', $this->prefixId) . ($this->prefixId ? '-' : '') . $class;
+ }
+
+ /**
+ * Returns the class-attribute with the correctly prefixed classname
+ * Using pi_getClassName()
+ *
+ * @param string $class The class name(s) (suffix) - separate multiple classes with commas
+ * @param string $addClasses Additional class names which should not be prefixed - separate multiple classes with commas
+ * @return string A "class" attribute with value and a single space char before it.
+ * @see pi_getClassName()
+ */
+ public function pi_classParam($class, $addClasses = '')
+ {
+ $output = '';
+ $classNames = GeneralUtility::trimExplode(',', $class);
+ foreach ($classNames as $className) {
+ $output .= ' ' . $this->pi_getClassName($className);
+ }
+ $additionalClassNames = GeneralUtility::trimExplode(',', $addClasses);
+ foreach ($additionalClassNames as $additionalClassName) {
+ $output .= ' ' . $additionalClassName;
+ }
+ return ' class="' . trim($output) . '"';
+ }
+
+ /**
+ * Wraps the input string in a
tag with the class attribute set to the prefixId.
+ * All content returned from your plugins should be returned through this function so all content from your plugin is encapsulated in a
-tag nicely identifying the content of your plugin.
+ *
+ * @param string $str HTML content to wrap in the div-tags with the "main class" of the plugin
+ * @return string HTML content wrapped, ready to return to the parent object.
+ */
+ public function pi_wrapInBaseClass($str)
+ {
+ $content = '
+ ' . $str . '
+
+ ';
+ if (!($this->frontendController->config['config']['disablePrefixComment'] ?? false)) {
+ $content = '
+
+
+
+ ' . $content . '
+
+
+ ';
+ }
+ return $content;
+ }
+
+ /***************************
+ *
+ * Localization, locallang functions
+ *
+ **************************/
+ /**
+ * Returns the localized label of the LOCAL_LANG key, $key
+ * Notice that for debugging purposes prefixes for the output values can be set with the internal vars ->LLtestPrefixAlt and ->LLtestPrefix
+ *
+ * @param string $key The key from the LOCAL_LANG array for which to return the value.
+ * @param string $alternativeLabel Alternative string to return IF no value is found set for the key, neither for the local language nor the default.
+ * @return string The value from LOCAL_LANG.
+ */
+ public function pi_getLL($key, $alternativeLabel = '')
+ {
+ $word = null;
+ if (!empty($this->LOCAL_LANG[$this->LLkey][$key][0]['target'])
+ || isset($this->LOCAL_LANG_UNSET[$this->LLkey][$key])
+ ) {
+ $word = $this->LOCAL_LANG[$this->LLkey][$key][0]['target'];
+ } elseif ($this->altLLkey) {
+ $alternativeLanguageKeys = GeneralUtility::trimExplode(',', $this->altLLkey, true);
+ foreach ($alternativeLanguageKeys as $languageKey) {
+ if (!empty($this->LOCAL_LANG[$languageKey][$key][0]['target'])
+ || isset($this->LOCAL_LANG_UNSET[$languageKey][$key])
+ ) {
+ // Alternative language translation for key exists
+ $word = $this->LOCAL_LANG[$languageKey][$key][0]['target'];
+ break;
+ }
+ }
+ }
+ if ($word === null) {
+ if (!empty($this->LOCAL_LANG['default'][$key][0]['target'])
+ || isset($this->LOCAL_LANG_UNSET['default'][$key])
+ ) {
+ // Get default translation (without charset conversion, english)
+ $word = $this->LOCAL_LANG['default'][$key][0]['target'];
+ } else {
+ // Return alternative string or empty
+ $word = !empty($this->LLtestPrefixAlt) ? $this->LLtestPrefixAlt . $alternativeLabel : $alternativeLabel;
+ }
+ }
+ return !empty($this->LLtestPrefix) ? $this->LLtestPrefix . $word : $word;
+ }
+
+ /**
+ * Loads local-language values from the file passed as a parameter or
+ * by looking for a "locallang" file in the
+ * plugin class directory ($this->scriptRelPath).
+ * Also locallang values set in the TypoScript property "_LOCAL_LANG" are
+ * merged onto the values found in the "locallang" file.
+ * Supported file extensions xlf
+ *
+ * @param string $languageFilePath path to the plugin language file in format EXT:....
+ */
+ public function pi_loadLL($languageFilePath = '')
+ {
+ if ($this->LOCAL_LANG_loaded) {
+ return;
+ }
+
+ if ($languageFilePath === '' && $this->scriptRelPath) {
+ $languageFilePath = 'EXT:' . $this->extKey . '/' . PathUtility::dirname($this->scriptRelPath) . '/locallang.xlf';
+ }
+ if ($languageFilePath !== '') {
+ $languageFactory = GeneralUtility::makeInstance(LocalizationFactory::class);
+ $this->LOCAL_LANG = $languageFactory->getParsedData($languageFilePath, $this->LLkey);
+ $alternativeLanguageKeys = GeneralUtility::trimExplode(',', $this->altLLkey, true);
+ foreach ($alternativeLanguageKeys as $languageKey) {
+ $tempLL = $languageFactory->getParsedData($languageFilePath, $languageKey);
+ if ($this->LLkey !== 'default' && isset($tempLL[$languageKey])) {
+ $this->LOCAL_LANG[$languageKey] = $tempLL[$languageKey];
+ }
+ }
+ // Overlaying labels from TypoScript (including fictitious language keys for non-system languages!):
+ if (isset($this->conf['_LOCAL_LANG.'])) {
+ // Clear the "unset memory"
+ $this->LOCAL_LANG_UNSET = [];
+ foreach ($this->conf['_LOCAL_LANG.'] as $languageKey => $languageArray) {
+ // Remove the dot after the language key
+ $languageKey = substr($languageKey, 0, -1);
+ // Don't process label if the language is not loaded
+ if (is_array($languageArray) && isset($this->LOCAL_LANG[$languageKey])) {
+ foreach ($languageArray as $labelKey => $labelValue) {
+ if (!is_array($labelValue)) {
+ $this->LOCAL_LANG[$languageKey][$labelKey][0]['target'] = $labelValue;
+ if ($labelValue === '') {
+ $this->LOCAL_LANG_UNSET[$languageKey][$labelKey] = '';
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ $this->LOCAL_LANG_loaded = true;
+ }
+
+ /***************************
+ *
+ * Database, queries
+ *
+ **************************/
+ /**
+ * Executes a standard SELECT query for listing of records based on standard input vars from the 'browser' ($this->internal['results_at_a_time'] and $this->piVars['pointer']) and 'searchbox' ($this->piVars['sword'] and $this->internal['searchFieldList'])
+ * Set $count to 1 if you wish to get a count(*) query for selecting the number of results.
+ * Notice that the query will use $this->conf['pidList'] and $this->conf['recursive'] to generate a PID list within which to search for records.
+ *
+ * @param string $table The table name to make the query for.
+ * @param bool $count If set, you will get a "count(*)" query back instead of field selecting
+ * @param string $addWhere Additional WHERE clauses (should be starting with " AND ....")
+ * @param mixed $mm_cat If an array, then it must contain the keys "table", "mmtable" and (optionally) "catUidList" defining a table to make a MM-relation to in the query (based on fields uid_local and uid_foreign). If not array, the query will be a plain query looking up data in only one table.
+ * @param string $groupBy If set, this is added as a " GROUP BY ...." part of the query.
+ * @param string $orderBy If set, this is added as a " ORDER BY ...." part of the query. The default is that an ORDER BY clause is made based on $this->internal['orderBy'] and $this->internal['descFlag'] where the orderBy field must be found in $this->internal['orderByList']
+ * @param string $query If set, this is taken as the first part of the query instead of what is created internally. Basically this should be a query starting with "FROM [table] WHERE ... AND ...". The $addWhere clauses and all the other stuff is still added. Only the tables and PID selecting clauses are bypassed. May be deprecated in the future!
+ * @return Result
+ */
+ public function pi_exec_query($table, $count = false, $addWhere = '', $mm_cat = '', $groupBy = '', $orderBy = '', $query = '')
+ {
+ $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($table);
+ $queryBuilder->from($table);
+
+ // Begin Query:
+ if (!$query) {
+ // This adds WHERE-clauses that ensures deleted, hidden, starttime/endtime/access records are NOT
+ // selected, if they should not! Almost ALWAYS add this to your queries!
+ $queryBuilder->setRestrictions(GeneralUtility::makeInstance(FrontendRestrictionContainer::class));
+
+ // Fetches the list of PIDs to select from.
+ // TypoScript property .pidList is a comma list of pids. If blank, current page id is used.
+ // TypoScript property .recursive is an int+ which determines how many levels down from the pids in the pid-list subpages should be included in the select.
+ $pidList = GeneralUtility::intExplode(',', $this->pi_getPidList($this->conf['pidList'] ?? '', (int)($this->conf['recursive'] ?? 0)), true);
+ if (is_array($mm_cat)) {
+ $queryBuilder->from($mm_cat['table'])
+ ->from($mm_cat['mmtable'])
+ ->where(
+ $queryBuilder->expr()->eq($table . '.uid', $queryBuilder->quoteIdentifier($mm_cat['mmtable'] . '.uid_local')),
+ $queryBuilder->expr()->eq($mm_cat['table'] . '.uid', $queryBuilder->quoteIdentifier($mm_cat['mmtable'] . '.uid_foreign')),
+ $queryBuilder->expr()->in(
+ $table . '.pid',
+ $queryBuilder->createNamedParameter($pidList, Connection::PARAM_INT_ARRAY)
+ )
+ );
+ $catUidList = (string)($mm_cat['catUidList'] ?? '');
+ if ($catUidList !== '') {
+ $queryBuilder->andWhere(
+ $queryBuilder->expr()->in(
+ $mm_cat['table'] . '.uid',
+ $queryBuilder->createNamedParameter(
+ GeneralUtility::intExplode(',', $catUidList, true),
+ Connection::PARAM_INT_ARRAY
+ )
+ )
+ );
+ }
+ } else {
+ $queryBuilder->where(
+ $queryBuilder->expr()->in(
+ 'pid',
+ $queryBuilder->createNamedParameter($pidList, Connection::PARAM_INT_ARRAY)
+ )
+ );
+ }
+ } else {
+ // Restrictions need to be handled by the $query parameter!
+ $queryBuilder->getRestrictions()->removeAll();
+
+ // Split the "FROM ... WHERE" string so we get the WHERE part and TABLE names separated...:
+ [$tableListFragment, $whereFragment] = preg_split('/WHERE/i', trim($query), 2);
+ foreach (QueryHelper::parseTableList($tableListFragment) as $tableNameAndAlias) {
+ [$tableName, $tableAlias] = $tableNameAndAlias;
+ $queryBuilder->from($tableName, $tableAlias);
+ }
+ $queryBuilder->where(QueryHelper::stripLogicalOperatorPrefix($whereFragment));
+ }
+
+ // Add '$addWhere'
+ if ($addWhere) {
+ $queryBuilder->andWhere(QueryHelper::stripLogicalOperatorPrefix($addWhere));
+ }
+ // Search word:
+ if ($this->piVars['sword'] && ($this->internal['searchFieldList'] ?? false)) {
+ $searchWhere = QueryHelper::stripLogicalOperatorPrefix(
+ $this->cObj->searchWhere($this->piVars['sword'], $this->internal['searchFieldList'], $table)
+ );
+ if (!empty($searchWhere)) {
+ $queryBuilder->andWhere($searchWhere);
+ }
+ }
+
+ if ($count) {
+ $queryBuilder->count('*');
+ } else {
+ // Add 'SELECT'
+ $fields = $this->pi_prependFieldsWithTable($table, $this->pi_listFields);
+ $queryBuilder->select(...GeneralUtility::trimExplode(',', $fields, true));
+
+ // Order by data:
+ if (!$orderBy && ($this->internal['orderBy'] ?? false)) {
+ if (GeneralUtility::inList($this->internal['orderByList'], $this->internal['orderBy'])) {
+ $sorting = ($this->internal['descFlag'] ?? false) ? ' DESC' : 'ASC';
+ $queryBuilder->orderBy($table . '.' . $this->internal['orderBy'], $sorting);
+ }
+ } elseif ($orderBy) {
+ foreach (QueryHelper::parseOrderBy($orderBy) as $fieldNameAndSorting) {
+ [$fieldName, $sorting] = $fieldNameAndSorting;
+ $queryBuilder->addOrderBy($fieldName, $sorting);
+ }
+ }
+
+ // Limit data:
+ $pointer = (int)$this->piVars['pointer'];
+ $results_at_a_time = MathUtility::forceIntegerInRange(($this->internal['results_at_a_time'] ?? 1), 1, 1000);
+ $queryBuilder->setFirstResult($pointer * $results_at_a_time)
+ ->setMaxResults($results_at_a_time);
+
+ // Grouping
+ if (!empty($groupBy)) {
+ $queryBuilder->groupBy(...QueryHelper::parseGroupBy($groupBy));
+ }
+ }
+
+ return $queryBuilder->executeQuery();
+ }
+
+ /**
+ * Returns the row $uid from $table
+ * (Simply calling $this->frontendEngine->sys_page->checkRecord())
+ *
+ * @param string $table The table name
+ * @param int $uid The uid of the record from the table
+ * @param bool $checkPage If $checkPage is set, it's required that the page on which the record resides is accessible
+ * @return array If record is found, an array. Otherwise FALSE.
+ */
+ public function pi_getRecord($table, $uid, $checkPage = false)
+ {
+ return $this->frontendController->sys_page->checkRecord($table, $uid, $checkPage);
+ }
+
+ /**
+ * Returns a commalist of page ids for a query (eg. 'WHERE pid IN (...)')
+ *
+ * @param string $pid_list A comma list of page ids (if empty current page is used)
+ * @param int $recursive An integer >=0 telling how deep to dig for pids under each entry in $pid_list
+ * @return string List of PID values (comma separated)
+ */
+ public function pi_getPidList($pid_list, $recursive = 0)
+ {
+ if (!strcmp($pid_list, '')) {
+ $pid_list = (string)$this->frontendController->id;
+ }
+ $recursive = MathUtility::forceIntegerInRange($recursive, 0);
+ $pid_list_arr = array_unique(GeneralUtility::intExplode(',', $pid_list, true));
+ $pid_list = GeneralUtility::makeInstance(PageRepository::class)->getPageIdsRecursive($pid_list_arr, $recursive);
+ return implode(',', $pid_list);
+ }
+
+ /**
+ * Having a comma list of fields ($fieldList) this is prepended with the $table.'.' name
+ *
+ * @param string $table Table name to prepend
+ * @param string $fieldList List of fields where each element will be prepended with the table name given.
+ * @return string List of fields processed.
+ */
+ public function pi_prependFieldsWithTable($table, $fieldList)
+ {
+ $list = GeneralUtility::trimExplode(',', $fieldList, true);
+ $return = [];
+ foreach ($list as $listItem) {
+ $return[] = $table . '.' . $listItem;
+ }
+ return implode(',', $return);
+ }
+
+ /**
+ * Will select all records from the "category table", $table, and return them in an array.
+ *
+ * @param string $table The name of the category table to select from.
+ * @param int $pid The page from where to select the category records.
+ * @param string $whereClause Optional additional WHERE clauses put in the end of the query. DO NOT PUT IN GROUP BY, ORDER BY or LIMIT!
+ * @param string $groupBy Optional GROUP BY field(s), if none, supply blank string.
+ * @param string $orderBy Optional ORDER BY field(s), if none, supply blank string.
+ * @param string $limit Optional LIMIT value ([begin,]max), if none, supply blank string.
+ * @return array The array with the category records in.
+ */
+ public function pi_getCategoryTableContents($table, $pid, $whereClause = '', $groupBy = '', $orderBy = '', $limit = '')
+ {
+ $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($table);
+ $queryBuilder->setRestrictions(GeneralUtility::makeInstance(FrontendRestrictionContainer::class));
+ $queryBuilder->select('*')
+ ->from($table)
+ ->where(
+ $queryBuilder->expr()->eq(
+ 'pid',
+ $queryBuilder->createNamedParameter($pid, Connection::PARAM_INT)
+ ),
+ QueryHelper::stripLogicalOperatorPrefix($whereClause)
+ );
+
+ if (!empty($orderBy)) {
+ foreach (QueryHelper::parseOrderBy($orderBy) as $fieldNameAndSorting) {
+ [$fieldName, $sorting] = $fieldNameAndSorting;
+ $queryBuilder->addOrderBy($fieldName, $sorting);
+ }
+ }
+
+ if (!empty($groupBy)) {
+ $queryBuilder->groupBy(...QueryHelper::parseGroupBy($groupBy));
+ }
+
+ if (!empty($limit)) {
+ $limitValues = GeneralUtility::intExplode(',', (string)$limit, true);
+ if (count($limitValues) === 1) {
+ $queryBuilder->setMaxResults($limitValues[0]);
+ } else {
+ $queryBuilder->setFirstResult($limitValues[0])
+ ->setMaxResults($limitValues[1]);
+ }
+ }
+
+ $result = $queryBuilder->executeQuery();
+ $outArr = [];
+ while ($row = $result->fetchAssociative()) {
+ $outArr[$row['uid']] = $row;
+ }
+ return $outArr;
+ }
+
+ /***************************
+ *
+ * Various
+ *
+ **************************/
+ /**
+ * Returns TRUE if the piVars array has ONLY those fields entered that is set in the $fList (commalist) AND if none of those fields value is greater than $lowerThan field if they are integers.
+ * Notice that this function will only work as long as values are integers.
+ *
+ * @param string $fList List of fields (keys from piVars) to evaluate on
+ * @param int $lowerThan Limit for the values.
+ * @return bool|null Returns TRUE (1) if conditions are met.
+ */
+ public function pi_isOnlyFields($fList, $lowerThan = -1)
+ {
+ $lowerThan = $lowerThan == -1 ? $this->pi_lowerThan : $lowerThan;
+ $fList = GeneralUtility::trimExplode(',', $fList, true);
+ $tempPiVars = $this->piVars;
+ foreach ($fList as $k) {
+ if (isset($tempPiVars[$k]) && (!MathUtility::canBeInterpretedAsInteger($tempPiVars[$k]) || $tempPiVars[$k] < $lowerThan)) {
+ unset($tempPiVars[$k]);
+ }
+ }
+ if (empty($tempPiVars)) {
+ // @TODO: How do we deal with this? return TRUE would be the right thing to do here but that might be breaking
+ return 1;
+ }
+ return null;
+ }
+
+ /**
+ * Returns TRUE if the array $inArray contains only values allowed to be cached based on the configuration in $this->pi_autoCacheFields
+ * Used by ->pi_linkTP_keepPIvars
+ * This is an advanced form of evaluation of whether a URL should be cached or not.
+ *
+ * @param array $inArray An array with piVars values to evaluate
+ * @return bool|null Returns TRUE (1) if conditions are met.
+ * @see pi_linkTP_keepPIvars()
+ */
+ public function pi_autoCache($inArray)
+ {
+ if (is_array($inArray)) {
+ foreach ($inArray as $fN => $fV) {
+ if (!strcmp($inArray[$fN], '')) {
+ unset($inArray[$fN]);
+ } elseif (is_array($this->pi_autoCacheFields[$fN])) {
+ if (is_array($this->pi_autoCacheFields[$fN]['range']) && (int)$inArray[$fN] >= (int)$this->pi_autoCacheFields[$fN]['range'][0] && (int)$inArray[$fN] <= (int)$this->pi_autoCacheFields[$fN]['range'][1]) {
+ unset($inArray[$fN]);
+ }
+ if (is_array($this->pi_autoCacheFields[$fN]['list']) && in_array($inArray[$fN], $this->pi_autoCacheFields[$fN]['list'])) {
+ unset($inArray[$fN]);
+ }
+ }
+ }
+ }
+ if (empty($inArray)) {
+ // @TODO: How do we deal with this? return TRUE would be the right thing to do here but that might be breaking
+ return 1;
+ }
+ return null;
+ }
+
+ /**
+ * Will process the input string with the parseFunc function from ContentObjectRenderer based on configuration
+ * set in "lib.parseFunc_RTE" in the current TypoScript template.
+ *
+ * @param string $str The input text string to process
+ * @return string The processed string
+ * @see ContentObjectRenderer::parseFunc()
+ */
+ public function pi_RTEcssText($str)
+ {
+ $str = $this->cObj->parseFunc($str, null, '< lib.parseFunc_RTE');
+ return $str;
+ }
+
+ /*******************************
+ *
+ * FlexForms related functions
+ *
+ *******************************/
+ /**
+ * Converts $this->cObj->data['pi_flexform'] from XML string to flexForm array.
+ *
+ * @param string $field Field name to convert
+ */
+ public function pi_initPIflexForm($field = 'pi_flexform')
+ {
+ // Converting flexform data into array
+ $fieldData = $this->cObj->data[$field] ?? null;
+ if (!is_array($fieldData) && $fieldData) {
+ $this->cObj->data[$field] = GeneralUtility::xml2array((string)$fieldData);
+ if (!is_array($this->cObj->data[$field])) {
+ $this->cObj->data[$field] = [];
+ }
+ }
+ }
+
+ /**
+ * Return value from somewhere inside a FlexForm structure
+ *
+ * @param array $T3FlexForm_array FlexForm data
+ * @param string $fieldName Field name to extract. Can be given like "test/el/2/test/el/field_templateObject" where each part will dig a level deeper in the FlexForm data.
+ * @param string $sheet Sheet pointer, eg. "sDEF
+ * @param string $lang Language pointer, eg. "lDEF
+ * @param string $value Value pointer, eg. "vDEF
+ * @return string|null The content.
+ */
+ public function pi_getFFvalue($T3FlexForm_array, $fieldName, $sheet = 'sDEF', $lang = 'lDEF', $value = 'vDEF')
+ {
+ $sheetArray = $T3FlexForm_array['data'][$sheet][$lang] ?? '';
+ if (is_array($sheetArray)) {
+ return $this->pi_getFFvalueFromSheetArray($sheetArray, explode('/', $fieldName), $value);
+ }
+ return null;
+ }
+
+ /**
+ * Returns part of $sheetArray pointed to by the keys in $fieldNameArray
+ *
+ * @param array $sheetArray Multidimensional array, typically FlexForm contents
+ * @param array $fieldNameArr Array where each value points to a key in the FlexForms content - the input array will have the value returned pointed to by these keys. All integer keys will not take their integer counterparts, but rather traverse the current position in the array and return element number X (whether this is right behavior is not settled yet...)
+ * @param string $value Value for outermost key, typ. "vDEF" depending on language.
+ * @return mixed The value, typ. string.
+ * @internal
+ * @see pi_getFFvalue()
+ */
+ public function pi_getFFvalueFromSheetArray($sheetArray, $fieldNameArr, $value)
+ {
+ $tempArr = $sheetArray;
+ foreach ($fieldNameArr as $k => $v) {
+ if (MathUtility::canBeInterpretedAsInteger($v)) {
+ if (is_array($tempArr)) {
+ $c = 0;
+ foreach ($tempArr as $values) {
+ if ($c == $v) {
+ $tempArr = $values;
+ break;
+ }
+ $c++;
+ }
+ }
+ } elseif (isset($tempArr[$v])) {
+ $tempArr = $tempArr[$v];
+ }
+ }
+ return $tempArr[$value] ?? '';
+ }
+
+ /**
+ * Returns the global arrays $_GET and $_POST merged with $_POST taking precedence.
+ *
+ * @param string $parameter Key (variable name) from GET or POST vars
+ * @return array Returns the GET vars merged recursively onto the POST vars.
+ */
+ private static function getRequestPostOverGetParameterWithPrefix($parameter)
+ {
+ $request = $GLOBALS['TYPO3_REQUEST'];
+ $postParameter = $request->getParsedBody()[$parameter] ?? [];
+ $postParameter = is_array($postParameter) ? $postParameter : [];
+ $getParameter = $request->getQueryParams()[$parameter] ?? [];
+ $getParameter = is_array($getParameter) ? $getParameter : [];
+ $mergedParameters = $getParameter;
+ ArrayUtility::mergeRecursiveWithOverrule($mergedParameters, $postParameter);
+ return $mergedParameters;
+ }
+}