root / drupal7 / sites / all / themes / blogbuzz / theme-settings.php @ 1f623f01
1 |
<?php
|
---|---|
2 |
// $Id: theme-settings.php,v 1.2.2.1 2011/01/23 05:03:13 antsin Exp $
|
3 |
|
4 |
/*
|
5 |
+----------------------------------------------------------------+
|
6 |
| BlogBuzz for Dupal 7.x - Version 1.0 |
|
7 |
| Copyright (C) 2011 Antsin.com All Rights Reserved. |
|
8 |
| @license - GNU GENERAL PUBLIC LICENSE |
|
9 |
|----------------------------------------------------------------|
|
10 |
| Theme Name: BlogBuzz |
|
11 |
| Description: BlogBuzz by Antsin |
|
12 |
| Author: Antsin.com |
|
13 |
| Website: http://www.antsin.com/ |
|
14 |
|----------------------------------------------------------------+
|
15 |
*/
|
16 |
|
17 |
$form['tnt_container']['style_settings'] = array( |
18 |
'#type' => 'fieldset', |
19 |
'#title' => t('Blogbuzz color setting'), |
20 |
'#description' => t('Use color setting to change default color for your theme.'), |
21 |
'#collapsible' => TRUE, |
22 |
'#collapsed' => FALSE, |
23 |
); |
24 |
|
25 |
$form['tnt_container']['style_settings']['style'] = array( |
26 |
'#type' => 'select', |
27 |
'#title' => t('Color'), |
28 |
'#default_value' => theme_get_setting('style'), |
29 |
'#options' => array( |
30 |
'stone' => t('Stone Soft'), |
31 |
'pink' => t('Fresh Pink'), |
32 |
'blue' => t('Sky Blue'), |
33 |
'chocolate'=> t('Chocolate Milk'), |
34 |
), |
35 |
); |
36 |
|
37 |
return $form; |
38 |
?>
|