updated phpgwapi/inc/functions.inc.php to follow a nice and orderly loadup process. Added back in the support for CSS, added support for preloading images, fixed javascript problems, updated themes to use , overall just got this api nice and tight in the loadup and template areas. Now we need to update all the template sets and apps to follow suit

This commit is contained in:
seek3r 2002-05-30 21:13:07 +00:00
parent 4a2729a720
commit eb0b6aaf30
27 changed files with 841 additions and 839 deletions

View File

@ -60,40 +60,6 @@
$this->set_unknowns($unknowns);
}
function update_css()
{
if(@is_array($GLOBALS['phpgw_info']['theme']['css']))
{
$css_string = '';
reset($GLOBALS['phpgw_info']['theme']['css']);
//$css_string = '<STYLE type="text/css">'."\n";
while(list($key,$value) = each($GLOBALS['phpgw_info']['theme']['css']))
{
$css_string .= "\n\t$key { $value } ";
}
$css_string .= "\n";
//$css_string .= '</STYLE>'."\n";
$this->set_var('phpgw_css',$css_string);
}
}
function update_preload_images()
{
if(@is_array($GLOBALS['phpgw_info']['flags']['preload_images']))
{
$preload_image_string = '';
reset($GLOBALS['phpgw_info']['flags']['preload_images']);
//$css_string = '<STYLE type="text/css">'."\n";
while(list($key,$value) = each($GLOBALS['phpgw_info']['flags']['preload_images']))
{
$css_string .= "\n\t$key { $value } ";
}
$css_string .= "\n";
//$css_string .= '</STYLE>'."\n";
$this->set_var('phpgw_css',$css_string);
}
}
/* public: setroot(pathname $root)
* root: new template directory.
*/

View File

@ -316,7 +316,10 @@
{
$this->phpgw_footer();
}
$GLOBALS['phpgw']->db->disconnect();
else
{
$GLOBALS['phpgw']->db->disconnect();
}
exit;
}
@ -1145,54 +1148,157 @@
$GLOBALS['phpgw_info']['navbar']['logout']['title'] = 'Logout';
$GLOBALS['phpgw_info']['navbar']['logout']['url'] = $GLOBALS['phpgw']->link('/logout.php');
if(PHPGW_USE_FRAMES)
{
$GLOBALS['phpgw_info']['navbar']['logout']['url'] .= '" target="_parent"';
}
$GLOBALS['phpgw_info']['navbar']['logout']['icon'] = $this->image('phpgwapi',Array('logout','nonav'));
$GLOBALS['phpgw_info']['navbar']['logout']['icon_hover'] = $this->image_on('phpgwapi',Array('logout','nonav'),'-over');
}
/*!
@function load_theme
@abstract Discover the selected theme and include it into the template set
@discussion *someone wanna add some detail here*
*/
function load_theme_data()
{
if (! $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'])
{
if ($GLOBALS['phpgw_info']['server']['template_set'] == 'user_choice')
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = 'default';
}
else
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = $GLOBALS['phpgw_info']['server']['template_set'];
}
}
if ($GLOBALS['phpgw_info']['server']['force_theme'] == 'user_choice')
{
if (!isset($GLOBALS['phpgw_info']['user']['preferences']['common']['theme']))
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = 'default';
}
}
else
{
if (isset($GLOBALS['phpgw_info']['server']['force_theme']))
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = $GLOBALS['phpgw_info']['server']['force_theme'];
}
}
if(@file_exists(PHPGW_SERVER_ROOT . '/phpgwapi/themes/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] . '.theme'))
{
include(PHPGW_SERVER_ROOT . '/phpgwapi/themes/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] . '.theme');
}
elseif(@file_exists(PHPGW_SERVER_ROOT . '/phpgwapi/themes/default.theme'))
{
include(PHPGW_SERVER_ROOT . '/phpgwapi/themes/default.theme');
}
else
{
/* Hope we don't get to this point. Better then the user seeing a */
/* complety back screen and not know whats going on */
$phpgw_info['theme']['bg_color'] = 'FFFFFF';
$GLOBALS['phpgw']->log->write(array('text'=>'F-Abort, No themes found'));
}
/* This covers putting the theme values into the template, excluding CSS stuff which will be done later */
if (is_array($GLOBALS['phpgw_info']['theme']))
{
$theme_data = $GLOBALS['phpgw_info']['theme'];
unset($theme_data['css']);
$GLOBALS['phpgw']->template->set_var($theme_data);
unset($theme_data);
}
else
{
$GLOBALS['phpgw']->template->set_var('bg_color','FFFFFF');
}
}
/*!
@function load_css
@abstract generate CSS format from $phpgw_info['theme']['css'] and set its value into the template
@discussion *someone wanna add some detail here*
*/
function load_css_data()
{
/* Make sure some of the defaults are set */
if (!isset($phpgw_info['theme']['css']['A']))
{
$phpgw_info['theme']['css']['A'] = 'text-decoration:none;';
}
if (!isset($phpgw_info['theme']['css']['A:link']) && !empty($GLOBALS['phpgw_info']['theme']['link']))
{
$phpgw_info['theme']['css']['A:link'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['link'].';';
}
if (!isset($phpgw_info['theme']['css']['A:visited']) && !empty($GLOBALS['phpgw_info']['theme']['vlink']))
{
$phpgw_info['theme']['css']['A:visited'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['vlink'].';';
}
if (!isset($phpgw_info['theme']['css']['A:active']) && !empty($GLOBALS['phpgw_info']['theme']['alink']))
{
$phpgw_info['theme']['css']['A:active'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['alink'].';';
}
if (!isset($phpgw_info['theme']['css']['A:hover']) && !empty($GLOBALS['phpgw_info']['theme']['hovlink']))
{
$phpgw_info['theme']['css']['A:hover'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['hovlink'].';';
}
/* now put the css data into the template class */
if(@is_array($GLOBALS['phpgw_info']['theme']['css']))
{
$css_string = '';
reset($GLOBALS['phpgw_info']['theme']['css']);
$css_string = "<STYLE type=\"text/css\">";
while(list($key,$value) = each($GLOBALS['phpgw_info']['theme']['css']))
{
$css_string .= "\n\t\t$key { $value } ";
}
$css_string .= "\n";
$css_string .= "\t</STYLE>\n";
$GLOBALS['phpgw']->template->set_var('phpgw_css',$css_string);
}
}
function load_preload_images_data()
{
$GLOBALS['phpgw_info']['flags']['preload_images'][] = $GLOBALS['phpgw_info']['navbar']['logout']['icon'];
if(@is_array($GLOBALS['phpgw_info']['flags']['preload_images']))
{
$preload_image_string = '';
reset($GLOBALS['phpgw_info']['flags']['preload_images']);
while(list($key,$value) = each($GLOBALS['phpgw_info']['flags']['preload_images']))
{
if($preload_image_string != '')
{
$preload_image_string .= ",'$value'";
}
else
{
$preload_image_string .= "'$value'";
}
}
$preload_image_string = "MM_preloadImages($preload_image_string); ";
$GLOBALS['phpgw']->template->set_var('phpgw_preload_images',$preload_image_string);
}
}
/*!
@function phpgw_header
@abstract load the phpgw header
*/
function phpgw_header($forceheader = True, $forcenavbar = True)
{
/*
if($forceheader)
{
$GLOBALS['phpgw_info']['flags']['noheader'] = False;
}
if($forcenavbar)
{
$GLOBALS['phpgw_info']['flags']['nonavbar'] = False;
}
if (!@$GLOBALS['phpgw_info']['flags']['noheader'])
{
$GLOBALS['phpgw']->template->set_root(PHPGW_TEMPLATE_DIR);
include(PHPGW_TEMPLATE_DIR.'/head.inc.php');
$GLOBALS['phpgw']->template->reset_root();
}
if(!function_exists('parse_navbar'))
{
$GLOBALS['phpgw']->template->set_root(PHPGW_TEMPLATE_DIR);
$this->navbar(False);
include(PHPGW_TEMPLATE_DIR.'/navbar.inc.php');
$GLOBALS['phpgw']->template->reset_root();
}
if (!@$GLOBALS['phpgw_info']['flags']['nonavbar'] && !@$GLOBALS['phpgw_info']['flags']['navbar_target'])
{
$GLOBALS['phpgw']->template->set_root(PHPGW_TEMPLATE_DIR);
parse_navbar();
$GLOBALS['phpgw']->template->reset_root();
}
//elseif (!@$GLOBALS['phpgw_info']['flags']['noheader'] && function_exists('parse_nonavbar'))
//{
// parse_nonavbar();
//}
if (!@$GLOBALS['phpgw_info']['flags']['noheader'] && !@$GLOBALS['phpgw_info']['flags']['nonavbar'])
{
$GLOBALS['phpgw']->hooks->process('after_navbar');
}
*/
/* This is no longer used */
}
/*!
@ -1240,7 +1346,7 @@
if(!defined('PHPGW_FOOTER_RAN'))
{
define('PHPGW_FOOTER_RAN',True);
if (!isset($GLOBALS['phpgw_info']['flags']['nofooter']) || !$GLOBALS['phpgw_info']['flags']['nofooter'])
if (!isset($GLOBALS['phpgw_info']['flags']['nodisplay']) || !$GLOBALS['phpgw_info']['flags']['nodisplay'])
{
if($GLOBALS['phpgw_info']['flags']['currentapp'] != 'home' &&
$GLOBALS['phpgw_info']['flags']['currentapp'] != 'login' &&
@ -1251,6 +1357,8 @@
}
$GLOBALS['phpgw']->db->disconnect();
$this->msgbox('',False,'phpgw_msgbox');
$this->load_css_data();
$this->load_preload_images_data();
$GLOBALS['phpgw']->template->pfp('out','phpgw_main');
/*

View File

@ -132,6 +132,11 @@
$url = str_replace ( 'http:', 'https:', $url);
}
}
// if(@isset($GLOBALS['HTTP_GET_VARS']['framepart']))
// {
// $url .= '" target="_parent"';
// }
if ($iis)
{
echo "\n<HTML>\n<HEAD>\n<TITLE>Redirecting to $url</TITLE>";

View File

@ -60,11 +60,6 @@
return $GLOBALS['phpgw']->common->check_code($code);
}
/*!
@collection_end direct functions
*/
// print_debug('core functions are done');
/****************************************************************************\
* Quick verification of sane environment *
\****************************************************************************/
@ -157,14 +152,14 @@
@print_debug('domain',$GLOBALS['phpgw_info']['user']['domain'],'api');
/****************************************************************************\
* These lines load up the API, fill up the $phpgw_info array, etc *
\****************************************************************************/
/****************************************************************************\
* These lines load up the API, fill up the $GLOBALS["phpgw_info"] array, etc *
\****************************************************************************/
/* Load main class */
$GLOBALS['phpgw'] = CreateObject('phpgwapi.phpgw');
/************************************************************************\
* Load up the main instance of the db class. *
\************************************************************************/
/************************************************************************\
* Load up the main instance of the db class. *
\************************************************************************/
$GLOBALS['phpgw']->db = CreateObject('phpgwapi.db');
$GLOBALS['phpgw']->db->Host = $GLOBALS['phpgw_info']['server']['db_host'];
$GLOBALS['phpgw']->db->Type = $GLOBALS['phpgw_info']['server']['db_type'];
@ -187,8 +182,10 @@
}
$GLOBALS['phpgw']->db->Halt_On_Error = 'yes';
/* Fill phpgw_info["server"] array */
// An Attempt to speed things up using cache premise
/****************************************************************************\
* These lines fill up the $GLOBALS["phpgw_info"]["server"] array *
\****************************************************************************/
// An Attempt to speed things up using cache premise
$GLOBALS['phpgw']->db->query("select config_value from phpgw_config WHERE config_app='phpgwapi' and config_name='cache_phpgw_info'",__LINE__,__FILE__);
if ($GLOBALS['phpgw']->db->num_rows())
{
@ -276,7 +273,7 @@
{
if(@isset($GLOBALS['phpgw_info']['server']['enforce_ssl']) && $GLOBALS['phpgw_info']['server']['enforce_ssl'] && !$GLOBALS['HTTP_SERVER_VARS']['HTTPS'])
{
Header('Location: https://'.$GLOBALS['phpgw_info']['server']['hostname'].$GLOBALS['HTTP_SERVER_VARS']['REQUEST_URI']);
Header('Location: ' . $GLOBALS['phpgw']->redirect($GLOBALS['HTTP_SERVER_VARS']['REQUEST_URI']));
exit;
}
if (@$login != '')
@ -296,17 +293,42 @@
}
else
{
/**************************************************************************\
* If users session is not valid, send them to login page *
\**************************************************************************/
if (! $GLOBALS['phpgw']->session->verify())
{
Header('Location: ' . $GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->session->link('/login.php','code=10')));
exit;
}
/***************************************************************************\
* Now that we know we have a good session we can load up the datatime class *
\***************************************************************************/
$GLOBALS['phpgw']->datetime = CreateObject('phpgwapi.datetime');
/* A few hacker resistant constants that will be used throught the program */
/* Make sure user is keeping his password in order */
/* Maybe we should create a common function in the phpgw_accounts_shared.inc.php file */
/* to get rid of duplicate code. */
if ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] == 0)
{
$message = lang('You are required to change your password during your first login')
. '<br> Click this image on the navbar: <img src="'
. $GLOBALS['phpgw']->common->image('preferences','navbar.gif').'">';
$GLOBALS['phpgw_info']['flags']['msgbox_data'][$message]=False;
}
elseif ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] < time() - (86400*30))
{
$message = lang('it has been more then x days since you changed your password',30);
$GLOBALS['phpgw_info']['flags']['msgbox_data'][$message]=False;
}
$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'default';
/*DELETE ME SOON!!!!*/ $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'default';
/*************************************************************************\
* A few hacker resistant constants that will be used throught the program *
\*************************************************************************/
define('PHPGW_TEMPLATE_DIR', ExecMethod('phpgwapi.phpgw.common.get_tpl_dir', 'phpgwapi'));
define('PHPGW_IMAGES_DIR', ExecMethod('phpgwapi.phpgw.common.get_image_path', 'phpgwapi'));
define('PHPGW_IMAGES_FILEDIR', ExecMethod('phpgwapi.phpgw.common.get_image_dir', 'phpgwapi'));
@ -320,53 +342,42 @@ $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'defau
* These lines load up the templates class and set some default values *
\*************************************************************************/
$GLOBALS['phpgw']->template = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
/* load required tpl files */
$GLOBALS['phpgw']->template->set_file('common', 'common.tpl');
$GLOBALS['phpgw']->template->set_file('phpgw', 'phpgw.tpl');
$GLOBALS['phpgw']->template->set_file('msgbox', 'msgbox.tpl');
/* This will bring in the template sets parts definitions */
if (file_exists(PHPGW_TEMPLATE_DIR . '/parts.inc.php'))
{
include(PHPGW_TEMPLATE_DIR . '/parts.inc.php');
}
$val = $GLOBALS['phpgw']->template->get_var('phpgw_top_height');
if (empty($val))
{
$GLOBALS['phpgw']->template->set_var('phpgw_top_height','10');
}
$val = $GLOBALS['phpgw']->template->get_var('phpgw_left_width');
if (empty($val))
{
$GLOBALS['phpgw']->template->set_var('phpgw_left_width','10');
}
$val = $GLOBALS['phpgw']->template->get_var('phpgw_right_width');
if (empty($val))
{
$GLOBALS['phpgw']->template->set_var('phpgw_right_width','10');
}
$val = $GLOBALS['phpgw']->template->get_var('phpgw_bottom_height');
if (empty($val))
{
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_height','10');
}
/* These default values will be overridden and appended to as needed by template sets */
$GLOBALS['phpgw']->template->set_var('phpgw_top_table_height','0');
$GLOBALS['phpgw']->template->set_var('phpgw_top_frame_height','0');
$GLOBALS['phpgw']->template->set_var('phpgw_top_scrolling','NO');
$GLOBALS['phpgw']->template->set_var('phpgw_left_table_width','0');
$GLOBALS['phpgw']->template->set_var('phpgw_left_frame_width','0');
$GLOBALS['phpgw']->template->set_var('phpgw_left_scrolling','NO');
$GLOBALS['phpgw']->template->set_var('phpgw_right_table_width','0');
$GLOBALS['phpgw']->template->set_var('phpgw_right_frame_width','0');
$GLOBALS['phpgw']->template->set_var('phpgw_right_scrolling','NO');
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_table_height','0');
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_frame_height','0');
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_scrolling','NO');
$GLOBALS['phpgw']->template->set_var('phpgw_head_charset',lang('charset'));
$GLOBALS['phpgw']->template->set_var('phpgw_head_description','phpGroupWare');
$GLOBALS['phpgw']->template->set_var('phpgw_head_keywords','phpGroupWare');
if(@isset($GLOBALS['phpgw_info']['server']['enforce_ssl']) && $GLOBALS['phpgw_info']['server']['enforce_ssl'] && !$GLOBALS['HTTP_SERVER_VARS']['HTTPS'])
{
$GLOBALS['phpgw']->template->set_var('phpgw_head_base','https://'.$GLOBALS['phpgw_info']['server']['hostname'].$GLOBALS['phpgw_info']['server']['webserver_url'].'/');
}
else
{
$GLOBALS['phpgw']->template->set_var('phpgw_head_base',$GLOBALS['phpgw_info']['server']['webserver_url'].'/');
}
$GLOBALS['phpgw']->template->set_var('phpgw_head_base',$GLOBALS['phpgw']->session->link('/'));
$GLOBALS['phpgw']->template->set_var('phpgw_head_browser_ico','favicon.ico');
$GLOBALS['phpgw']->template->set_var('phpgw_head_website_title', $GLOBALS['phpgw_info']['server']['site_title']);
/* This will bring in the template sets parts definitions */
/* We do this so early to allow the template to overwrite */
/* and append to the previous defaults as needed for frames support to work */
if (file_exists(PHPGW_TEMPLATE_DIR . '/parts.inc.php'))
{
include(PHPGW_TEMPLATE_DIR . '/parts.inc.php');
}
/*************************************************************************\
* If they are using frames, we need to set some variables *
* If they are using frames, we need to set the PHPGW_FRAME_PART safely *
\*************************************************************************/
if(@isset($GLOBALS['HTTP_GET_VARS']['framepart']) &&
( $GLOBALS['HTTP_GET_VARS']['framepart'] == 'unsupported' ||
@ -383,8 +394,7 @@ $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'defau
{
define('PHPGW_FRAME_PART','start');
}
//$GLOBALS['phpgw_info']['server']['useframes'] = 'always';
$GLOBALS['phpgw_info']['server']['useframes'] = 'always';
if(((isset($GLOBALS['phpgw_info']['user']['preferences']['common']['useframes']) &&
$GLOBALS['phpgw_info']['user']['preferences']['common']['useframes'] &&
$GLOBALS['phpgw_info']['server']['useframes'] == 'allowed') ||
@ -395,40 +405,34 @@ $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'defau
define('PHPGW_NAVBAR_TARGET','body');
if (PHPGW_FRAME_PART == 'start')
{
/* if just starting up, then we intialize the frameset with the appropriate block */
$GLOBALS['phpgw']->template->set_var('phpgw_top_link',$GLOBALS['phpgw']->session->link('home.php','framepart=top'));
$GLOBALS['phpgw']->template->set_var('phpgw_right_link',$GLOBALS['phpgw']->session->link('home.php','framepart=right'));
$GLOBALS['phpgw']->template->set_var('phpgw_body_link',$GLOBALS['phpgw']->session->link('home.php','framepart=body'));
$GLOBALS['phpgw']->template->set_var('phpgw_left_link',$GLOBALS['phpgw']->session->link('home.php','framepart=left'));
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_link',$GLOBALS['phpgw']->session->link('home.php','framepart=bottom'));
$GLOBALS['phpgw']->template->set_var('phpgw_unupported_link',$GLOBALS['phpgw']->session->link($GLOBALS['HTTP_SERVER_VARS']['SCRIPT_NAME'],'framepart=unsupported'));
$GLOBALS['phpgw']->template->set_block('phpgw','phpgw_main_frames','phpgw_main');
}
else
{
/* if we are using frames and not starting then we use the basic block to keep each part in a nice clean html format */
$GLOBALS['phpgw']->template->set_block('phpgw','phpgw_main_basic','phpgw_main');
}
}
else
{
/* Not using frames, so we default to tables */
define('PHPGW_USE_FRAMES',False);
define('PHPGW_NAVBAR_TARGET','_self');
$GLOBALS['phpgw']->template->set_block('phpgw','phpgw_main_tables','phpgw_main');
}
$GLOBALS['phpgw']->template->set_var('phpgw_head_target',PHPGW_NAVBAR_TARGET);
/* define('PHPGW_APP_IMAGES_DIR', $GLOBALS['phpgw']->common->get_image_dir()); */
/* Moved outside of this logic
define('PHPGW_ACL_READ',1);
define('PHPGW_ACL_ADD',2);
define('PHPGW_ACL_EDIT',4);
define('PHPGW_ACL_DELETE',8);
define('PHPGW_ACL_PRIVATE',16);
*/
/******* Define the GLOBALS['MENUACTION'] *******/
define('MENUACTION',get_var('menuaction',Array('GET')));
/********* This sets the user variables *********/
/********* This sets the user variables (this should be moved to somewhere else [Seek3r])*********/
$GLOBALS['phpgw_info']['user']['private_dir'] = $GLOBALS['phpgw_info']['server']['files_dir']
. '/users/'.$GLOBALS['phpgw_info']['user']['userid'];
@ -449,82 +453,15 @@ $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'defau
reset($GLOBALS['phpgw_info']['flags']);
/*************************************************************************\
* These lines load up the themes and CSS data *
\*************************************************************************/
if (! $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'])
/***************************************************************************\
* These lines load up the themes data and put them into the templates class *
\***************************************************************************/
$GLOBALS['phpgw']->common->load_theme_data();
if(!PHPGW_USE_FRAMES || (PHPGW_USE_FRAMES && PHPGW_FRAME_PART != 'body'))
{
if ($GLOBALS['phpgw_info']['server']['template_set'] == 'user_choice')
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = 'default';
}
else
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = $GLOBALS['phpgw_info']['server']['template_set'];
}
}
if ($GLOBALS['phpgw_info']['server']['force_theme'] == 'user_choice')
{
if (!isset($GLOBALS['phpgw_info']['user']['preferences']['common']['theme']))
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = 'default';
}
}
else
{
if (isset($GLOBALS['phpgw_info']['server']['force_theme']))
{
$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = $GLOBALS['phpgw_info']['server']['force_theme'];
}
}
if(@file_exists(PHPGW_SERVER_ROOT . '/phpgwapi/themes/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] . '.theme'))
{
include(PHPGW_SERVER_ROOT . '/phpgwapi/themes/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] . '.theme');
}
elseif(@file_exists(PHPGW_SERVER_ROOT . '/phpgwapi/themes/default.theme'))
{
include(PHPGW_SERVER_ROOT . '/phpgwapi/themes/default.theme');
}
else
{
/* Hope we don't get to this point. Better then the user seeing a */
/* complety back screen and not know whats going on */
echo '<body bgcolor="FFFFFF">';
$GLOBALS['phpgw']->log->write(array('text'=>'F-Abort, No themes found'));
}
if (isset($GLOBALS['phpgw_info']['theme']['hovlink'])
&& ($GLOBALS['phpgw_info']['theme']['hovlink'] != ''))
{
$phpgw_info['theme']['css']['A:hover'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['hovlink'].';';
}
$phpgw_info['theme']['css']['A'] = 'text-decoration:none;';
$phpgw_info['theme']['css']['A:link'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['link'].';';
$phpgw_info['theme']['css']['A:visited'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['vlink'].';';
$phpgw_info['theme']['css']['A:active'] = 'text-decoration:none; color: '.$GLOBALS['phpgw_info']['theme']['alink'].';';
if(@file_exists(PHPGW_TEMPLATE_DIR . '/css.inc.php'))
{
include(PHPGW_TEMPLATE_DIR . '/css.inc.php');
}
if(@file_exists(PHPGW_APP_TPL . '/css.inc.php'))
{
include(PHPGW_APP_TPL . '/css.inc.php');
}
/* This covers setting the theme values so that each app doesnt have to */
$theme_data = $GLOBALS['phpgw_info']['theme'];
unset($theme_data['css']);
$GLOBALS['phpgw']->template->set_var($theme_data);
unset($theme_data);
$GLOBALS['phpgw']->template->update_css();
// if(!PHPGW_USE_FRAMES || (PHPGW_USE_FRAMES && PHPGW_NAVBAR_TARGET != 'body'))
// {
$GLOBALS['phpgw']->common->navbar();
// }
}
/*************************************************************************\
* load up top part if appropriate *
@ -611,7 +548,7 @@ $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'defau
}
if(PHPGW_USE_FRAMES)
{
// $GLOBALS['phpgw']->common->phpgw_footer();
$GLOBALS['phpgw']->common->phpgw_footer();
}
}
@ -635,8 +572,8 @@ $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = 'defau
$GLOBALS['phpgw_info']['flags']['msgbox_data']['Access not permitted']=False;
$continue_app_data = False;
$GLOBALS['phpgw']->template->set_var('phpgw_body',"user has no rights to this app!!!<br>\n");
//$GLOBALS['phpgw']->common->phpgw_display();
//$GLOBALS['phpgw']->common->phpgw_exit(True);
//$GLOBALS['phpgw']->common->phpgw_footer();
$GLOBALS['phpgw']->common->phpgw_exit(True);
}
}
if($continue_app_data)

View File

@ -11,10 +11,10 @@
/* $Id$ */
$GLOBALS['phpgw']->template->set_var('phpgw_top_height','10%');
$GLOBALS['phpgw']->template->set_var('phpgw_left_width','0');
$GLOBALS['phpgw']->template->set_var('phpgw_right_width','0');
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_height','5%');
$GLOBALS['phpgw']->template->set_var('phpgw_top_table_height','10%');
$GLOBALS['phpgw']->template->set_var('phpgw_top_frame_height','45');
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_table_height','5%');
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_frame_height','40');
function parse_toppart($output)
{
@ -64,7 +64,6 @@
}
if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'text')
{
$var['navbar_color'] = $GLOBALS['phpgw_info']['theme']['bg_color'];
$var['align'] = 'right';
$var['value'] = $GLOBALS['phpgw']->common->create_tabs($tabs,$selected,-1);
$GLOBALS['phpgw']->template->set_var($var);
@ -90,23 +89,10 @@
// . lang($GLOBALS['phpgw']->common->show_date($now,'F')) . ' '
// . $GLOBALS['phpgw']->common->show_date($now,'d, Y');
// Maybe we should create a common function in the phpgw_accounts_shared.inc.php file
// to get rid of duplicate code.
if ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] == 0)
{
$api_messages = lang('You are required to change your password during your first login')
. '<br> Click this image on the navbar: <img src="'
. $GLOBALS['phpgw']->common->image('preferences','navbar.gif').'">';
}
elseif ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] < time() - (86400*30))
{
$api_messages = lang('it has been more then x days since you changed your password',30);
}
// This is gonna change
if (isset($cd))
{
$var['messages'] = $api_messages . '<br>' . checkcode($cd);
$var['messages'] = checkcode($cd);
}
$GLOBALS['phpgw']->template->set_var($var);
$GLOBALS['phpgw']->template->fp($output,'top_part');
@ -119,7 +105,6 @@
$GLOBALS['phpgw']->template->set_file('parts','parts.tpl');
$GLOBALS['phpgw']->template->set_block('parts','bottom_part');
$var = Array(
'bg_color' => $GLOBALS['phpgw_info']['theme']['bg_color'],
'msg' => "<p><p>\n".lang('Powered by phpGroupWare version x',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
);

View File

@ -1,6 +1,6 @@
<!-- BEGIN top_part -->
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<TR bgcolor="{navbar_color}">
<TR bgcolor="{navbar_bg}">
<TD align="left" nowrap>{user_info}</TD>
<TD align="right">{applications}</TD>
</TR>
@ -15,7 +15,7 @@
<!-- END top_part -->
<!-- BEGIN bottom_part -->
<TABLE border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="{bg_color}">
<TABLE border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="{navbar_bg}">
<TR>
<TD align="CENTER">{msg}<BR></TD>
</TR>

View File

@ -11,51 +11,52 @@
<LINK REL="ICON" href="{phpgw_head_browser_ico}" type="image/x-ico">
<LINK REL="SHORTCUT ICON" href="{phpgw_head_browser_ico}">
<TITLE>{phpgw_head_website_title}</TITLE>
<script language="JavaScript" type="text/javascript">
<SCRIPT language="JavaScript" type="text/javascript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function multiLoad(top_doc,left_doc,body_doc,right_doc,bottom_doc) {
if(top_doc != null){parent.top.location.href=top_doc;}
if(left_doc != null){parent.left.location.href=left_doc;}
if(body_doc != null){parent.body.location.href=body_doc;}
if(right_doc != null){parent.right.location.href=right_doc;}
if(bottom_doc != null){parent.bottom.location.href=bottom_doc;}
if(top_doc != null){ parent.top.location.href=top_doc; }
if(left_doc != null){ parent.left.location.href=left_doc; }
if(body_doc != null){ parent.body.location.href=body_doc; }
if(right_doc != null){ parent.right.location.href=right_doc; }
if(bottom_doc != null){ parent.bottom.location.href=bottom_doc; }
}
//-->
</script>
</SCRIPT>
{phpgw_css}
{phpgw_head_tags}
</HEAD>
<BODY {phpgw_body_tags} onLoad="{phpgw_body_onload}">
<BODY {phpgw_body_tags} onLoad="{phpgw_preload_images}{phpgw_body_onload}">
<TABLE border="0" width="100%" height="%100" cellspacing="0" cellpadding="0">
<TR>
<TD width="100%" height="{phpgw_top_height}" align="left" valign="top" colspan="3">{phpgw_top}</TD>
<TD width="100%" height="{phpgw_top_table_height}" align="left" valign="top" colspan="3">{phpgw_top}</TD>
</TR>
<TR>
<TD width="{phpgw_left_width}" height="100%" align="left" valign="top">{phpgw_left}</TD>
<TD width="{phpgw_left_table_width}" height="100%" align="left" valign="top">{phpgw_left}</TD>
<TD width="100%" height="100%" align="left" valign="top">{phpgw_msgbox}{phpgw_body}</TD>
<TD width="{phpgw_right_width}" height="100%" align="right" valign="top">{phpgw_right}</TD>
<TD width="{phpgw_right_table_width}" height="100%" align="right" valign="top">{phpgw_right}</TD>
</TR>
<TR>
<TD width="100%" height="{phpgw_bottom_height}" align="left" valign="top" colspan="3">{phpgw_bottom}</TD>
<TD width="100%" height="{phpgw_bottom_table_height}" align="left" valign="top" colspan="3">{phpgw_bottom}</TD>
</TR>
</TABLE>
</BODY>
@ -75,40 +76,41 @@
<LINK REL="ICON" href="{phpgw_head_browser_ico}" type="image/x-ico">
<LINK REL="SHORTCUT ICON" href="{phpgw_head_browser_ico}">
<TITLE>{phpgw_head_website_title}</TITLE>
<script language="JavaScript" type="text/javascript">
<SCRIPT language="JavaScript" type="text/javascript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function multiLoad(top_doc,left_doc,body_doc,right_doc,bottom_doc) {
if(top_doc != null){parent.top.location.href=top_doc;}
if(left_doc != null){parent.left.location.href=left_doc;}
if(body_doc != null){parent.body.location.href=body_doc;}
if(right_doc != null){parent.right.location.href=right_doc;}
if(bottom_doc != null){parent.bottom.location.href=bottom_doc;}
if(top_doc != null){ parent.top.location.href=top_doc; }
if(left_doc != null){ parent.left.location.href=left_doc; }
if(body_doc != null){ parent.body.location.href=body_doc; }
if(right_doc != null){ parent.right.location.href=right_doc; }
if(bottom_doc != null){ parent.bottom.location.href=bottom_doc; }
}
//-->
</script>
</SCRIPT>
{phpgw_css}
{phpgw_head_tags}
</HEAD>
<BODY {phpgw_body_tags} onLoad="{phpgw_body_onload}">
<BODY {phpgw_body_tags} onLoad="{phpgw_preload_images}{phpgw_body_onload}">
{phpgw_msgbox}
{phpgw_body}
</BODY>
@ -128,20 +130,19 @@
<LINK REL="ICON" href="{phpgw_head_browser_ico}" type="image/x-ico">
<LINK REL="SHORTCUT ICON" href="{phpgw_head_browser_ico}">
<TITLE>{phpgw_head_website_title}</TITLE>
<FRAMESET frameborder="0" border="0" framespacing="0" ROWS="{phpgw_top_height},*,{phpgw_bottom_height}">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_top_link}" NAME="top" SCROLLING=NO>
<FRAMESET frameborder="0" border="0" framespacing="0" COLS="{phpgw_left_width},*,{phpgw_right_width}">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_left_link}" NAME="left" SCROLLING=NO>
<FRAMESET frameborder="0" border="0" framespacing="0" ROWS="{phpgw_top_frame_height},*,{phpgw_bottom_frame_height}">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_top_link}" NAME="top" SCROLLING="{phpgw_top_scrolling}">
<FRAMESET frameborder="0" border="0" framespacing="0" COLS="{phpgw_left_frame_width},*,{phpgw_right_frame_width}">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_left_link}" NAME="left" SCROLLING="{phpgw_left_scrolling}">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_body_link}" NAME="body">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_right_link}" NAME="right" SCROLLING=NO>
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_right_link}" NAME="right" SCROLLING="{phpgw_right_scrolling}">
</FRAMESET>
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_bottom_link}" NAME="bottom" SCROLLING=NO>
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 SRC="{phpgw_bottom_link}" NAME="bottom" SCROLLING="{phpgw_bottom_scrolling}">
<NOFRAMES>
<P>phpGroupWare is configured to use frames, but your browser does not support them.<BR>
<A href="{phpgw_link}&framepart=unsupported">click here to force non-frames mode</A>
<A href="{phpgw_unupported_link}">click here to force non-frames mode</A>
</NOFRAMES>
</FRAMESET>
</HEAD>
</HTML>
<!-- END phpgw_main_frames -->

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '000000';
$phpgw_info['theme']['navbar_bg'] = '000000';
$phpgw_info['theme']['special_logo'] = 'logo_000000.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '000000';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_000000.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#CCCCFF';
$phpgw_info['theme']['row_off'] = '#E4DFFF';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#9999FF';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#967FF4';
$phpgw_info['theme']['special_logo'] = 'logo_967FF4.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#967FF4';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#CCCCFF';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#E4DFFF';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#967FF4';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_967FF4.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#967FF4';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// This one is for the calendar only
$phpgw_info['theme']['cal_today']= '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_today']= '#FFFFCC';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#5A0000';
$phpgw_info['theme']['special_logo'] = 'logo_5A0000.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#5A0000';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_5A0000.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#000099';
$phpgw_info['theme']['special_logo'] = 'logo_000099.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#000099';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_000099.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#003300';
$phpgw_info['theme']['special_logo'] = 'logo_003300.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#003300';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_003300.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,48 +11,48 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#9999FF';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';
// This is the CSS definition
$phpgw_info['theme']['css']['.navbar'] = 'font-family: Verdana;font-size: 8pt; color:#000000;}';
$phpgw_info['theme']['css']['.bodytext'] = 'font-family: Verdana; font-size: 8pt; color:#000000;';
$phpgw_info['theme']['css']['.whitetext'] = 'font-family: Verdana; font-size: 8pt; color:#ffffff;';
$phpgw_info['theme']['css']['.headertext'] = 'font-family: Verdana; font-size: 11pt; font-weight: bold; color:#ffffff;';
$phpgw_info['theme']['css']['.inputtext'] = ' font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#ffffff";';
$phpgw_info['theme']['css']['.buttontext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$phpgw_info['theme']['css']['.linktext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$phpgw_info['theme']['css']['.row_on'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$phpgw_info['theme']['css']['.row_off'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.navbar'] = 'font-family: Verdana;font-size: 8pt; color:#000000;}';
$GLOBALS['phpgw_info']['theme']['css']['.bodytext'] = 'font-family: Verdana; font-size: 8pt; color:#000000;';
$GLOBALS['phpgw_info']['theme']['css']['.whitetext'] = 'font-family: Verdana; font-size: 8pt; color:#ffffff;';
$GLOBALS['phpgw_info']['theme']['css']['.headertext'] = 'font-family: Verdana; font-size: 11pt; font-weight: bold; color:#ffffff;';
$GLOBALS['phpgw_info']['theme']['css']['.inputtext'] = ' font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#ffffff";';
$GLOBALS['phpgw_info']['theme']['css']['.buttontext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.linktext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.row_on'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.row_off'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';

View File

@ -11,36 +11,36 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#F5F5F5';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = '#EE0000';
$phpgw_info['theme']['alink'] = '#EE0000';
$phpgw_info['theme']['link'] = '#EE0000';
$phpgw_info['theme']['row_on'] = '#EEEEFF';
$phpgw_info['theme']['row_off'] = '#FFFFEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#FFE4C4';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#AABBCC';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#F5F5F5';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#F5F5F5';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = '#EE0000';
$GLOBALS['phpgw_info']['theme']['alink'] = '#EE0000';
$GLOBALS['phpgw_info']['theme']['link'] = '#EE0000';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#EEEEFF';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#FFFFEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#FFE4C4';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#AABBCC';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#F5F5F5';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#D0DCE0';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#D0DCE0';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#7090FF';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#7090FF';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#dfdfdf';
$phpgw_info['theme']['bg_text'] = '#222222';
$phpgw_info['theme']['vlink'] = '#5555ff';
$phpgw_info['theme']['alink'] = 'black';
$phpgw_info['theme']['link'] = '#0000ff';
$phpgw_info['theme']['row_on'] = '#eeeeee';
$phpgw_info['theme']['row_off'] = '#cccccc';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#eeeeee';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#aaaaaa';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#eeeeee';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#eeeeee';
$phpgw_info['theme']['bg02'] = '#cccccc';
$phpgw_info['theme']['bg03'] = '#bbbbbb';
$phpgw_info['theme']['bg04'] = '#aaaaaa';
$phpgw_info['theme']['bg05'] = '#999999';
$phpgw_info['theme']['bg06'] = '#888888';
$phpgw_info['theme']['bg07'] = '#777777';
$phpgw_info['theme']['bg08'] = '#666666';
$phpgw_info['theme']['bg09'] = '#555555';
$phpgw_info['theme']['bg10'] = '#444444';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#dfdfdf';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#222222';
$GLOBALS['phpgw_info']['theme']['vlink'] = '#5555ff';
$GLOBALS['phpgw_info']['theme']['alink'] = 'black';
$GLOBALS['phpgw_info']['theme']['link'] = '#0000ff';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#eeeeee';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#cccccc';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#eeeeee';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#aaaaaa';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#eeeeee';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#eeeeee';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#cccccc';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#bbbbbb';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#aaaaaa';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#999999';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#888888';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#777777';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#666666';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#555555';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#444444';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FBF1C5';
$phpgw_info['theme']['cal_dayview'] = '#F9E99F';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FBF1C5';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#F9E99F';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#EAD688';
$phpgw_info['theme']['em_folder_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#EAD688';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#000000';
?>

View File

@ -11,36 +11,36 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#80BBFF';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#7090FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#80BBFF';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#7090FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#7090FF';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#7090FF';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,51 +11,51 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#ffffff';
$phpgw_info['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#ffffff';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
// vlink is annoying and unncessary for most apps, make same as link
//$phpgw_info['theme']['vlink'] = '#333366';
$phpgw_info['theme']['vlink'] = '#336699';
$phpgw_info['theme']['alink'] = '#ff0000';
//$GLOBALS['phpgw_info']['theme']['vlink'] = '#333366';
$GLOBALS['phpgw_info']['theme']['vlink'] = '#336699';
$GLOBALS['phpgw_info']['theme']['alink'] = '#ff0000';
// A.hover in CSS currently works only with idsociety theme + template combo
$phpgw_info['theme']['hovlink'] = '#cc0000';
$phpgw_info['theme']['link'] = '#336699';
$phpgw_info['theme']['row_on'] = '#dddddd';
$phpgw_info['theme']['row_off'] = '#eeeeee';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#adadad';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#adadad';
$phpgw_info['theme']['navbar_text'] = '#ffffff';
$phpgw_info['theme']['table_bg'] = '#9999ff';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['hovlink'] = '#cc0000';
$GLOBALS['phpgw_info']['theme']['link'] = '#336699';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#dddddd';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#eeeeee';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#adadad';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#adadad';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#ffffff';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999ff';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#ffffcc';
$phpgw_info['theme']['cal_dayview'] = '#c0c0c0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#ffffcc';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#c0c0c0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#adadad';
$phpgw_info['theme']['em_folder_text'] = '#ffffff';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#adadad';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#ffffff';
// This is the CSS definition
$phpgw_info['theme']['css']['.navbar'] = 'font-family: Verdana;font-size: 8pt; color:#000000;}';
$phpgw_info['theme']['css']['.bodytext'] = 'font-family: Verdana; font-size: 8pt; color:#000000;';
$phpgw_info['theme']['css']['.whitetext'] = 'font-family: Verdana; font-size: 8pt; color:#ffffff;';
$phpgw_info['theme']['css']['.headertext'] = 'font-family: Verdana; font-size: 11pt; font-weight: bold; color:#ffffff;';
$phpgw_info['theme']['css']['.inputtext'] = ' font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#ffffff";';
$phpgw_info['theme']['css']['.buttontext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$phpgw_info['theme']['css']['.linktext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$phpgw_info['theme']['css']['.row_on'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$phpgw_info['theme']['css']['.row_off'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.navbar'] = 'font-family: Verdana;font-size: 8pt; color:#000000;}';
$GLOBALS['phpgw_info']['theme']['css']['.bodytext'] = 'font-family: Verdana; font-size: 8pt; color:#000000;';
$GLOBALS['phpgw_info']['theme']['css']['.whitetext'] = 'font-family: Verdana; font-size: 8pt; color:#ffffff;';
$GLOBALS['phpgw_info']['theme']['css']['.headertext'] = 'font-family: Verdana; font-size: 11pt; font-weight: bold; color:#ffffff;';
$GLOBALS['phpgw_info']['theme']['css']['.inputtext'] = ' font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#ffffff";';
$GLOBALS['phpgw_info']['theme']['css']['.buttontext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.linktext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.row_on'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
$GLOBALS['phpgw_info']['theme']['css']['.row_off'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#486591';
$phpgw_info['theme']['special_logo'] = 'logo_486591.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#486591';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_486591.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#885522';
$phpgw_info['theme']['special_logo'] = 'logo_885522.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#885522';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_885522.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -12,37 +12,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#000000';
$phpgw_info['theme']['bg_text'] = '#00FF33';
$phpgw_info['theme']['vlink'] = '#0000FF';
$phpgw_info['theme']['alink'] = '#999999';
$phpgw_info['theme']['link'] = '#0000FF';
$phpgw_info['theme']['row_on'] = '#909090';
$phpgw_info['theme']['row_off'] = '#808080';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#404040';
$phpgw_info['theme']['th_text'] = '#00FF33';
$phpgw_info['theme']['navbar_bg'] = '#00FF33';
$phpgw_info['theme']['navbar_text'] = '#FFFFFF';
$phpgw_info['theme']['table_bg'] = '#00FF33';
$phpgw_info['theme']['table_text'] = '#FFFFFF';
$phpgw_info['theme']['font'] = 'Helvetica';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#000000';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#00FF33';
$GLOBALS['phpgw_info']['theme']['vlink'] = '#0000FF';
$GLOBALS['phpgw_info']['theme']['alink'] = '#999999';
$GLOBALS['phpgw_info']['theme']['link'] = '#0000FF';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#909090';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#808080';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#404040';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#00FF33';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#00FF33';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#00FF33';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['font'] = 'Helvetica';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// This one is for the calendar only
$phpgw_info['theme']['cal_today'] = '#BFBFBF';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#BFBFBF';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#808080';
$phpgw_info['theme']['em_folder_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#808080';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#000000';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#663366';
$phpgw_info['theme']['special_logo'] = 'logo_663366.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#663366';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_663366.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#D3DCE3';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#990000';
$phpgw_info['theme']['special_logo'] = 'logo_990000.gif';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#9999FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#D3DCE3';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#990000';
$GLOBALS['phpgw_info']['theme']['special_logo'] = 'logo_990000.gif';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#666699';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#666699';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#ce9592';
$phpgw_info['theme']['bg_text'] = '#9d1811';
$phpgw_info['theme']['vlink'] = 'pink';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'red';
$phpgw_info['theme']['row_on'] = '#DDDDDD';
$phpgw_info['theme']['row_off'] = '#EEEEEE';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#ce9592';
$phpgw_info['theme']['th_text'] = '#9d1811';
$phpgw_info['theme']['navbar_bg'] = '#bd524a';
$phpgw_info['theme']['navbar_text'] = '#9d1811';
$phpgw_info['theme']['table_bg'] = '#ffbab7';
$phpgw_info['theme']['table_text'] = '#72022a';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#ce9592';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#9d1811';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'pink';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'red';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#DDDDDD';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#EEEEEE';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#ce9592';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#9d1811';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#bd524a';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#9d1811';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#ffbab7';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#72022a';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#bd524a';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#bd524a';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#bd542a';
$phpgw_info['theme']['em_folder_text'] = '#9d1811';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#bd542a';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#9d1811';

View File

@ -11,36 +11,36 @@
/* $Id$ */
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
$phpgw_info['theme']['bg_text'] = '#000000';
$phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info['theme']['alink'] = 'red';
$phpgw_info['theme']['link'] = 'blue';
$phpgw_info['theme']['row_on'] = '#CCEEFF';
$phpgw_info['theme']['row_off'] = '#DDF0FF';
$phpgw_info['theme']['row_text'] = '#000000';
$phpgw_info['theme']['th_bg'] = '#80BBFF';
$phpgw_info['theme']['th_text'] = '#000000';
$phpgw_info['theme']['navbar_bg'] = '#80CCFF';
$phpgw_info['theme']['navbar_text'] = '#000000';
$phpgw_info['theme']['table_bg'] = '#7090FF';
$phpgw_info['theme']['table_text'] = '#000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01'] = '#dadada';
$phpgw_info['theme']['bg02'] = '#dad0d0';
$phpgw_info['theme']['bg03'] = '#dacaca';
$phpgw_info['theme']['bg04'] = '#dac0c0';
$phpgw_info['theme']['bg05'] = '#dababa';
$phpgw_info['theme']['bg06'] = '#dab0b0';
$phpgw_info['theme']['bg07'] = '#daaaaa';
$phpgw_info['theme']['bg08'] = '#da9090';
$phpgw_info['theme']['bg09'] = '#da8a8a';
$phpgw_info['theme']['bg10'] = '#da7a7a';
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['vlink'] = 'blue';
$GLOBALS['phpgw_info']['theme']['alink'] = 'red';
$GLOBALS['phpgw_info']['theme']['link'] = 'blue';
$GLOBALS['phpgw_info']['theme']['row_on'] = '#CCEEFF';
$GLOBALS['phpgw_info']['theme']['row_off'] = '#DDF0FF';
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#80BBFF';
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#80CCFF';
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#7090FF';
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#FFFFCC';
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#C0C0C0';
// These are for the email only
$phpgw_info['theme']['em_folder'] = '#7090FF';
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#7090FF';
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#FFFFFF';

View File

@ -5,7 +5,7 @@
# template2theme.pl < infile > outfile
# by Stephan
# $Id$
$wrap='$phpgw_info['theme']['_KEY_']= '_VAL_'';
$wrap='$GLOBALS['phpgw_info']['theme']['_KEY_']= '_VAL_'';
print '<?\n';
print << 'EOF';
# phpGroupWare Theme file

View File

@ -13,6 +13,6 @@ print << 'EOF';
EOF
while( $_ = <STDIN> ) {
chomp($_);
next unless ( $_ =~ /\$phpgw_info\[\'theme\'\]\[\'(.*)\'\].*=.*\'(.*)\'.*/ );
next unless ( $_ =~ /\$GLOBALS\[\'phpgw_info\'\]\[\'theme\'\]\[\'(.*)\'\].*=.*\'(.*)\'.*/ );
print '$1=$2\n';
}

View File

@ -11,37 +11,37 @@
/* $Id$ */
$phpgw_info['theme']['bg_color']= 'FBF1C5';
$phpgw_info['theme']['bg_text']= '000000';
$phpgw_info['theme']['vlink']= 'blue';
$phpgw_info['theme']['alink']= 'red';
$phpgw_info['theme']['link']= 'blue';
$phpgw_info['theme']['row_on']= 'F7E58F';
$phpgw_info['theme']['row_off']= 'EAD688';
$phpgw_info['theme']['row_text']= '000000';
$phpgw_info['theme']['th_bg']= 'C8A63B';
$phpgw_info['theme']['th_text']= '000000';
$phpgw_info['theme']['navbar_bg']= 'F7E58F';
$phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info['theme']['table_bg']= 'EAD688';
$phpgw_info['theme']['table_text']= 'C5AA2B';
$phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01']= 'FBF4D3';
$phpgw_info['theme']['bg02']= 'F9EDB3';
$phpgw_info['theme']['bg03']= 'F5E28B';
$phpgw_info['theme']['bg04']= 'F0D866';
$phpgw_info['theme']['bg05']= 'EDCD39';
$phpgw_info['theme']['bg06']= 'D5B211';
$phpgw_info['theme']['bg07']= 'CCAB12';
$phpgw_info['theme']['bg08']= 'C58C13';
$phpgw_info['theme']['bg09']= 'B69910';
$phpgw_info['theme']['bg10']= 'AC9010';
$GLOBALS['phpgw_info']['theme']['bg_color']= 'FBF1C5';
$GLOBALS['phpgw_info']['theme']['bg_text']= '000000';
$GLOBALS['phpgw_info']['theme']['vlink']= 'blue';
$GLOBALS['phpgw_info']['theme']['alink']= 'red';
$GLOBALS['phpgw_info']['theme']['link']= 'blue';
$GLOBALS['phpgw_info']['theme']['row_on']= 'F7E58F';
$GLOBALS['phpgw_info']['theme']['row_off']= 'EAD688';
$GLOBALS['phpgw_info']['theme']['row_text']= '000000';
$GLOBALS['phpgw_info']['theme']['th_bg']= 'C8A63B';
$GLOBALS['phpgw_info']['theme']['th_text']= '000000';
$GLOBALS['phpgw_info']['theme']['navbar_bg']= 'F7E58F';
$GLOBALS['phpgw_info']['theme']['navbar_text']= '000000';
$GLOBALS['phpgw_info']['theme']['table_bg']= 'EAD688';
$GLOBALS['phpgw_info']['theme']['table_text']= 'C5AA2B';
$GLOBALS['phpgw_info']['theme']['font']= 'Arial, Helvetica, san-serif';
$GLOBALS['phpgw_info']['theme']['bg01']= 'FBF4D3';
$GLOBALS['phpgw_info']['theme']['bg02']= 'F9EDB3';
$GLOBALS['phpgw_info']['theme']['bg03']= 'F5E28B';
$GLOBALS['phpgw_info']['theme']['bg04']= 'F0D866';
$GLOBALS['phpgw_info']['theme']['bg05']= 'EDCD39';
$GLOBALS['phpgw_info']['theme']['bg06']= 'D5B211';
$GLOBALS['phpgw_info']['theme']['bg07']= 'CCAB12';
$GLOBALS['phpgw_info']['theme']['bg08']= 'C58C13';
$GLOBALS['phpgw_info']['theme']['bg09']= 'B69910';
$GLOBALS['phpgw_info']['theme']['bg10']= 'AC9010';
// Theses are for the calendar only
$phpgw_info['theme']['cal_today']= 'FBF1C5';
$phpgw_info['theme']['cal_dayview']= 'F9E99F';
$GLOBALS['phpgw_info']['theme']['cal_today']= 'FBF1C5';
$GLOBALS['phpgw_info']['theme']['cal_dayview']= 'F9E99F';
// These are for the email only
$phpgw_info['theme']['em_folder']= 'EAD688';
$phpgw_info['theme']['em_folder_text']= '000000';
$GLOBALS['phpgw_info']['theme']['em_folder']= 'EAD688';
$GLOBALS['phpgw_info']['theme']['em_folder_text']= '000000';