Dotclear

source: plugins/blowupConfig/index.php @ 500:f88db2e809f4

Revision 500:f88db2e809f4, 18.5 KB checked in by kozlika, 14 years ago (diff)

First step for #1247. Il faudra revenir sur les pages media.php, permissions.php, plugins/antispam/index.php (la couleur on verra après ; pour l'instant c'est très voyant, très pratique pour bosser et aussi très gai, na !)

Dans ce commit aussi : réorganisation de la feuille de style pour s'y retrouver plus facilement.

Line 
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 -----------------------------------------
12if (!defined('DC_CONTEXT_ADMIN')) { return; }
13
14require dirname(__FILE__).'/lib/class.blowup.config.php';
15
16$can_write_images = blowupConfig::canWriteImages();
17
18if ($core->error->flag()) {
19          $notices = $core->error->toHTML();
20          $core->error->reset();
21}
22
23$blowup_base = array(
24     'body_bg_c' => null,
25     'body_bg_g' => 'light',
26     
27     'body_txt_f' => null,
28     'body_txt_s' => null,
29     'body_txt_c' => null,
30     'body_line_height' => null,
31     
32     'top_image' => 'default',
33     'top_height' => null,
34     'uploaded' => null,
35     
36     'blog_title_hide' => null,
37     'blog_title_f' => null,
38     'blog_title_s' => null,
39     'blog_title_c' => null,
40     'blog_title_a' => null,
41     'blog_title_p' => null,
42     
43     'body_link_c' => null,
44     'body_link_f_c' => null,
45     'body_link_v_c' => null,
46     
47     'sidebar_position' => null,
48     'sidebar_text_f' => null,
49     'sidebar_text_s' => null,
50     'sidebar_text_c' => null,
51     'sidebar_title_f' => null,
52     'sidebar_title_s' => null,
53     'sidebar_title_c' => null,
54     'sidebar_title2_f' => null,
55     'sidebar_title2_s' => null,
56     'sidebar_title2_c' => null,
57     'sidebar_line_c' => null,
58     'sidebar_link_c' => null,
59     'sidebar_link_f_c' => null,
60     'sidebar_link_v_c' => null,
61     
62     'date_title_f' => null,
63     'date_title_s' => null,
64     'date_title_c' => null,
65     
66     'post_title_f' => null,
67     'post_title_s' => null,
68     'post_title_c' => null,
69     'post_comment_bg_c' => null,
70     'post_comment_c' => null,
71     'post_commentmy_bg_c' => null,
72     'post_commentmy_c' => null,
73     
74     'prelude_c' => null,
75     'footer_f' => null,
76     'footer_s' => null,
77     'footer_c' => null,
78     'footer_l_c' => null,
79     'footer_bg_c' => null,
80);
81
82$blowup_user = $core->blog->settings->themes->blowup_style;
83
84$blowup_user = @unserialize($blowup_user);
85if (!is_array($blowup_user)) {
86     $blowup_user = array();
87}
88
89$blowup_user = array_merge($blowup_base,$blowup_user);
90
91$gradient_types = array(
92     __('Light linear gradient') => 'light',
93     __('Medium linear gradient') => 'medium',
94     __('Dark linear gradient') => 'dark',
95     __('Solid color') => 'solid'
96);
97
98$top_images = array(__('Custom...') => 'custom');
99$top_images = array_merge($top_images,array_flip(blowupConfig::$top_images));
100
101
102if (!empty($_POST))
103{
104     try
105     {
106          $blowup_user['body_txt_f'] = $_POST['body_txt_f'];
107          $blowup_user['body_txt_s'] = blowupConfig::adjustFontSize($_POST['body_txt_s']);
108          $blowup_user['body_txt_c'] = blowupConfig::adjustColor($_POST['body_txt_c']);
109          $blowup_user['body_line_height'] = blowupConfig::adjustFontSize($_POST['body_line_height']);
110         
111          $blowup_user['blog_title_hide'] = (integer) !empty($_POST['blog_title_hide']);
112          $update_blog_title = !$blowup_user['blog_title_hide'] && (
113               !empty($_POST['blog_title_f']) || !empty($_POST['blog_title_s']) ||
114               !empty($_POST['blog_title_c']) || !empty($_POST['blog_title_a']) ||
115               !empty($_POST['blog_title_p'])
116          );
117         
118          if ($update_blog_title)
119          {
120               $blowup_user['blog_title_f'] = $_POST['blog_title_f'];
121               $blowup_user['blog_title_s'] = blowupConfig::adjustFontSize($_POST['blog_title_s']);
122               $blowup_user['blog_title_c'] = blowupConfig::adjustColor($_POST['blog_title_c']);
123               $blowup_user['blog_title_a'] = preg_match('/^(left|center|right)$/',$_POST['blog_title_a']) ? $_POST['blog_title_a'] : null;
124               $blowup_user['blog_title_p'] = blowupConfig::adjustPosition($_POST['blog_title_p']);
125          }
126         
127          $blowup_user['body_link_c'] = blowupConfig::adjustColor($_POST['body_link_c']);
128          $blowup_user['body_link_f_c'] = blowupConfig::adjustColor($_POST['body_link_f_c']);
129          $blowup_user['body_link_v_c'] = blowupConfig::adjustColor($_POST['body_link_v_c']);
130         
131          $blowup_user['sidebar_text_f'] = $_POST['sidebar_text_f'];
132          $blowup_user['sidebar_text_s'] = blowupConfig::adjustFontSize($_POST['sidebar_text_s']);
133          $blowup_user['sidebar_text_c'] = blowupConfig::adjustColor($_POST['sidebar_text_c']);
134          $blowup_user['sidebar_title_f'] = $_POST['sidebar_title_f'];
135          $blowup_user['sidebar_title_s'] = blowupConfig::adjustFontSize($_POST['sidebar_title_s']);
136          $blowup_user['sidebar_title_c'] = blowupConfig::adjustColor($_POST['sidebar_title_c']);
137          $blowup_user['sidebar_title2_f'] = $_POST['sidebar_title2_f'];
138          $blowup_user['sidebar_title2_s'] = blowupConfig::adjustFontSize($_POST['sidebar_title2_s']);
139          $blowup_user['sidebar_title2_c'] = blowupConfig::adjustColor($_POST['sidebar_title2_c']);
140          $blowup_user['sidebar_line_c'] = blowupConfig::adjustColor($_POST['sidebar_line_c']);
141          $blowup_user['sidebar_link_c'] = blowupConfig::adjustColor($_POST['sidebar_link_c']);
142          $blowup_user['sidebar_link_f_c'] = blowupConfig::adjustColor($_POST['sidebar_link_f_c']);
143          $blowup_user['sidebar_link_v_c'] = blowupConfig::adjustColor($_POST['sidebar_link_v_c']);
144         
145          $blowup_user['sidebar_position'] = ($_POST['sidebar_position'] == 'left') ? 'left' : null;
146         
147          $blowup_user['date_title_f'] = $_POST['date_title_f'];
148          $blowup_user['date_title_s'] = blowupConfig::adjustFontSize($_POST['date_title_s']);
149          $blowup_user['date_title_c'] = blowupConfig::adjustColor($_POST['date_title_c']);
150         
151          $blowup_user['post_title_f'] = $_POST['post_title_f'];
152          $blowup_user['post_title_s'] = blowupConfig::adjustFontSize($_POST['post_title_s']);
153          $blowup_user['post_title_c'] = blowupConfig::adjustColor($_POST['post_title_c']);
154          $blowup_user['post_comment_c'] = blowupConfig::adjustColor($_POST['post_comment_c']);
155          $blowup_user['post_commentmy_c'] = blowupConfig::adjustColor($_POST['post_commentmy_c']);
156         
157         
158          $blowup_user['footer_f'] = $_POST['footer_f'];
159          $blowup_user['footer_s'] = blowupConfig::adjustFontSize($_POST['footer_s']);
160          $blowup_user['footer_c'] = blowupConfig::adjustColor($_POST['footer_c']);
161          $blowup_user['footer_l_c'] = blowupConfig::adjustColor($_POST['footer_l_c']);
162          $blowup_user['footer_bg_c'] = blowupConfig::adjustColor($_POST['footer_bg_c']);
163         
164          if ($can_write_images)
165          {
166               $uploaded = null;
167               if ($blowup_user['uploaded'] && is_file(blowupConfig::imagesPath().'/'.$blowup_user['uploaded'])) {
168                    $uploaded = blowupConfig::imagesPath().'/'.$blowup_user['uploaded'];
169               }
170               
171               if (!empty($_FILES['upfile']) && !empty($_FILES['upfile']['name'])) {
172                    files::uploadStatus($_FILES['upfile']);
173                    $uploaded = blowupConfig::uploadImage($_FILES['upfile']);
174                    $blowup_user['uploaded'] = basename($uploaded);
175               }
176               
177               $blowup_user['top_image'] = in_array($_POST['top_image'],$top_images) ? $_POST['top_image'] : 'default';
178               
179               $blowup_user['body_bg_c'] = blowupConfig::adjustColor($_POST['body_bg_c']);
180               $blowup_user['body_bg_g'] = in_array($_POST['body_bg_g'],$gradient_types) ? $_POST['body_bg_g'] : '';
181               $blowup_user['post_comment_bg_c'] = blowupConfig::adjustColor($_POST['post_comment_bg_c']);
182               $blowup_user['post_commentmy_bg_c'] = blowupConfig::adjustColor($_POST['post_commentmy_bg_c']);
183               $blowup_user['prelude_c'] = blowupConfig::adjustColor($_POST['prelude_c']);
184               blowupConfig::createImages($blowup_user,$uploaded);
185          }
186         
187          $core->blog->settings->addNamespace('themes');
188          $core->blog->settings->themes->put('blowup_style',serialize($blowup_user));
189          $core->blog->triggerBlog();
190         
191          http::redirect($p_url.'&upd=1');
192     }
193     catch (Exception $e)
194     {
195          $core->error->add($e->getMessage());
196     }
197}
198?>
199<html>
200<head>
201  <title><?php echo __('Blowup configuration'); ?></title>
202  <?php echo dcPage::jsLoad('index.php?pf=blowupConfig/config.js'); ?>
203  <?php echo dcPage::jsColorPicker(); ?>
204  <script type="text/javascript">
205  //<![CDATA[
206  <?php
207  echo dcPage::jsVar('dotclear.blowup_public_url',blowupConfig::imagesURL());
208  echo dcPage::jsVar('dotclear.msg.predefined_styles',__('Predefined styles'));
209  echo dcPage::jsVar('dotclear.msg.apply_code',__('Apply code'));
210  echo dcPage::jsVar('dotclear.msg.predefined_style_title',__('Choose a predefined style'));
211  ?>
212  //]]>
213  </script>
214</head>
215
216<body>
217<?php
218echo
219'<h2>'.html::escapeHTML($core->blog->name).
220' &rsaquo; <a href="blog_theme.php">'.__('Blog appearance').'</a> &rsaquo; <span class="page-title">'.__('Blowup configuration').'</span></h2>'.
221'<p><a class="back" href="blog_theme.php">'.__('back').'</a></p>';
222
223
224if (!$can_write_images) {
225     echo '<div class="message">'.
226          __('For the following reasons, images cannot be created. You won\'t be able to change some background properties.').
227          $notices.'</div>';
228}
229
230if (!empty($_GET['upd'])) {
231     echo '<p class="message">'.__('Theme configuration has been successfully updated.').'</p>';
232}
233
234echo '<form id="theme_config" action="'.$p_url.'" method="post" enctype="multipart/form-data">';
235         
236echo '<fieldset><legend>'.__('General').'</legend>';
237
238if ($can_write_images) {
239     echo
240     '<p class="field"><label for="body_bg_c">'.__('Background color:').' '.
241     form::field('body_bg_c',7,7,$blowup_user['body_bg_c'],'colorpicker').'</label></p>'.
242     
243     '<p class="field"><label for="body_bg_g">'.__('Background color fill:').' '.
244     form::combo('body_bg_g',$gradient_types,$blowup_user['body_bg_g']).'</label></p>';
245}
246
247echo
248'<p class="field"><label for="body_txt_f">'.__('Main text font:').' '.
249form::combo('body_txt_f',blowupConfig::fontsList(),$blowup_user['body_txt_f']).'</label></p>'.
250
251'<p class="field"><label for="body_txt_s">'.__('Main text font size:').' '.
252form::field('body_txt_s',7,7,$blowup_user['body_txt_s']).'</label></p>'.
253
254'<p class="field"><label for="body_txt_c">'.__('Main text color:').' '.
255form::field('body_txt_c',7,7,$blowup_user['body_txt_c'],'colorpicker').'</label></p>'.
256
257'<p class="field"><label for="body_line_height">'.__('Text line height:').' '.
258form::field('body_line_height',7,7,$blowup_user['body_line_height']).'</label></p>'.
259'</fieldset>'.
260
261'<fieldset><legend>'.__('Links').'</legend>'.
262'<p class="field"><label for="body_link_c">'.__('Links color:').' '.
263form::field('body_link_c',7,7,$blowup_user['body_link_c'],'colorpicker').'</label></p>'.
264
265'<p class="field"><label for="body_link_v_c">'.__('Visited links color:').' '.
266form::field('body_link_v_c',7,7,$blowup_user['body_link_v_c'],'colorpicker').'</label></p>'.
267
268'<p class="field"><label for="body_link_f_c">'.__('Focus links color:').' '.
269form::field('body_link_f_c',7,7,$blowup_user['body_link_f_c'],'colorpicker').'</label></p>'.
270'</fieldset>'.
271
272'<fieldset><legend>'.__('Page top').'</legend>';
273
274if ($can_write_images) {
275     echo
276     '<p class="field"><label for="prelude_c">'.__('Prelude color:').' '.
277     form::field('prelude_c',7,7,$blowup_user['prelude_c'],'colorpicker').'</label></p>';
278}
279
280echo
281'<p class="field"><label for="blog_title_hide">'.__('Hide main title').' '.
282form::checkbox('blog_title_hide',1,$blowup_user['blog_title_hide']).'</label></p>'.
283
284'<p class="field"><label for="blog_title_f">'.__('Main title font:').' '.
285form::combo('blog_title_f',blowupConfig::fontsList(),$blowup_user['blog_title_f']).'</label></p>'.
286
287'<p class="field"><label for="blog_title_s">'.__('Main title font size:').' '.
288form::field('blog_title_s',7,7,$blowup_user['blog_title_s']).'</label></p>'.
289
290'<p class="field"><label for="blog_title_c">'.__('Main title color:').' '.
291form::field('blog_title_c',7,7,$blowup_user['blog_title_c'],'colorpicker').'</label></p>'.
292
293'<p class="field"><label for="blog_title_a">'.__('Main title alignment:').' '.
294form::combo('blog_title_a',array(__('center')=>'center',__('left')=>'left',__('right')=>'right'),$blowup_user['blog_title_a']).'</label></p>'.
295
296'<p class="field"><label for="blog_title_p">'.__('Main title position (x:y)').' '.
297form::field('blog_title_p',7,7,$blowup_user['blog_title_p']).'</label></p>'.
298'</fieldset>';
299
300if ($can_write_images) {
301     if ($blowup_user['top_image'] == 'custom' && $blowup_user['uploaded']) {
302          $preview_image = http::concatURL($core->blog->url,blowupConfig::imagesURL().'/page-t.png');
303     } else {
304          $preview_image = 'index.php?pf=blowupConfig/alpha-img/page-t/'.$blowup_user['top_image'].'.png';
305     }
306     
307     echo
308     '<fieldset><legend>'.__('Top image').'</legend>'.
309     '<p class="field"><label for="top_image">'.__('Top image').
310     form::combo('top_image',$top_images,($blowup_user['top_image'] ? $blowup_user['top_image'] : 'default')).'</label></p>'.
311     '<p>'.__('Choose "Custom..." to upload your own image.').'</p>'.
312     
313     '<p id="uploader"><label for="upfile">'.__('Add your image:').
314     ' ('.sprintf(__('JPEG or PNG file, 800 pixels wide, maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.
315     '<input type="file" name="upfile" id="upfile" size="35" />'.
316     '</label></p>'.
317     
318     '<h3>'.__('Preview').'</h3>'.
319     '<div class="grid" style="width:800px;border:1px solid #ccc;">'.
320     '<img style="display:block;" src="'.$preview_image.'" alt="" id="image-preview" />'.
321     '</div>'.
322     '</fieldset>';
323}
324
325echo
326'<fieldset><legend>'.__('Sidebar').'</legend>'.
327'<p class="field"><label for="sidebar_position">'.__('Sidebar position:').' '.
328form::combo('sidebar_position',array(__('right')=>'right',__('left')=>'left'),$blowup_user['sidebar_position']).'</label></p>'.
329
330'<p class="field"><label for="sidebar_text_f">'.__('Sidebar text font:').' '.
331form::combo('sidebar_text_f',blowupConfig::fontsList(),$blowup_user['sidebar_text_f']).'</label></p>'.
332
333'<p class="field"><label for="sidebar_text_s">'.__('Sidebar text font size:').' '.
334form::field('sidebar_text_s',7,7,$blowup_user['sidebar_text_s']).'</label></p>'.
335
336'<p class="field"><label for="sidebar_text_c">'.__('Sidebar text color:').' '.
337form::field('sidebar_text_c',7,7,$blowup_user['sidebar_text_c'],'colorpicker').'</label></p>'.
338
339'<p class="field"><label for="sidebar_title_f">'.__('Sidebar titles font:').' '.
340form::combo('sidebar_title_f',blowupConfig::fontsList(),$blowup_user['sidebar_title_f']).'</label></p>'.
341
342'<p class="field"><label for="sidebar_title_s">'.__('Sidebar titles font size:').' '.
343form::field('sidebar_title_s',7,7,$blowup_user['sidebar_title_s']).'</label></p>'.
344
345'<p class="field"><label for="sidebar_title_c">'.__('Sidebar titles color:').' '.
346form::field('sidebar_title_c',7,7,$blowup_user['sidebar_title_c'],'colorpicker').'</label></p>'.
347
348'<p class="field"><label for="sidebar_title2_f">'.__('Sidebar 2nd level titles font:').' '.
349form::combo('sidebar_title2_f',blowupConfig::fontsList(),$blowup_user['sidebar_title2_f']).'</label></p>'.
350
351'<p class="field"><label for="sidebar_title2_s">'.__('Sidebar 2nd level titles font size:').' '.
352form::field('sidebar_title2_s',7,7,$blowup_user['sidebar_title2_s']).'</label></p>'.
353
354'<p class="field"><label for="sidebar_title2_c">'.__('Sidebar 2nd level titles color:').' '.
355form::field('sidebar_title2_c',7,7,$blowup_user['sidebar_title2_c'],'colorpicker').'</label></p>'.
356
357'<p class="field"><label for="sidebar_line_c">'.__('Sidebar lines color:').' '.
358form::field('sidebar_line_c',7,7,$blowup_user['sidebar_line_c'],'colorpicker').'</label></p>'.
359
360'<p class="field"><label for="sidebar_link_c">'.__('Sidebar links color:').' '.
361form::field('sidebar_link_c',7,7,$blowup_user['sidebar_link_c'],'colorpicker').'</label></p>'.
362
363'<p class="field"><label for="sidebar_link_v_c">'.__('Sidebar visited links color:').' '.
364form::field('sidebar_link_v_c',7,7,$blowup_user['sidebar_link_v_c'],'colorpicker').'</label></p>'.
365
366'<p class="field"><label for="sidebar_link_f_c">'.__('Sidebar focus links color:').' '.
367form::field('sidebar_link_f_c',7,7,$blowup_user['sidebar_link_f_c'],'colorpicker').'</label></p>'.
368'</fieldset>'.
369
370'<fieldset><legend>'.__('Entries').'</legend>'.
371'<p class="field"><label for="date_title_f">'.__('Date title font:').' '.
372form::combo('date_title_f',blowupConfig::fontsList(),$blowup_user['date_title_f']).'</label></p>'.
373
374'<p class="field"><label for="date_title_s">'.__('Date title font size:').' '.
375form::field('date_title_s',7,7,$blowup_user['date_title_s']).'</label></p>'.
376
377'<p class="field"><label for="date_title_c">'.__('Date title color:').' '.
378form::field('date_title_c',7,7,$blowup_user['date_title_c'],'colorpicker').'</label></p>'.
379
380'<p class="field"><label for="post_title_f">'.__('Entry title font:').' '.
381form::combo('post_title_f',blowupConfig::fontsList(),$blowup_user['post_title_f']).'</label></p>'.
382
383'<p class="field"><label for="post_title_s">'.__('Entry title font size:').' '.
384form::field('post_title_s',7,7,$blowup_user['post_title_s']).'</label></p>'.
385
386'<p class="field"><label for="post_title_c">'.__('Entry title color:').' '.
387form::field('post_title_c',7,7,$blowup_user['post_title_c'],'colorpicker').'</label></p>';
388
389if ($can_write_images) {
390     echo
391     '<p class="field"><label for="post_comment_bg_c">'.__('Comment background color:').' '.
392     form::field('post_comment_bg_c',7,7,$blowup_user['post_comment_bg_c'],'colorpicker').'</label></p>';
393}
394
395echo
396'<p class="field"><label for="post_comment_c">'.__('Comment text color:').' '.
397form::field('post_comment_c',7,7,$blowup_user['post_comment_c'],'colorpicker').'</label></p>';
398
399if ($can_write_images) {
400     echo
401     '<p class="field"><label for="post_commentmy_bg_c">'.__('My comment background color:').' '.
402     form::field('post_commentmy_bg_c',7,7,$blowup_user['post_commentmy_bg_c'],'colorpicker').'</label></p>';
403}
404
405echo
406'<p class="field"><label for="post_commentmy_c">'.__('My comment text color:').' '.
407form::field('post_commentmy_c',7,7,$blowup_user['post_commentmy_c'],'colorpicker').'</label></p>'.
408'</fieldset>'.
409
410'<fieldset><legend>'.__('Footer').'</legend>'.
411'<p class="field"><label for="footer_f">'.__('Footer font:').' '.
412form::combo('footer_f',blowupConfig::fontsList(),$blowup_user['footer_f']).'</label></p>'.
413
414'<p class="field"><label for="footer_s">'.__('Footer font size:').' '.
415form::field('footer_s',7,7,$blowup_user['footer_s']).'</label></p>'.
416
417'<p class="field"><label for="footer_c">'.__('Footer color:').' '.
418form::field('footer_c',7,7,$blowup_user['footer_c'],'colorpicker').'</label></p>'.
419
420'<p class="field"><label for="footer_l_c">'.__('Footer links color:').' '.
421form::field('footer_l_c',7,7,$blowup_user['footer_l_c'],'colorpicker').'</label></p>'.
422
423'<p class="field"><label for="footer_bg_c">'.__('Footer background color:').' '.
424form::field('footer_bg_c',7,7,$blowup_user['footer_bg_c'],'colorpicker').'</label></p>'.
425'</fieldset>';
426
427// Import / Export configuration
428$tmp_array = array();
429$tmp_exclude = array('uploaded','top_height');
430if ($blowup_user['top_image'] == 'custom') {
431     $tmp_exclude[] = 'top_image';
432}
433foreach ($blowup_user as $k => $v) {
434     if (!in_array($k,$tmp_exclude)) {
435          $tmp_array[] = $k.':'.'"'.$v.'"';
436     }
437}
438echo
439'<h3 id="bu_export">'.__('Configuration import / export').'</h3><fieldset>'.
440'<p>'.__('You can share your configuration using the following code. To apply a configuration, paste the code, click on "Apply code" and save.').'</p>'.
441'<p>'.form::textarea('export_code',72,5,implode('; ',$tmp_array),'maximal','',false,'title="'.__('Copy this code:').'"').'</p>'.
442'</fieldset>';
443
444echo
445'<p class="clear"><input type="submit" value="'.__('Save').'" />'.
446$core->formNonce().'</p>'.
447'</form>';
448
449dcPage::helpBlock('blowupConfig');
450?>
451</body>
452</html>
Note: See TracBrowser for help on using the repository browser.

Sites map