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
t3lib_utility_Debug::debug(xxx); |
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
// per Pfad Array auslesen | |
Tx_Extbase_Utility_Arrays::getValueByPath( | |
$Array_Daten | |
$Array_Pfad | |
); |
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 | |
Tx_Extbase_Utility_Localization::translate('key', 'DatamintsErweiterung'); |
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
// Standard | |
mysqldump --no-create-db --opt -Q -uUSER -p -hHOST DATENBANK > DATENBANK.sql | |
// Standard (Drop + Create Table) | |
mysqldump -uUSER -p -hHOST --verbose --no-create-db --add-drop-table DATENBANK > DATENBANK.sql | |
// Gepackt | |
mysqldump --databases --opt -Q -uUSER -p -hHOST DATENBANK | gzip > DATENBANK.gz | |
// nur Daten |
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
ln -s /kunden/380113_82377/typo3_sources/typo3_src-6.0-latest typo3_src |
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
chmod 0444 datei |
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
tar xfv ARCHIV.tar |
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
plugin.tx_extension_pi1._DEFAULT_PI_VARS.filter = Abc |
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
$(function() { | |
// JavaScript-Code | |
}); | |
!function($) { | |
$(function() { | |
// JavaScript-Code | |
}); | |
} (window.jQuery); |
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
$.fn.equalheight = function() { | |
return this.height(Math.max.apply(this, $.map(this, function(e) { | |
return $(e).height() | |
}))); | |
}; |
OlderNewer