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 Derhansen\SfEventMgtMultireg\ViewHelpers\Registration; | |
use DERHANSEN\SfEventMgt\Domain\Model\Registration; | |
use DERHANSEN\SfEventMgt\Domain\Repository\RegistrationRepository; | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper; | |
/** |
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 | |
// Current intExplode function in v13 | |
function intExplodeOld($delimiter, $string, $removeEmptyValues = false) | |
{ | |
$result = explode($delimiter, $string); | |
foreach ($result as $key => &$value) { | |
if ($removeEmptyValues && trim($value) === '') { | |
unset($result[$key]); | |
} else { |
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 | |
declare(strict_types=1); | |
namespace Derhansen\Typo3Dev\Utility; | |
use TYPO3\CMS\Core\Imaging\ImageManipulation\Area; | |
use TYPO3\CMS\Core\Imaging\ImageManipulation\CropVariantCollection; | |
use TYPO3\CMS\Core\Imaging\ImageManipulation\InvalidConfigurationException; | |
use TYPO3\CMS\Core\Resource\File; |
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 | |
phpinfo(); |
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 | |
declare(strict_types=1); | |
/* | |
* This file is part of the Extension "plain_faq" for TYPO3 CMS. | |
* | |
* For the full copyright and license information, please read the | |
* LICENSE.txt file that was distributed with this source code. | |
*/ |
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
public function downloadAction() | |
{ | |
$storage = $this->resourceFactory->getDefaultStorage(); | |
$file = $storage->getFile('test.jpg'); | |
$response = $storage->streamFile($file, true, 'test-filename.jpg'); | |
$this->sendResponse($response); | |
exit(); | |
} | |
protected function sendResponse($response) |
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 Vendor\Extension\Backend\Form\FormDataProvider; | |
use TYPO3\CMS\Backend\Form\FormDataProviderInterface; | |
/** | |
* Disables all IRRE Controls and sets fields of IRRE records to readonly | |
* | |
* Note: Depending on the TYPO3 backend user permissions, a user may still be able to edit record content | |
* (e.g. if table is available in record list and user has sufficient rights to edit data). But for inline integration, |
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 Vendor\Namespace\Utility; | |
use TYPO3\CMS\Extbase\Utility\LocalizationUtility as LocalizationUtilityExtbase; | |
/** | |
* Class LocalizationUtility | |
*/ | |
class LocalizationUtility extends LocalizationUtilityExtbase | |
{ |
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
### Keybase proof | |
I hereby claim: | |
* I am derhansen on github. | |
* I am derhansen (https://keybase.io/derhansen) on keybase. | |
* I have a public key ASC1s3gh8BEHLu7mPaudKjFkQNCPbDlV4u0ty5tpMyf9lwo | |
To claim this, I am signing this object: |
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
protected function getRootPage($uid) | |
{ | |
/** @var PageRepository $pageRepository */ | |
$pageRepository = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(PageRepository::class); | |
$rootLinePages = $pageRepository->getRootLine($uid); | |
$rootPage = null; | |
foreach ($rootLinePages as $page) { | |
if ($page['is_siteroot'] === '1') { | |
$rootPage = $page; | |
break; |
NewerOlder