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
// ==UserScript== | |
// @name Show Image Results on Pixabay (FIX) | |
// @version 1 | |
// @grant none | |
// @include https://pixabay.com/* | |
// ==/UserScript== | |
var $ = unsafeWindow.jQuery; | |
$('.flex_grid .item').css('display', 'block'); |
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
' Findet alle Einträge zu einer bestimmten Person | |
' (c) Christoph Fischer, [email protected] | |
' v.1.00 | |
' | |
' Aktuelle Version jeweils auf: | |
' | |
' CHANGELOG | |
' | |
' 2019-01-31 1.00 Erste funktionierende Version | |
Sub ExportForBulletin(control As IRibbonControl) |
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
' Findet alle Einträge zu einer bestimmten Person | |
' (c) Christoph Fischer, [email protected] | |
' v.1.10 | |
' | |
' Aktuelle Version jeweils auf: | |
' https://gist.github.com/potofcoffee/b85039f72e4bc6eb255c1ca3a2a6d491 | |
' | |
' CHANGELOG | |
' | |
' 2018-12-08 1.10 Gist angelegt und Verweis mit aufgenommen |
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 | |
// [...] | |
$this->view = new \TYPO3Fluid\Fluid\View\TemplateView(); | |
$paths = $this->view->getTemplatePaths(); | |
$paths->setTemplateRootPaths([ | |
$this->app->getTemplatesPath(), | |
$this->module->getBasePath() . 'Resources/Private/Templates/' |
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
[ { "featureType": "road", "elementType": "labels", "stylers": [ { "visibility": "off" } ] },{ "featureType": "poi", "stylers": [ { "visibility": "off" } ] },{ "featureType": "landscape", "stylers": [ { "color": "#ffffff" } ] },{ "featureType": "water", "stylers": [ { "color": "#808080" } ] },{ "featureType": "road", "stylers": [ { "visibility": "off" } ] },{ "featureType": "road.highway", "elementType": "geometry", "stylers": [ { "visibility": "on" }, { "color": "#cccccc" } ] },{ "featureType": "administrative.country", "stylers": [ { "color": "#000000" } ] },{ "featureType": "administrative.country", "elementType": "labels", "stylers": [ { "color": "#000000" }, { "weight": 3.6 }, { "visibility": "off" } ] },{ "featureType": "administrative.province", "elementType": "geometry", "stylers": [ { "color": "#000000" }, { "weight": 3.5 } ] } ] |
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\CMS\Extbase\Utility\DebuggerUtility::var_dump($var); |
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:layout name="Content" /> | |
<f:render section="Main" /> |
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
<div xmlns="http://www.w3.org/1999/xhtml" lang="en" | |
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" | |
f:schemaLocation="https://fluidtypo3.org/schemas/fluid-master.xsd" | |
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers" | |
flux:schemaLocation="https://fluidtypo3.org/schemas/flux-master.xsd"> | |
<f:layout name="Content" /> | |
<f:section name="Configuration"> | |
<flux:form id="test" options="{icon: 'Icons/Content/Example.gif', group: 'FCE'}"> | |
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\ExtensionName\ViewHelpers; | |
/** | |
* Formats a Timestamp or DateTime-Object in strftime() | |
* @api | |
*/ | |
class StrftimeViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper { | |