[userFunc = \Vendorname\Extension\UserConditions\user_translationExistsNot()] && [globalVar = GP:L > 0]
# Add canonical tag
# and/or display a notice, that the current page is not translated yet and the original contents are displayed
[global]
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
@echo off | |
vagrant global-status | awk '/running/{print $1}' | xargs -r -d '\n' -n 1 -- vagrant halt |
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 | |
# Credits to: | |
# - http://vstone.eu/reducing-vagrant-box-size/ | |
# - https://github.com/mitchellh/vagrant/issues/343 | |
# rm -rf /var/www/html/* | |
# BE CAREFUL with synched folders!!! | |
rm -rf ~/.composer/vendor/* |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Requires to perform this first: | |
# `vagrant plugin install vagrant-winnfsd` | |
# `vagrant plugin install vagrant-bindfs` | |
# | |
# Put this Vagrantfile to in root directory of the TYPO3 extension you want to develop with | |
# and perform: `vagrant up` | |
# |
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
cd /var/www/html | |
rm -Rf * | |
composer require typo3/cms:"^7.6" helhum/typo3-console:"^4.5" gridelementsteam/gridelements:"^7.1" | |
vendor/bin/typo3cms install:setup --force --database-user-name "root" --database-user-password "" --database-host-name "localhost" --database-name "typo3_76" --database-port "3306" --database-socket "" --admin-user-name "admin" --admin-password "password" --site-name "TYPO3 Project" --site-setup-type "site" --use-existing-database 0 | |
vendor/bin/typo3cms cache:flush | |
php typo3/cli_dispatch.phpsh extbase extension:install gridelements |
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
body { | |
color: #ccc !important; | |
background-color: rgb(43, 43, 43) !important; | |
} | |
a { | |
color: #ccc !important; | |
} | |
input.inputtext { | |
color: #ccc !important; | |
background-color: #333 !important; |
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
{ | |
"require": { | |
"symfony/process": "^3.2" | |
} | |
} |
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 Bitbucket Commit Line Difference | |
// @namespace ArminVieweg | |
// @version 0.1 | |
// @description Calculate difference between added and removed lines and displays it in Bitbucket commits | |
// @author Armin Vieweg <[email protected]> | |
// @match https://bitbucket.org/*/*/commits/* | |
// @grant none | |
// ==/UserScript== |
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 | |
require_once('vendor/autoload.php'); // get and include swift mailer library via composer | |
$text = 'Hallo! | |
Dies ist eine Test-E-Mail. | |
Vielen Dank und schöne Grüße'; | |
// New message instance with basic mail settings | |
$message = \Swift_Message::newInstance(); |