- Tangerine Dreams
- System Of A Down
- Felix Meyer (Menschen des 21. Jahrhunderts)
- Seelig
- Seelig + Ina Müller
- Trio Elf
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 Vendor\Package\Routing\Aspects; | |
use Neos\Flow\Annotations as Flow; | |
use Neos\Flow\Aop\JoinPointInterface; | |
use Neos\Flow\Core\Bootstrap; | |
use Neos\Flow\Http\HttpRequestHandlerInterface; | |
use Neos\Flow\Mvc\Routing\RouterCachingService; | |
use Neos\Neos\Controller\Frontend\NodeController; | |
use Neos\ContentRepository\Domain\Model\NodeInterface; |
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
/* | |
see https://www.fuzzwork.co.uk/2017/03/14/using-esi-google-sheets/ for install details. | |
Needs work, as it reauths for each call. As it can't store the access token or expiry in the sheet. | |
*/ | |
function getSetup(charid) { | |
var config = {}; | |
var documentProperties = PropertiesService.getDocumentProperties(); | |
var characterData = SpreadsheetApp.getActiveSpreadsheet().getRangeByName('char_' + charid); | |
var config = { |
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
{ | |
"typo3/neos": { | |
"replacement": "neos/neos", | |
"version": "~3.0.0" | |
}, | |
"typo3/typoscript": { | |
"replacement": "neos/fusion", | |
"version": "~3.0.0" | |
}, | |
"typo3/typo3cr": { |
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
define( | |
[ | |
'emberjs', | |
'Library/jquery-with-dependencies', | |
'Content/Inspector/Editors/ImageEditor' | |
], | |
function (Ember, $, ImageEditor) { | |
return ImageEditor.extend({ | |
categorization: [], |
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
{ | |
"name": "typo3/neos-base-distribution", | |
"description" : "TYPO3 Neos Base Distribution", | |
"license": "GPL-3.0+", | |
"support": { | |
"email": "[email protected]", | |
"irc": "irc://irc.freenode.org/typo3-neos", | |
"forum": "http://forum.typo3.org/index.php/f/121/", | |
"issues": "https://jira.typo3.org/", | |
"source": "https://git.typo3.org/" |
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
// $path sollte das Verzeichnis mit den Bildern sein | |
$images = \TYPO3\Flow\Utility\Files::readDirectoryRecursively($path) | |
foreach($images as $imageFilePath) { | |
$resource = $this->resourceManager->importResource($imageFilePath); | |
$image = new \TYPO3\Media\Domain\Model\Image($resource); | |
$this->assetRepository->add($image); | |
unlink($imageFilePath); | |
} |
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 | |
class Scripts { | |
/** | |
* @param string $commandIdentifier E.g. typo3.flow:cache:flush | |
* @param array $settings The TYPO3.Flow settings | |
* @param array $commandArguments Command arguments |
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
# If you need more than just the "main" content area you can uncomment the snippet below. It will add a "sidebar" area | |
# to your pages. You can add as many areas as you like, still only those that are rendered in your TypoScript and | |
# Template are visible on your page. | |
--- | |
#'TYPO3.Neos.NodeTypes:Page': | |
# childNodes: | |
# 'sidebar': | |
# type: 'TYPO3.Neos:ContentCollection' | |
'Inspiring.NeosWorkshop:SectionPage': |
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': | |
superTypes: | |
'TYPO3.Neos:Node': 'TYPO3.Neos:Node' |
NewerOlder