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 Wwwision\Test\Mvc; | |
| /* * | |
| * This script belongs to the TYPO3 Flow package "Wwwision.Test". * | |
| * * | |
| * */ | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Http\Component\ComponentChain; |
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
| <link rel="import" href="../google-map/google-map-search.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-scroll-header-panel/core-scroll-header-panel.html"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <link rel="import" href="../paper-button/paper-button.html"> | |
| <polymer-element name="my-element"> | |
| <template> |
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 Wwwision\Jwt\Security\Authentication\Token; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Mvc\ActionRequest; | |
| use TYPO3\Flow\Security\Authentication\Token\AbstractToken; | |
| use TYPO3\Flow\Security\Authentication\Token\SessionlessTokenInterface; | |
| /** | |
| * An authentication token used for simple username and password authentication. |
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
| rawContent.body.allContentCollections.renderer = TYPO3.Neos:RawContent |
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
| - | |
| name: 'Flickr: User stream' | |
| uriPattern: '{node}/user/{--typo3_neosdemotypo3org-flickr.userId}.html' | |
| defaults: | |
| '@package': 'TYPO3.Neos' | |
| '@controller': 'Frontend\Node' | |
| '@action': 'show' | |
| '@format': 'html' | |
| '--typo3_neosdemotypo3org-flickr': | |
| '@package': 'TYPO3.NeosDemoTypo3Org' |
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 Your\Package\Form\Finishers; | |
| use TYPO3\Flow\Utility\Arrays; | |
| use TYPO3\Fluid\View\StandaloneView; | |
| use TYPO3\Form\Core\Model\AbstractFinisher; | |
| use TYPO3\Form\Core\Runtime\FormRuntime; | |
| use TYPO3\Form\Exception\FinisherException; | |
| /** |
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 Your\Package\Error; | |
| /* * | |
| * This script belongs to the TYPO3 Flow package "Your.Package". * | |
| * * | |
| * */ | |
| use TYPO3\Flow\Error\ProductionExceptionHandler; |
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
| TYPO3: | |
| Flow: | |
| # disable reflection for non psr-0 compliant 3rd party packages | |
| object: | |
| excludeClasses: | |
| 'gedmo.doctrineextensions' : ['Gedmo\\.*'] | |
| # register soft deletable filter & event listeners | |
| persistence: | |
| doctrine: |
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 Your\Package\Command; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Cli\CommandController; | |
| /** | |
| * Abstract base class for command controllers of the "Your.Package" package | |
| */ | |
| abstract class AbstractCommandController extends CommandController { |
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 Acme\JobQueueTest; | |
| /* * | |
| * This script belongs to the TYPO3 Flow package "Acme.JobQueueTest". * | |
| * * | |
| * */ | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Utility\Files; |