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
/** | |
* custom sql to query pageTree | |
* efficient to query large trees (>30.000 records) | |
* | |
* returns flat array with page records | |
* | |
* @param int $uid uid of page to start with | |
* @param string $where optional where query part to limit results | |
* @param int $limit optional limit for query | |
* @return array selected records |
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
# example typo3 site-config for multi-site project with different instances/hosts by TYPO3_CONTEXT | |
# (not verified/tested yet) | |
rootPageId: 100 | |
base: 'https://first-project.example.com/' | |
baseVariants: | |
- | |
base: 'https://xx.example.local/' | |
condition: 'applicationContext == "Development/Server1"' |
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
rebuild started | |
01.06.2018 05:21:32 | |
1593581ueuie | |
erunireaundenr | |
rnudnenuden | |
rebuild finished | |
15935udanedue | |
01.06.2018 06:01:09 | |
rebuild started | |
02.06.2018 09:14:34 |
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 | |
/* | |
* | |
* http trigger script for TYPO3 Scheduler | |
* | |
* | |
**/ | |
// first check proper token | |
if ( !is_array($_POST) || !isset($_POST['token']) || $_POST['token'] !== 'XXXMAGICSECRETXXXX' ) { | |
header("HTTP/1.0 403 Forbidden"); |
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 class="lazyload" data-bgset="{v:srcSet(image: media.1, ratio: 1, maxWidth: 1920)}"> | |
Foo | |
</div> | |
{namespace v=Visol\Foobar\ViewHelpers} |
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": "datenbetrieb/mhh", | |
"description": "Website MHH. Tools, extensions, configurations and templates.", | |
"type": "project", | |
"keywords": ["typo3", "cms", "starter"], | |
"homepage": "http://www.mh-hannover.de", | |
"license": "GPL-2.0+", | |
"authors": [ | |
{ | |
"name": "datenbetrieb", |
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/sh | |
########################################## | |
# Make sure that $FILE.$BACKUP_EXT exists! | |
# i.e. /etc/network/interfaces.bak | |
########################################## | |
FILE=/etc/network/interfaces | |
BACKUP_EXT=bak |
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 Datenbetrieb\D4b6NewsNotification\Utility; | |
/** | |
* This file is part of the TYPO3 CMS project. | |
* | |
* It is free software; you can redistribute it and/or modify it under | |
* the terms of the GNU General Public License, either version 2 | |
* of the License, or 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
git log -n1 | head | |
commit 23759e3537d457b1cb2a5a3050220898b955db4a | |
Author: Olaf Meeuwissen <[email protected]> | |
Date: Tue May 10 22:05:54 2016 +0900 | |
Document need to run bootstrap script after first clone. Fixes #6 | |
pn@tuxi /usr/local/src/utsushi2 master ● LIBTOOLIZE="libtoolize --verbose" ./bootstrap |
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
diff --git a/typo3/sysext/extbase/Classes/Property/PropertyMapper.php b/typo3/sysext/extbase/Classes/Property/PropertyMapper.php | |
index 7bbc804..87a3651 100644 | |
--- a/typo3/sysext/extbase/Classes/Property/PropertyMapper.php | |
+++ b/typo3/sysext/extbase/Classes/Property/PropertyMapper.php | |
@@ -131,6 +131,7 @@ class PropertyMapper implements \TYPO3\CMS\Core\SingletonInterface { | |
* @return mixed an instance of $targetType | |
*/ | |
protected function doMapping($source, $targetType, \TYPO3\CMS\Extbase\Property\PropertyMappingConfigurationInterface $configuration, &$currentPropertyPath) { | |
+ var_dump('doMapping ' . $targeType . ' ' . print_r($currentPropertyPath,1)); | |
if (is_object($source)) { |
NewerOlder