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 Acme\Package\Tests\Functional; | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\Flow\Configuration\ConfigurationManager; | |
use TYPO3\Flow\Tests\FunctionalTestCase; | |
use TYPO3\Eel\Utility as EelUtility; | |
/** | |
* Designed as a functional test, should offer every information you need to get started. |
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
- | |
name: 'Search paginate' | |
uriPattern: '{node}/{--typo3-typo3cr-viewhelpers-widget-paginateviewhelper.currentPage}' | |
defaults: | |
'@package': 'TYPO3.Neos' | |
'@controller': 'Frontend\Node' | |
'@format': 'html' | |
'@action': 'show' | |
'--typo3-typo3cr-viewhelpers-widget-paginateviewhelper': | |
'@package': '' |
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 Some\Package\Domain\Model; | |
use TYPO3\Flow\Annotations as Flow; | |
use Doctrine\ORM\Mapping as ORM; | |
use TYPO3\Flow\Security\Policy\Role; | |
use TYPO3\Party\Domain\Model\AbstractParty; | |
/** | |
* A User |