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
prototype(TYPO3.Neos:PrimaryContent).event { | |
condition = ${q(node).is('[instanceof Ttree.OfficialWebsite:Reference]')} | |
type = 'Ttree.OfficialWebsite:Reference' | |
} |
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 neos=TYPO3\Neos\ViewHelpers} | |
<neos:contentElement node="{node}"> | |
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script> | |
<script> | |
<![CDATA[ | |
function initializeMap]]>{node.name}<![CDATA[() { | |
var myLatlng = new google.maps.LatLng(]]>{longitude}<![CDATA[,]]>{latitude}<![CDATA[); | |
var mapOptions = { | |
zoom: ]]>{zoomlevel}<![CDATA[, | |
center: myLatlng, |
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\TYPO3CR\Tests\Unit\Domain\Service; | |
/* * | |
* This script belongs to the TYPO3 Flow package "TYPO3.TYPO3CR". * | |
* * | |
* It is free software; you can redistribute it and/or modify it under * | |
* the terms of the GNU General Public License, either version 3 of the * | |
* License, or (at your option) any later version. * | |
* * |
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
prototype(TYPO3.Neos:PrimaryContent).referenceProject { | |
condition = ${q(node).is('[instanceof Ttree.OfficialWebsite:ReferenceProject]')} | |
type = 'Ttree.OfficialWebsite:ReferenceProject' | |
@position = 'before referenceCustomer' | |
} |
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
triggers: | |
eventNodeTypePublishedByMarketingTeam: | |
type: 'onBeforeNodePublishing' | |
condition:${q(node).is('[instanceof Ttree.Plugin:Event]') && q(user).hasRole('Ttree.Site:MarketingTeam')} | |
eventNodeTypeDeleted: | |
type: 'onNodeDeletion' | |
condition:${q(node).is('[instanceof Ttree.Plugin:Event]')} | |
actions: |
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
# Base class for all "Plugins"; that are PHP controllers being called during the rendering. | |
'TYPO3.Neos:Plugin': | |
superTypes: ['TYPO3.Neos:Content'] | |
abstract: TRUE | |
ui: | |
label: 'Plugin' | |
group: 'plugins' | |
icon: 'icon-puzzle-piece' | |
inspector: | |
groups: |
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
# Use PHP GD php extension | |
TYPO3: | |
Imagine: | |
driver: 'Gd' | |
# Use PHP Gmagick php extension | |
TYPO3: | |
Imagine: | |
driver: 'Gmagick' | |
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
#!/bin/bash | |
EXIT_STATUS=0 | |
echo "#!/bin/bash" > ./docker-travis-test.sh | |
cat .travis.yml | shyaml get-values before_script >> ./docker-travis-test.sh | |
cat .travis.yml | shyaml get-values script >> ./docker-travis-test.sh | |
PHP_VERSIONS=`cat .travis.yml | shyaml get-values php` | |
for PHP_VERSION in $PHP_VERSIONS |