This file contains 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
nohup /Foo/Bar/flow job:work theQueueName >> /var/log/beanstalkd/theQueueName.log 2>&1 & |
This file contains 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
$query = $this->createQuery(); | |
/** | |
* @var \Doctrine\ORM\QueryBuilder $queryBuilder | |
*/ | |
$queryBuilder = \TYPO3\Flow\Reflection\ObjectAccess::getProperty($query, 'queryBuilder', TRUE); | |
\TYPO3\Flow\var_dump($queryBuilder->getQuery()->getSQL(), __CLASS__ . '#' . __LINE__, FALSE, FALSE); |
This file contains 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 | |
$array = array( | |
'foo' => array( | |
'bar' => array( | |
'baz' => 'bar' | |
) | |
) | |
); | |
This file contains 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 | |
/* * | |
* This script belongs to the TYPO3 Flow framework. * | |
* * | |
* It is free software; you can redistribute it and/or modify it under * | |
* the terms of the GNU Lesser General Public License, either version 3 * | |
* of the License, or (at your option) any later version. * | |
* * | |
* The TYPO3 project - inspiring people to share! * | |
* */ |
This file contains 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
isnt it better to order the arguments of addFlashMessage like message itself accepts them. | |
\TYPO3\Flow\Error\Notice($messageBody, $messageCode, $messageArguments, $messageTitle) | |
in most cases i just need $messageBody and $messageCode. severity can be dafault. but i have to put the argument for severity just to be able to add a $messageCode. | |
$this->addFlashMessage('Done',123423423); | |
this is coded faster if you want to translate messages by id in rendering instead of: | |
$this->addFlashMessage('Done', '', Message::SEVERITY_OK, array(), 123423423) | |
also a use statement is needed for this if you dont want to use fqn. |
This file contains 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
prototype(BLEICKER.Commerce:ArticleStartingPoint.De) < prototype(TYPO3.TypoScript:Value) { | |
value = ${q(site).children('de').children('artikel').get(0)} | |
} | |
prototype(BLEICKER.Commerce:ArticleStartingPoint.En) < prototype(TYPO3.TypoScript:Value) { | |
value = ${q(site).children('en').children('articles').get(0)} | |
} | |
prototype(BLEICKER.Pipeu:ArticleTeaserList) < prototype(TYPO3.Neos.NodeTypes:Menu) |
This file contains 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
prototype(BLEICKER.Pipeu:ArticleTeaserList) < prototype(TYPO3.Neos.NodeTypes:Menu) | |
prototype(BLEICKER.Pipeu:ArticleTeaserList) { | |
startingPoint = ${q(site).children('de').children('artikel')} | |
} |
This file contains 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
Exception while rendering | |
page<TYPO3.Neos:Page>/body<TYPO3.Neos:Template>/content/intro<TYPO3.Neos:ContentCollection>/default<TYPO3.TypoScript:Matcher>/element<TYPO3.Neos:ContentCollection.Default>/itemRenderer<TYPO3.Neos:ContentCase>/default<TYPO3.TypoScript:Matcher>/element<BLEICKER.Pipeu:ArticleTeaserList>: | |
Catchable Fatal Error: Argument 3 passed to TYPO3\Neos\TypoScript\MenuImplementation_Original::findParentNodeInBreadcrumbPathByLevel() must implement interface TYPO3\TYPO3CR\Domain\Model\NodeInterface, string given, called in /Users/pumatertion/Sites/neospipeu/Data/Temporary/Development/Cache/Code/Flow_Object_Classes/TYPO3_Neos_TypoScript_MenuImplementation.php on line 202 and defined in /Users/pumatertion/Sites/neospipeu/Data/Temporary/Development/Cache/Code/Flow_Object_Classes/TYPO3_Neos_TypoScript_MenuImplementation.php line 264 (20130725112800f29d2e) |
This file contains 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 neos=TYPO3\Neos\ViewHelpers} | |
<neos:contentElement node="{node}"> | |
<neos:contentElement.editable property="title">{title -> f:format.raw()}</neos:contentElement.editable> | |
</neos:contentElement> |
This file contains 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 BLEICKER\Mailer\Services; | |
/* * | |
* This script belongs to the FLOW3 package "BLEICKER.Mailer". * | |
* * | |
* */ | |
use TYPO3\FLOW3\Annotations as FLOW3; |