TYPO3 CMS  TYPO3_7-6
BackendUserGroupIntegrityCheck.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 
25 
30 {
38  public function processDatamap_afterDatabaseOperations($status, $table, $id, $fieldArray, $parentObject)
39  {
40  if ($table !== 'be_groups' || $GLOBALS['TYPO3_CONF_VARS']['BE']['explicitADmode'] !== 'explicitAllow') {
41  return;
42  }
43 
44  $backendUserGroup = BackendUtility::getRecord($table, $id, 'explicit_allowdeny');
45  $explicitAllowDenyFields = GeneralUtility::trimExplode(',', $backendUserGroup['explicit_allowdeny']);
46  foreach ($explicitAllowDenyFields as $value) {
47  if (StringUtility::beginsWith($value, 'tt_content:list_type:')) {
48  if (!in_array('tt_content:CType:list:ALLOW', $explicitAllowDenyFields, true)) {
50  $flashMessage = GeneralUtility::makeInstance(
51  FlashMessage::class,
52  $this->getLanguageService()->sl('LLL:EXT:lang/locallang_core.xlf:error.backendUserGroupListTypeError.message'),
53  $this->getLanguageService()->sl('LLL:EXT:lang/locallang_core.xlf:error.backendUserGroupListTypeError.header'),
55  true
56  );
58  $flashMessageService = GeneralUtility::makeInstance(FlashMessageService::class);
60  $defaultFlashMessageQueue = $flashMessageService->getMessageQueueByIdentifier();
61  $defaultFlashMessageQueue->enqueue($flashMessage);
62  }
63  return;
64  }
65  }
66  }
67 
71  protected function getLanguageService()
72  {
73  return $GLOBALS['LANG'];
74  }
75 }
static trimExplode($delim, $string, $removeEmptyValues=false, $limit=0)
static beginsWith($haystack, $needle)
static getRecord($table, $uid, $fields=' *', $where='', $useDeleteClause=true)
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']