This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hier wie versprochen mein Rezept: | |
500g Weizenmehl, | |
50g Margarine | |
1 Teeloeffel Salz | |
250ml Milch | |
1 Ei | |
1 Wuerfel frische Hefe | |
Mehl in eine Schuessel sieben, in die Mitte ein Kuhle druecken. Milch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Controller ### | |
public function listAction($search = NULL) { | |
if ($search === NULL) { | |
/** @var ...\Domain\Model\Search $search */ | |
$search = $this->objectManager->get('...\\Domain\\Model\\Search'); | |
$this->getCategorySearchFilterFromFlexForm($search); // this sets some preconfigured values from a flexform | |
} | |
$records = $this->recordRepository->findBySearchParameters($search); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*************************************************************** | |
* Copyright notice | |
* | |
* (c) 2013 | |
* @author Anja Leichsenring <[email protected]> | |
* All rights reserved | |
* | |
* This script is part of the TYPO3 project. The TYPO3 project is | |
* free software; you can redistribute it and/or modify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin( | |
$_EXTKEY, | |
'ObjectRandom', | |
'Object Trailer' | |
); | |
$pluginSignature = str_replace('_', '', $_EXTKEY) . '_objectrandom'; | |
$TCA['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] = 'pi_flexform'; | |
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature, 'FILE:EXT:' . $_EXTKEY . '/Configuration/FlexForm/AbstractObject/Flexform.xml'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL: | |
images int(11) unsigned DEFAULT '0', | |
======================================================= | |
TCA | |
.... | |
'images' => array( | |
'exclude' => 0, | |
'label' => 'images', | |
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig( | |
'images', |