This file contains hidden or 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
PAGE_TARGET = | |
content.pageFrameObj = | |
styles.content { | |
links { | |
extTarget = | |
target = | |
} | |
loginform.target = | |
mailform.target = | |
searchresult { |
This file contains hidden or 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
<!--[if lte IE 8]> | |
<link rel="stylesheet" type="text/css" href="path/to/css/ie6-8.css" media="all"> | |
<![endif]--> | |
<!--[if gt IE 8]> | |
<link rel="stylesheet" type="text/css" href="path/to/css/modernAndMobileBrowsers.css" media="all"> | |
<![endif]--> | |
<!--[if !IE]> --> | |
<link rel="stylesheet" type="text/css" href="path/to/css/modernAndMobileBrowsers.css" media="all"> | |
<!-- <![endif]--> |
This file contains hidden or 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
local tmp=$(mktemp) | |
local charset="$(file -bi "$inputfile"|awk -F "=" '{print $2}')" | |
if [ "$charset" != "utf-8" ]; then | |
iconv -f "$charset" -t utf8 "$inputfile" -o $tmp | |
mv "$tmp" "$inputfile" | |
fi |
This file contains hidden or 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 fetchURL($url) { | |
//$dateien = file ('http://www.example.com/'); | |
//return implode("",$dateien); | |
//Initialize the Curl session | |
$ch = curl_init(); | |
//Set curl to return the data instead of printing it to the browser. |
This file contains hidden or 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
/** | |
* generate an array of params for a new marker icon image | |
* iconShadowImage is optional | |
* If anchor coords are not supplied, we use the center point of the image by default. | |
* Can be called statically. For private use by addMarkerIcon() and setMarkerIcon() | |
* | |
* @param string $iconImage URL to icon image | |
* @param string $iconShadowImage URL to shadow image | |
* @param string $iconAnchorX X coordinate for icon anchor point | |
* @param string $iconAnchorY Y coordinate for icon anchor point |
This file contains hidden or 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
#non www to www | |
RewriteCond %{HTTP_HOST} !^www\. | |
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] | |
#www to non www | |
RewriteEngine On | |
RewriteCond %{HTTP_HOST} !^my-domain\.com$ [NC] | |
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L] | |
#http://dense13.com/blog/2008/02/27/redirecting-non-www-to-www-with-htaccess/ |
This file contains hidden or 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
#in die Konstanten eintragen | |
plugin.powermail.field.checkboxJS = 0 |
This file contains hidden or 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
temp.typo3Variable = COA | |
temp.typo3Variable { | |
5 = TEXT | |
5 { | |
# Datum | |
insertData = 1 | |
data = date : d-m-y | |
wrap = <p> Das Datum heute: | </p> | |
} | |
This file contains hidden or 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
page.includeJSFooter.file23456 = fileadmin/templates/js/backstretch/jquery.backstretch.min.js | |
page.includeJS.file002 > | |
page.jsFooterInline { | |
10 = COA | |
10.10 = CONTENT | |
10.10.wrap = var images = [ | ]; | |
10.10 { | |
table = tt_content |
This file contains hidden or 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 | |
$defaultPath = "videos/"; // Verzeichnis im Upload-Ordner mit abschliessendem "/". Bsp.: "ordner1/ordner11/" | |
$defaultImage = "standard.jpg"; //Name des anzuzeigenden Standardbildes | |
#Default settings Vorschaubild | |
$img_width = 300; | |
$img_height = 300; | |