source: extensions/stripped_black_bloc/admin/admin.inc.php @ 13894

Last change on this file since 13894 was 13894, checked in by flop25, 12 years ago

updated for 2.4 :
-deleted timthumb
-deleted config for auto-generation

features added :
-representative thumbs can be big : always, as the "Every x thumb" config or never

bug corrected :
-big thumbs didn't have rounded corners

Translations uk_UA needed for new keys

File size: 1.5 KB
RevLine 
[11699]1<?php
2
3// Need upgrade?
4
5global $conf;
6
[13894]7include(PHPWG_THEMES_PATH.'stripped_black_bloc/admin/upgrade.inc.php');
[11699]8
9load_language('theme.lang', PHPWG_THEMES_PATH.'stripped_black_bloc/');
10
11$config_send= array();
12
13if(isset($_POST['submit_stripped_black_bloc']))
14{
[11823]15        $config_send['color_main']=(isset($_POST['f_color_main']) and !empty($_POST['f_color_main'])) ? $_POST['f_color_main'] : 'E6554F';
[11699]16        $config_send['column_width']=(isset($_POST['f_column_width'])) ? $_POST['f_column_width'] : 170;
17        if ( isset($_POST['f_column_width']) and isset($_POST['f_thumbnail_width']))
18        {
19                if ( $_POST['f_column_width']>$_POST['f_thumbnail_width'] )
20                {
21                        $config_send['thumbnail_width']=$_POST['f_thumbnail_width'];
22                }
23                else
24                {
25                        $config_send['thumbnail_width']=$_POST['f_column_width']-20;
26                }
27        }
28        else
29        {
30                $config_send['thumbnail_width']=150;
31        }
[12048]32        $config_send['every_x']=(isset($_POST['f_every_x'])) ? $_POST['f_every_x'] : 20;
33        $config_send['starting_to']=(isset($_POST['f_starting_to'])) ? $_POST['f_starting_to'] : 1;
[13894]34        $config_send['catthumb']=(isset($_POST['f_catthumb'])) ? $_POST['f_catthumb'] : 'none';
[11699]35        conf_update_param('stripped_black_bloc', pwg_db_real_escape_string(serialize($config_send)));
36
37  array_push($page['infos'], l10n('Information data registered in database'));
38
39  load_conf_from_db();
40}
41
42$template->set_filenames(array(
43    'theme_admin_content' => dirname(__FILE__) . '/admin.tpl'));
44
45$template->assign('options', unserialize($conf['stripped_black_bloc']));
46
47$template->assign_var_from_handle('ADMIN_CONTENT', 'theme_admin_content');
48 
49?>
Note: See TracBrowser for help on using the repository browser.