1 | <?php |
---|
2 | # -- BEGIN LICENSE BLOCK --------------------------------------- |
---|
3 | # |
---|
4 | # This file is part of Dotclear 2. |
---|
5 | # |
---|
6 | # Copyright (c) 2003-2011 Olivier Meunier & Association Dotclear |
---|
7 | # Licensed under the GPL version 2.0 license. |
---|
8 | # See LICENSE file or |
---|
9 | # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html |
---|
10 | # |
---|
11 | # -- END LICENSE BLOCK ----------------------------------------- |
---|
12 | |
---|
13 | if (!defined('DC_RC_PATH')) { return; } |
---|
14 | |
---|
15 | $core->addBehavior('publicHeadContent',array('tplDuctileTheme','publicHeadContent')); |
---|
16 | |
---|
17 | class tplDuctileTheme |
---|
18 | { |
---|
19 | public static function publicHeadContent($core) |
---|
20 | { |
---|
21 | echo |
---|
22 | '<style type="text/css">'."\n". |
---|
23 | '/* Additionnal style directives */'."\n". |
---|
24 | self::ductileStyleHelper(). |
---|
25 | "</style>\n"; |
---|
26 | } |
---|
27 | |
---|
28 | public static function ductileStyleHelper() |
---|
29 | { |
---|
30 | $s = $GLOBALS['core']->blog->settings->themes->ductile_style; |
---|
31 | |
---|
32 | if ($s === null) { |
---|
33 | return; |
---|
34 | } |
---|
35 | |
---|
36 | $s = @unserialize($s); |
---|
37 | if (!is_array($s)) { |
---|
38 | return; |
---|
39 | } |
---|
40 | |
---|
41 | $css = array(); |
---|
42 | |
---|
43 | # Properties |
---|
44 | |
---|
45 | # Main font |
---|
46 | $main_font_selectors = 'body, #supranav li a span, #comments.me, a.comment-number'; |
---|
47 | if isset($s['body_font']) self::prop($css,$main_font_selectors,'font-family',self::fontDef($s['body_font'])); |
---|
48 | |
---|
49 | # Alternate font |
---|
50 | $alternate_font_selectors = '#blogdesc, #supranav li, #content-info, #subcategories, #comments-feed, #sidebar h2, #sidebar h3, #footer p'; |
---|
51 | if isset($s['alternate_font']) self::prop($css,$alternate_font_selectors,'font-family',self::fontDef($s['alternate_font'])); |
---|
52 | |
---|
53 | # Link colors |
---|
54 | if isset($s['body_link_c']) self::prop($css,'a','color',$s['body_link_c']); |
---|
55 | if isset($s['body_link_v_c']) self::prop($css,'a:visited','color',$s['body_link_v_c']); |
---|
56 | if isset($s['body_link_f_c']) self::prop($css,'a:hover, a:focus, a:active','color',$s['body_link_f_c']); |
---|
57 | |
---|
58 | # Style directives |
---|
59 | $res = ''; |
---|
60 | foreach ($css as $selector => $values) { |
---|
61 | $res .= $selector." {\n"; |
---|
62 | foreach ($values as $k => $v) { |
---|
63 | $res .= $k.':'.$v.";\n"; |
---|
64 | } |
---|
65 | $res .= "}\n"; |
---|
66 | } |
---|
67 | |
---|
68 | return $res; |
---|
69 | } |
---|
70 | |
---|
71 | protected static $fonts = array( |
---|
72 | // Theme standard |
---|
73 | 'Ductile body' => '"Century Schoolbook", "Century Schoolbook L", Georgia, serif', |
---|
74 | 'Ductile alternate' => '"Franklin gothic medium", "arial narrow", "DejaVu Sans Condensed", "helvetica neue", helvetica, sans-serif', |
---|
75 | |
---|
76 | // Serif families |
---|
77 | 'Times New Roman' => 'Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif', |
---|
78 | 'Georgia' => 'Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif," "Bitstream Vera Serif", "Liberation Serif", Georgia, serif', |
---|
79 | 'Garamond' => '"Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif', |
---|
80 | |
---|
81 | // Sans-serif families |
---|
82 | 'Helvetica/Arial' => 'Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif', |
---|
83 | 'Verdana' => 'Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif', |
---|
84 | 'Trebuchet MS' => '"Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif', |
---|
85 | |
---|
86 | // Cursive families |
---|
87 | 'Impact' => 'Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif', |
---|
88 | |
---|
89 | // Monospace families |
---|
90 | 'Monospace' => 'Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace' |
---|
91 | ); |
---|
92 | |
---|
93 | protected static function fontDef($c) |
---|
94 | { |
---|
95 | return isset(self::$fonts[$c]) ? self::$fonts[$c] : null; |
---|
96 | } |
---|
97 | |
---|
98 | protected static function prop(&$css,$selector,$prop,$value) |
---|
99 | { |
---|
100 | if ($value) { |
---|
101 | $css[$selector][$prop] = $value; |
---|
102 | } |
---|
103 | } |
---|
104 | } |
---|
105 | ?> |
---|