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
| @mixin box-shadow($top, $left, $blur, $color, $inset: false) { | |
| @if $inset { | |
| -webkit-box-shadow:inset $top $left $blur $color; | |
| -moz-box-shadow:inset $top $left $blur $color; | |
| box-shadow:inset $top $left $blur $color; | |
| } @else { | |
| -webkit-box-shadow: $top $left $blur $color; | |
| -moz-box-shadow: $top $left $blur $color; | |
| box-shadow: $top $left $blur $color; | |
| } |
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
| Information for route 1: | |
| Name: Solutions :: Company.Solutions Show Solution | |
| Pattern: {node}/service/{solution}.html | |
| Defaults: | |
| - @package => TYPO3.TYPO3 | |
| - @controller => Frontend\Node | |
| - @format => html | |
| - @action => show | |
| - --typo3_typo3_typoscript_plugin => Array | |
| Append: FALSE |
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
| <div class="two-column columns-50-50"> | |
| <div class="column column-1"> | |
| </div> | |
| <div class="column column-2"> | |
| </div> | |
| </div> |
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
| <? | |
| class MyController extends ActionController { | |
| protected $viewFormatToObjectNameMap = array( | |
| 'pdf' => '\TYPO3\TcPdf\View\HtmlPdfView' | |
| ); | |
| /** |
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
| FLOW3_Mvc_Routing_Resolve: | |
| backend: TYPO3\FLOW3\Cache\Backend\NullBackend | |
| FLOW3_Mvc_Routing_FindMatchResults: | |
| backend: TYPO3\FLOW3\Cache\Backend\NullBackend |
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
| public function initializeCreateEventAction() { | |
| $propertyMappingConfiguration = $this->arguments->getArgument('event')->getPropertyMappingConfiguration(); | |
| $propertyMappingConfiguration->setTypeConverterOption('TYPO3\Flow\Property\TypeConverter\PersistentObjectConverter', self::CONFIGURATION_TARGET_TYPE, 'YOUR_TARGET_TYPE_HERE'); | |
| } |
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 | |
| class Objectives { | |
| public function setMeasures($measures) { | |
| $this->measures = $measures; | |
| foreach($measures as $measure { | |
| $measure->setObjective($this); | |
| } |
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 Ttree\Medialib\Core\Security; | |
| /* * | |
| * This script belongs to the FLOW3 package "Ttree.Medialib". * | |
| * * | |
| * It is free software; you can redistribute it and/or modify it under * | |
| * the terms of the GNU Lesser General Public License, either version 3 * | |
| * of the License, or (at your option) any later version. * | |
| * * |
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\Conference\Aspect; | |
| /* * | |
| * This script belongs to the FLOW3 package "Conference". * | |
| * * | |
| * It is free software; you can redistribute it and/or modify it under * | |
| * the terms of the GNU Lesser General Public License as published by the * | |
| * Free Software Foundation, either version 3 of the License, or (at your * | |
| * option) any later version. * |
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
| page.headerData { | |
| description = ${node.getProperty('description')} | |
| description << 1.wrap(prefix: '<meta name="description" content="', suffix: '" />') | |
| keywords = ${node.getProperty('keywords')} | |
| keywords << 1.wrap(prefix: '<meta name="keywords" content="', suffix: '" />') | |
| } |