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 Site\Site\ErrorHandler; | |
use Psr\Http\Message\ResponseInterface; | |
use Psr\Http\Message\ServerRequestInterface; | |
use Site\Site\Service\RealurlRedirectService; | |
use TYPO3\CMS\Core\Site\Entity\Site; | |
use TYPO3\CMS\Core\Site\Entity\SiteLanguage; |
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 Site\Site\Hooks; | |
class TypolinkFileHandler | |
{ | |
/** | |
* @param array $params | |
* @param \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer $parentObject | |
*/ |
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\Admin\Controller; | |
use TYPO3\Flow\Annotations as Flow; | |
/** | |
* Class ContentController | |
*/ | |
class ContentController extends \TYPO3\Flow\Mvc\Controller\ActionController |