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\ViewHelpers\Link; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Aop\JoinPoint; | |
| use TYPO3\Flow\Mvc\ActionRequest; | |
| use TYPO3\Flow\Security\Authorization\Privilege\Method\MethodPrivilegeInterface; | |
| use TYPO3\Flow\Security\Authorization\Privilege\Method\MethodPrivilegeSubject; | |
| use TYPO3\Flow\Security\Authorization\PrivilegeManagerInterface; | |
| use TYPO3\Fluid\ViewHelpers\Link\ActionViewHelper; |
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; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Http\Component\ComponentContext; | |
| use TYPO3\Flow\Http\Component\ComponentInterface; | |
| use TYPO3\Flow\Mvc\Routing\RoutingComponent; | |
| use TYPO3\Flow\Utility\Arrays; | |
| class DetectSubdomainComponent implements ComponentInterface |
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:form action="upload" enctype="multipart/form-data"> | |
| <f:form.upload name="resources[]" additionalAttributes="{multiple: true}" /> | |
| <f:form.submit value="Upload new resources"/> | |
| </f:form> |
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 | |
| declare(strict_types=1); | |
| namespace Your\Package\Security\Authentication; | |
| use Neos\Flow\Annotations as Flow; | |
| use Neos\Flow\Mvc\ActionRequest; | |
| use Neos\Flow\Security\Authentication\Token\AbstractToken; | |
| use Neos\Flow\Security\Authentication\Token\SessionlessTokenInterface; | |
| /** |
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: 'NewAction' | |
| uriPattern: 'new' | |
| defaults: | |
| '@action': 'new' | |
| httpMethods: [GET] | |
| - | |
| name: 'CreateAction' | |
| uriPattern: 'create' |
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: | |
| security: | |
| authentication: | |
| providers: | |
| 'HttpBasicProvider': | |
| provider: 'PersistedUsernamePasswordProvider' | |
| token: 'TYPO3\Flow\Security\Authentication\Token\UsernamePasswordHttpBasic' | |
| entryPoint: 'HttpBasic' |
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\ViewHelpers\Format; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Fluid\Core\ViewHelper\AbstractViewHelper; | |
| /** | |
| * ViewHelper rendering the given HTML string through HTMLPurifier | |
| */ | |
| class PurifyViewHelper extends AbstractViewHelper { |
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 TomasNorre\GolfnetInvitational\Domain\Model; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use Doctrine\ORM\Mapping as ORM; | |
| /** | |
| * @Flow\Entity | |
| */ | |
| class Player { |
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\Http; | |
| /* * | |
| * This script belongs to the TYPO3 Flow package "Wwwision.Test". * | |
| * * | |
| * */ | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Http\Component\ComponentChain; |