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(Fleos:TwoColumn) > | |
prototype(Fleos:TwoColumn) < prototype(TYPO3.Neos.NodeTypes:MultiColumn) { | |
attributes.class = 'row' | |
attributes.style = TYPO3.Neos:ImageUri { | |
asset = ${q(node).property('backgroundImage')} | |
@process.wrapBackgroundImage = ${value ? (' background-image: url(' + value + ');') : ''} | |
@process.addGenericBackground = ${'background: ' + q(node).property('background') + ';' + value} | |
} |
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
'Foo.Bar:NodeType': | |
label: | |
expression: ${some expression here} | |
generator: | |
class: 'Some\Node\Label\Generator' | |
options: | |
ifNecessary: TRUE |
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
function mergeAttributes($array) { | |
$mergedAttributes = array(); | |
foreach(func_get_args() as $argument) { | |
foreach($argument as $key => $value) { | |
if (!isset($mergedAttributes[$key]) { | |
$mergedAttributes[$key] = array(); | |
} | |
if (is_array($value)) { | |
foreach($value as $innerValue) { | |
$mergedAttributes[$key][] = $innerValue; |
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(CORE4.EventBase:Event) > | |
prototype(CORE4.EventBase:Event) < prototype(TYPO3.Neos:Page) { | |
body { | |
templatePath = 'resource://CORE4.EventBase/Private/Templates/NodeTypes/Event.html' | |
sectionName = 'body' | |
content { | |
images = ContentCollection { | |
nodePath = 'images' | |
} | |
description = PrimaryContent { |
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(Customer.Products:ProductImageContainer) { | |
text = ${q(node).property('text')} | |
link = ${q(node).property('link')} | |
image = TYPO3.Neos.NodeTypes:Image { | |
@override.node = ${q(node).children('content').children('[instanceof TYPO3.Neos.NodeTypes:Image]').get(0)} | |
} | |
} |
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
# Action | |
/** | |
* Shows a list of books | |
* | |
* @return void | |
*/ | |
public function booksAction() { | |
$genre = $this->getQueryStringVar('genre'); | |
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 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 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 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 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
<f:flashMessages /> | |
<f:form action="create" controller="Login" method="post" name="createform"> | |
<div><label>Email:</label><f:form.textfield name="email" /></div> | |
<div><label>Password:</label><f:form.textfield name="pw" /></div> | |
<div><label>Repeat Password:</label><f:form.textfield name="pwr" /></div> | |
<div><label>Username:</label><f:form.textfield name="uname" /></div> | |
<f:form.submit value="Register and Login" /> | |
</f:form> |
NewerOlder