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 executeProviderMethod($methodName, $uid, $nodeType, $backendLayout, $columnPosition) | |
{ | |
$detectedProviders = $this->providerResolver->resolveProviders($uid, $nodeType, $backendLayout, $columnPosition); | |
$currentDefinitions = []; | |
foreach ($detectedProviders as $provider) { | |
$currentDefinitions = array_merge($currentDefinitions, call_user_func_array([$provider, $methodName], array_values($currentDefinitions))); | |
} |
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 TYPO3\CMS\NewContentElementWizard\Domain\Model; | |
class ContentElementDefinitionGroup | |
{ | |
/** | |
* @var String | |
*/ | |
protected $header; |
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
Verifying that +jmverges is my blockchain ID. https://onename.com/jmverges |
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 My\Extension\Hooks; | |
use FluidTYPO3\Fluidpages\Provider\PageProvider; | |
use TYPO3\CMS\Backend\Controller\PageLayoutController; | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
use TYPO3\CMS\Extbase\Object\ObjectManager; | |
use FluidTYPO3\Flux\Service\WorkspacesAwareRecordService; | |
use FluidTYPO3\Flux\View\PreviewView; |
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
git commit -a --amend && git push -f |
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
composer install && ./vendor/bin/make && git checkout -b mycoolfeature development |
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
git remote add upstream https://github.com/FluidTYPO3/flux.git && git remote update && git reset --hard upstream/development && git push origin +development && git checkout -b fixForFluxColumn development |
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
<div xmlns="http://www.w3.org/1999/xhtml" lang="en" | |
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" | |
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" | |
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers"> | |
<f:layout name="Content" /> | |
<f:section name="Configuration"> | |
<flux:form id="container"> | |
<flux:form.option name="group" value="Layout" /> |
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
{namespace flux=FluidTYPO3\Flux\ViewHelpers} | |
{namespace v=Tx_Vhs_ViewHelpers} | |
<f:layout name="Content" /> | |
<f:section name="Configuration"> | |
<flux:form id="image" wizardTab="Content" options="{Fluidcontent: '{sorting: 40}'}"> | |
<flux:field.inline.fal name="image" minItems="1" /> | |
<flux:field.checkbox name="zoom" /> | |
<flux:field.checkbox name="showBorder" /> |
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
$GLOBALS['TT'] = new \TYPO3\CMS\Core\TimeTracker\NullTimeTracker(); | |
$GLOBALS['TSFE'] = new \TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController($TYPO3_CONF_VARS, $pid, | |
0, true); | |
$GLOBALS['TSFE']->connectToDB(); | |
$GLOBALS['TSFE']->initFEuser(); | |
$GLOBALS['TSFE']->determineId(); | |
$GLOBALS['TSFE']->getCompressedTCarray(); | |
$GLOBALS['TSFE']->initTemplate(); | |
$GLOBALS['TSFE']->getConfigArray(); | |
$settings = $GLOBALS['TSFE']->tmpl->setup; |
NewerOlder