postProcessDataStructure() публичный Метод

Post-process the TCEforms DataStructure for a record associated with this ConfigurationProvider
public postProcessDataStructure ( array &$row, mixed &$dataStructure, array $conf ) : void
$row array
$dataStructure mixed
$conf array
Результат void
Пример #1
0
 /**
  * Post-process the TCEforms DataStructure for a record associated
  * with this ConfigurationProvider
  *
  * @param array $row
  * @param mixed $dataStructure
  * @param array $conf
  * @return NULL
  */
 public function postProcessDataStructure(array &$row, &$dataStructure, array $conf)
 {
     $action = $this->getControllerActionReferenceFromRecord($row);
     if (TRUE === empty($action)) {
         if (FALSE === $this->isUsingSubFieldName()) {
             $this->configurationService->message('No controller action was found for this page.', GeneralUtility::SYSLOG_SEVERITY_WARNING);
         }
         return NULL;
     }
     parent::postProcessDataStructure($row, $dataStructure, $conf);
 }