Example #1
0
echo url(ADMINRESOURCES, false);
?>
";
			var language = "<?php 
echo language();
?>
";
			var textcolors = "<?php 
echo Config::textcolors();
?>
";
			<?php 
$colors = explode(',', Config::textcolors());
?>
			var defaulttextcolor = "<?php 
echo Config::textcolors() ? reset($colors) : '';
?>
";
			var euroSign = "€";
			var tinyMCEStyles = '<?php 
foreach (Config::buttoncolors() as $colorname => $hex) {
    $r = hexdec($hex[0] . $hex[1]);
    $g = hexdec($hex[2] . $hex[3]);
    $b = hexdec($hex[4] . $hex[5]);
    $luma = 0.2126 * $r + 0.7151999999999999 * $g + 0.0722 * $b;
    ?>
a.button.<?php 
    echo strtolower($colorname);
    ?>
 { border:0; color:#<?php 
    echo $luma > 100 ? '000' : 'fff';