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
jQuery(document).ready(function() { | |
var dselect = jQuery('.contact-select').val(); | |
jQuery('.contact div#contact-' + dselect).show(); | |
jQuery('.contact-select').on('change', function() { | |
var cselect = jQuery(this).val(); | |
jQuery('.contact div.contact-wrapper').hide(); | |
jQuery('.contact div#contact-' + cselect).show(); |
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
lib.language { | |
# select the language uid of languages in menu | |
uidList = 0,1,2,3,4 | |
# language uid, if no languages in url given | |
normalWhenNoLanguage = 0 | |
# set languages param in them order how "uidList" | |
addParams = &L=0 || &L=1 || &L=2 || &L=3 || &L=4 |
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
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_URI} !(\.css|\.js|\.png|\.jpg|\.gif|robots\.txt)$ [NC] | |
RewriteRule ^.*$ /index.html [L,R=301] |
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 | |
$domainConfiguration = [ | |
'www.first-domain.com' => PAGE_UID, | |
//'www.second-domain.com' => PAGE_UID, | |
//'www.third-domain.com' => PAGE_UID | |
]; | |
$txRealUrlConfiguration = [ | |
'init' => [ |
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
'columns' => array( | |
'new_fal_image' => array( | |
'exclude' => 1, | |
'l10n_mode' => 'mergeIfNotBlank', | |
'label' => 'FAL image label', | |
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig( | |
'media', | |
array( | |
'appearance' => array( | |
'showPossibleLocalizationRecords' => 1, |
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 | |
/**************************************************** | |
* db_delete_records.php | |
* Author: Christian Wolfram <[email protected]> | |
* Date: 12-11-2014 | |
* | |
* Deletes all records in the database that | |
* are marked as deleted. | |
* | |
* Run from root directory of your TYPO3 |
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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?> | |
<T3DataStructure> | |
<meta> | |
<langDisable>1</langDisable> | |
</meta> | |
<sheets> | |
<sDEF> | |
<ROOT> | |
<TCEforms> | |
<sheetTitle>Allgemein</sheetTitle> |
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
appendCategoryMenu { | |
# cat=appendCategoryMenu/navigation/10; type=string; label=complete string of navigation lib | |
menuLibary = | |
# cat=appendCategoryMenu/navigation/20; type=int+; label=UID of navigation point | |
menuPid = | |
# cat=appendCategoryMenu/navigation/30; type=int+; label=UID of category pages | |
defaultCategoryPid = | |
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 ChriWo\Company\ViewHelpers\Uri; | |
/*************************************************************** | |
* | |
* Copyright notice | |
* | |
* (c) 2016 Christian Wolfram <[email protected]> | |
* | |
* All rights reserved |
OlderNewer