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 Vendor\Application\Security\Authentication\Oauth\Provider; | |
| abstract class AbstractOauthProvider extends AbstractProvider { | |
| /** | |
| * Oauth manager | |
| * | |
| * @var OauthManager |
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
| # Put into somewhere global | |
| prototype(Sfi.Site:FixedWidthContainer) < prototype(T:Tag) { | |
| tagName = 'div' | |
| attributes.class = 'fixed-width' | |
| } | |
| # Here goes reusing | |
| prototype(Sfi.Site:News) < prototype(Sfi.Site:FixedWithContainer) { | |
| } |
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
| # Just read the help | |
| soren@kevin ~/Sites/typo3-hyttekort ./typo3cms help install:setup | |
| Alpha version of a setup command. Use with care and at your own risk! | |
| COMMAND: | |
| typo3_console:install:setup | |
| USAGE: | |
| /Users/soren/Sites/typo3-hyttekort/./typo3cms ./typo3cms install:setup [<options>] |
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
| prototype(Vendor.Site:IncludeCss) < prototype(TYPO3.TypoScript:Tag) { | |
| tagName = 'link' | |
| attributes { | |
| type = 'text/css' | |
| rel = 'stylesheet' | |
| href = TYPO3.TypoScript:ResourceUri | |
| } | |
| } | |
| prototype(Vendor.Site:IncludeJs) < prototype(TYPO3.TypoScript:Tag) { |
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 Vendor\Namespace\ViewHelpers\Navigation; | |
| use TYPO3\Fluid\ViewHelpers\Link\ActionViewHelper; | |
| use TYPO3\Flow\Mvc\ActionRequest; | |
| class ItemViewHelper extends ActionViewHelper { | |
| public function render($action, $arguments = array(), $controller = NULL, $package = NULL, $subpackage = NULL, $section = '', $format = '', array $additionalParams = array(), $addQueryString = FALSE, array $argumentsToBeExcludedFromQueryString = array(), $useParentRequest = FALSE, $absolute = TRUE) { | |
| if ($action === NULL || $controller === NULL || $package === NULL) { |
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
| source 'https://rubygems.org' | |
| gem 'sass', '~> 3.4.0' | |
| gem 'compass', '1.0.0' |
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 Vendor\Project\Domain\Factory; | |
| use Vendor\Project\Exception\AccountIdentifierAlreadyExistsException; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use Vendor\Project\Domain\Model\User; | |
| use TYPO3\Party\Domain\Model\ElectronicAddress; | |
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
| <mypackage:link.node node="/sites/mysite/mypage">Click Me!</mypackage:link.node> |
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
| Pocketstore: | |
| Api: | |
| view: | |
| renderingConfigurations: | |
| 'store.show': | |
| properties: | |
| name: | |
| property: 'name' | |
| products: | |
| property: 'products' |
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 | |
| $GLOBALS['TCA']['tx_prisindeks_domain_model_index'] = array( | |
| 'ctrl' => $GLOBALS['TCA']['tx_prisindeks_domain_model_index']['ctrl'], | |
| 'interface' => array( | |
| 'showRecordFieldList' => 'hidden, name, entries', | |
| ), | |
| 'types' => array( | |
| '1' => array('showitem' => 'hidden;;1, --palette--;;1, entries'), | |
| ), |