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 | |
/** @var $extbaseObjectManager \TYPO3\CMS\Extbase\Object\ObjectManager */ | |
$extbaseObjectManager = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\Object\\ObjectManager'); | |
/** @var $newsRepository \Tx_News_Domain_Repository_NewsRepository */ | |
$newsRepository = $extbaseObjectManager->get('Tx_News_Domain_Repository_NewsRepository'); | |
/** @var $newsRecord \Tx_News_Domain_Model_News */ | |
$newsRecord = $newsRepository->findByUid($newsParams['news']); |
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 | |
... | |
/** | |
* @var \TYPO3\Flow\Mvc\Routing\UriBuilder | |
*/ | |
protected $uriBuilder; | |
/** |
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 Ag\Utility\Log\Backend; | |
use TYPO3\Flow\Annotations as Flow; | |
class EmailBackend extends \TYPO3\Flow\Log\Backend\AbstractBackend { | |
/** | |
* @var string|array | |
*/ |
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 TYPO3\Docs\Build\Storage; | |
/* * | |
* This script belongs to the FLOW3 package "TYPO3.Docs.Build". * | |
* * | |
* * | |
*/ | |
use TYPO3\FLOW3\Annotations as FLOW3; |