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
Index: flow/Packages/Framework/TYPO3.Flow/Classes/TYPO3/Flow/Persistence/Doctrine/Query.php | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- flow/Packages/Framework/TYPO3.Flow/Classes/TYPO3/Flow/Persistence/Doctrine/Query.php (revision ) | |
+++ flow/Packages/Framework/TYPO3.Flow/Classes/TYPO3/Flow/Persistence/Doctrine/Query.php (revision ) | |
@@ -528,10 +528,14 @@ | |
$propertyPathParts = explode('.', $propertyPath); | |
$conditionPartsCount = count($propertyPathParts); |
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
{namespace ve=Vendor\Extension\ViewHelpers} | |
<f:for each="{yourArray -> ve:shuffle(limit:3)}" as="item"> | |
{item.name} | |
</f:for> |
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
<f:if condition="{newsItem.teaser}"> | |
<f:then> | |
<span itemprop="description"><f:format.html>{newsItem.teaser -> f:format.crop(maxCharacters: '{settings.cropMaxCharacters}', respectWordBoundaries:'1')} <n:link newsItem="{newsItem}" settings="{settings}" class="more" title="{newsItem.title}"><f:translate key="more-link"/></n:link></f:format.html></span> | |
</f:then> | |
<f:else> | |
<span itemprop="description"><f:format.html>{newsItem.bodytext -> f:format.crop(maxCharacters: '{settings.cropMaxCharacters}', respectWordBoundaries:'1')} <n:link newsItem="{newsItem}" settings="{settings}" class="more" title="{newsItem.title}"><f:translate key="more-link"/></n:link></f:format.html></span> | |
</f:else> | |
</f:if> |
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
lib.randomImages = COA | |
lib.randomImages { | |
10 = LOAD_REGISTER | |
10 { | |
images.cObject = FILES | |
images.cObject { | |
folders = 1:user_files/zufallsbilder/ | |
renderObj = TEXT | |
renderObj { |
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 | |
namespace TGM\TgmLib\ViewHelpers; | |
use TYPO3\CMS\Backend\Utility\BackendUtility; | |
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface; | |
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper; | |
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic; | |
/** | |
* GetRecordViewHelper |
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 | |
namespace Vendor\MyExt\Controller; | |
class MyController extends ActionController | |
{ | |
/** | |
* action create | |
* | |
* @param \Vendor\MyExt\Domain\Model\MyModel $myModel |
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 | |
namespace Vendor\Extension\ViewHelpers; | |
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface; | |
use TYPO3Fluid\Fluid\Core\ViewHelper; | |
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper; | |
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic; | |
class ForViewHelper extends AbstractViewHelper | |
{ |