egroupware/setup/inc/class.setup_html.inc.php

337 lines
10 KiB
PHP
Raw Normal View History

2002-03-03 22:47:30 +01:00
<?php
/**
2016-05-01 17:56:49 +02:00
* EGroupware Setup
*
* @link http://www.egroupware.org
* @package setup
* @author Tony Puglisi (Angles) <angles@aminvestments.com>
* @author Miles Lott <milos@groupwhere.org>
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
2002-03-03 22:47:30 +01:00
2016-05-01 17:56:49 +02:00
use EGroupware\Api;
/**
* Some static helper functions to generate html stuff in setup
*/
class setup_html
{
/**
* generate header.inc.php file output - NOT a generic html header function
*
*/
static function generate_header()
2002-03-03 22:47:30 +01:00
{
// PHP will automatically replace any dots in incoming
// variable names with underscores.
$GLOBALS['header_template']->set_file(array('header' => 'header.inc.php.template'));
$GLOBALS['header_template']->set_block('header','domain','domain');
$var = Array();
2002-03-03 22:47:30 +01:00
$deletedomain = $_POST['deletedomain'];
$domains = $_POST['domains'];
foreach($domains as $k => $v)
{
if(is_array($deletedomain) && isset($deletedomain[$k]))
{
continue;
}
$variableName = str_replace('.','_',$k);
$dom = $_POST['setting_'.$variableName];
$GLOBALS['header_template']->set_var('DB_DOMAIN',$v);
foreach($dom as $x => $y)
2002-03-03 22:47:30 +01:00
{
if(strtoupper($x) == 'CONFIG_PASS')
{
$GLOBALS['header_template']->set_var(strtoupper($x),md5($y));
}
else
{
$GLOBALS['header_template']->set_var(strtoupper($x),$y);
}
2002-03-03 22:47:30 +01:00
}
/* Admin did not type a new password, so use the old one from the hidden field,
* which is already md5 encoded.
*/
if($dom['config_password'] && !$dom['config_pass'])
{
/* Real == hidden */
$GLOBALS['header_template']->set_var('CONFIG_PASS',$dom['config_password']);
2002-03-03 22:47:30 +01:00
}
/* If the admin didn't select a db_port, set to the default */
if(!$dom['db_port'])
2002-03-03 22:47:30 +01:00
{
$GLOBALS['header_template']->set_var('DB_PORT',$GLOBALS['default_db_ports'][$dom['db_type']]);
2002-03-03 22:47:30 +01:00
}
$GLOBALS['header_template']->parse('domains','domain',True);
2002-03-03 22:47:30 +01:00
}
$GLOBALS['header_template']->set_var('domain','');
$setting = $_POST['setting'];
while($setting && list($k,$v) = @each($setting))
2002-03-03 22:47:30 +01:00
{
if(strtoupper($k) == 'HEADER_ADMIN_PASSWORD')
2002-03-03 22:47:30 +01:00
{
$var[strtoupper($k)] = md5($v);
2002-03-03 22:47:30 +01:00
}
else
{
$var[strtoupper($k)] = $v;
2002-03-03 22:47:30 +01:00
}
}
/* Admin did not type a new header password, so use the old one from the hidden field,
* which is already md5 encoded.
*/
if($var['HEADER_ADMIN_PASS'] && empty($setting['HEADER_ADMIN_PASSWORD']))
{
/* Real == hidden */
$var['HEADER_ADMIN_PASSWORD'] = $var['HEADER_ADMIN_PASS'];
}
$GLOBALS['header_template']->set_var($var);
return $GLOBALS['header_template']->parse('out','header');
}
static function setup_tpl_dir($app_name='setup')
{
/* hack to get tpl dir */
if (is_dir(EGW_SERVER_ROOT))
{
$srv_root = EGW_SERVER_ROOT . '/' . $app_name . '/';
}
else
{
$srv_root = '';
}
$tpl_typical = 'templates/default';
$tpl_root = "$srv_root" ."$tpl_typical";
return $tpl_root;
}
2006-04-06 13:19:56 +02:00
static function show_header($title='',$nologoutbutton=False, $logoutfrom='config', $configdomain='')
{
// add a content-type header to overwrite an existing default charset in apache (AddDefaultCharset directiv)
header('Content-type: text/html; charset='.$GLOBALS['egw_setup']->system_charset);
2006-04-06 13:19:56 +02:00
$GLOBALS['setup_tpl']->set_var('charset',$GLOBALS['egw_setup']->system_charset);
$style = array(
'th_bg' => '#486591',
'th_text' => '#FFFFFF',
'row_on' => '#DDDDDD',
'row_off' => '#EEEEEE',
'banner_bg' => '#4865F1',
'msg' => '#FF0000',
);
$GLOBALS['setup_tpl']->set_var($style);
if ($nologoutbutton)
{
$GLOBALS['setup_tpl']->set_block('T_head','loged_in');
$GLOBALS['setup_tpl']->set_var('loged_in','');
2002-03-03 22:47:30 +01:00
}
else
2002-03-03 22:47:30 +01:00
{
$btn_logout = '<a href="index.php?FormLogout=' . $logoutfrom . '" class="link">' . lang('Logout').'</a>';
$check_install = '<a class="textsidebox" href="check_install.php">'.lang('Check installation').'</a>';
$register_hooks = '<a class="textsidebox" href="applications.php?hooks=1">'.lang('Clear cache and register hooks').'</a>';
2002-03-03 22:47:30 +01:00
}
$GLOBALS['setup_tpl']->set_var('lang_setup', lang('setup'));
$GLOBALS['setup_tpl']->set_var('page_title',$title);
if ($configdomain == '')
2002-03-03 22:47:30 +01:00
{
$GLOBALS['setup_tpl']->set_var('configdomain','');
2002-03-03 22:47:30 +01:00
}
else
2002-03-03 22:47:30 +01:00
{
$GLOBALS['setup_tpl']->set_var('configdomain',' - ' . lang('Domain') . ': ' . $configdomain);
2002-03-03 22:47:30 +01:00
}
if(basename($_SERVER['SCRIPT_FILENAME']) != 'index.php')
2002-03-03 22:47:30 +01:00
{
$index_btn = '<a href="index.php" class="link">' . lang('Setup Main Menu') . '</a>';
$index_img = '<img src="../api/templates/default/images/bullet.png" />';
2002-03-03 22:47:30 +01:00
}
$GLOBALS['setup_tpl']->set_var('lang_version',lang('version'));
2016-04-02 22:25:01 +02:00
if (!isset($GLOBALS['setup_info']) || !isset($GLOBALS['setup_info']['api']))
{
include(EGW_SERVER_ROOT.'/api/setup/setup.inc.php');
}
else
{
$setup_info = $GLOBALS['setup_info'];
}
$GLOBALS['setup_tpl']->set_var('pgw_ver', $setup_info['api']['version']);
$GLOBALS['setup_tpl']->set_var(array(
'logoutbutton' => $btn_logout,
'indexbutton' => $index_btn,
'indeximg' => $index_img,
'check_install' => $check_install,
'register_hooks'=> $register_hooks,
'main_menu' => lang('Setup Main Menu'),
'user_login' => lang('Back to user login'),
'help_menu' => lang('Help and support'),
'documentation' => lang('Documentation'),
'commercial_support' => lang('Commercial support'),
'community_forum' => lang('Community forum'),
));
2002-03-03 22:47:30 +01:00
$GLOBALS['setup_tpl']->pparse('out','T_head');
}
static function show_footer()
{
$GLOBALS['setup_tpl']->pparse('out','T_footer');
unset($GLOBALS['setup_tpl']);
}
static function show_alert_msg($alert_word='Setup alert',$alert_msg='setup alert (generic)')
{
$GLOBALS['setup_tpl']->set_var('V_alert_word',$alert_word);
$GLOBALS['setup_tpl']->set_var('V_alert_msg',$alert_msg);
$GLOBALS['setup_tpl']->pparse('out','T_alert_msg');
}
static function make_frm_btn_simple($pre_frm_blurb='',$frm_method='post',$frm_action='',$input_type='submit',$input_value='',$post_frm_blurb='')
{
/* a simple form has simple components */
$simple_form = $pre_frm_blurb ."\n"
. '<form method="' . $frm_method . '" action="' . $frm_action . '">' . "\n"
. '<input type="' . $input_type . '" value="' . $input_value . '" />' . "\n"
. '</form>' . "\n"
. $post_frm_blurb . "\n";
return $simple_form;
}
static function make_href_link_simple($pre_link_blurb='',$href_link='',$href_text='default text',$post_link_blurb='')
{
/* a simple href link has simple components */
$simple_link = $pre_link_blurb
. '<a href="' . $href_link . '">' . $href_text . '</a> '
. $post_link_blurb . "\n";
return $simple_link;
}
static function login_form()
{
/* begin use TEMPLATE login_main.tpl */
$GLOBALS['setup_tpl']->set_var('ConfigLoginMSG',@$GLOBALS['egw_info']['setup']['ConfigLoginMSG']);
$GLOBALS['setup_tpl']->set_var('HeaderLoginMSG',@$GLOBALS['egw_info']['setup']['HeaderLoginMSG']);
$GLOBALS['setup_tpl']->set_var('lang_header_username',lang('Header Username'));
$GLOBALS['setup_tpl']->set_var('lang_header_password',lang('Header Password'));
$GLOBALS['setup_tpl']->set_var('lang_header_login',lang('Header Admin Login'));
$GLOBALS['setup_tpl']->set_var('lang_config_login',lang('Setup/Config Admin Login'));
$GLOBALS['setup_tpl']->set_var('lang_config_username',lang('Config Username'));
$GLOBALS['setup_tpl']->set_var('lang_config_password',lang('Config Password'));
$GLOBALS['setup_tpl']->set_var('lang_domain',lang('Domain'));
$GLOBALS['setup_tpl']->set_var('lang_select',self::lang_select());
if ($GLOBALS['egw_info']['setup']['stage']['header'] == '10')
{
/*
Begin use SUB-TEMPLATE login_stage_header,
fills V_login_stage_header used inside of login_main.tpl
*/
if (count($GLOBALS['egw_domain']) > 1)
2002-03-03 22:47:30 +01:00
{
2016-05-01 17:56:49 +02:00
foreach(array_keys($GLOBALS['egw_domain']) as $domain)
2002-03-03 22:47:30 +01:00
{
$domains .= "<option value=\"$domain\" ".($domain == @$GLOBALS['egw_info']['setup']['LastDomain'] ? ' selected="selected"' : '').">$domain</option>\n";
2002-03-03 22:47:30 +01:00
}
$GLOBALS['setup_tpl']->set_var('domains',$domains);
2002-03-03 22:47:30 +01:00
// use BLOCK B_multi_domain inside of login_stage_header
$GLOBALS['setup_tpl']->parse('V_multi_domain','B_multi_domain');
// in this case, the single domain block needs to be nothing
$GLOBALS['setup_tpl']->set_var('V_single_domain','');
2002-03-03 22:47:30 +01:00
}
else
{
reset($GLOBALS['egw_domain']);
$default_domain = each($GLOBALS['egw_domain']);
$GLOBALS['setup_tpl']->set_var('default_domain_zero',$default_domain[0]);
/* Use BLOCK B_single_domain inside of login_stage_header */
$GLOBALS['setup_tpl']->parse('V_single_domain','B_single_domain');
/* in this case, the multi domain block needs to be nothing */
2002-03-03 22:47:30 +01:00
$GLOBALS['setup_tpl']->set_var('V_multi_domain','');
}
/*
End use SUB-TEMPLATE login_stage_header
put all this into V_login_stage_header for use inside login_main
2002-03-03 22:47:30 +01:00
*/
$GLOBALS['setup_tpl']->parse('V_login_stage_header','T_login_stage_header');
2002-03-03 22:47:30 +01:00
}
else
2002-03-03 22:47:30 +01:00
{
/* begin SKIP SUB-TEMPLATE login_stage_header */
$GLOBALS['setup_tpl']->set_var('V_multi_domain','');
$GLOBALS['setup_tpl']->set_var('V_single_domain','');
$GLOBALS['setup_tpl']->set_var('V_login_stage_header','');
}
/*
end use TEMPLATE login_main.tpl
now out the login_main template
*/
$GLOBALS['setup_tpl']->pparse('out','T_login_main');
}
2002-03-03 22:47:30 +01:00
static function lang_select($onChange=False,$ConfigLang='')
{
if (empty($ConfigLang))
{
$ConfigLang = setup::get_lang(true); // true use Accept-Language header
}
2016-05-01 17:56:49 +02:00
return Api\Html::select('ConfigLang', $ConfigLang, Api\Translation::get_available_langs(false), true,
$onChange ? ' onchange="this.form.submit();"' : '');
}
2002-03-03 22:47:30 +01:00
static function get_template_list()
{
$d = dir(EGW_SERVER_ROOT . '/phpgwapi/templates');
2016-05-01 17:56:49 +02:00
$list = array();
while($entry = $d->read())
2002-03-03 22:47:30 +01:00
{
if ($entry != 'CVS' && $entry != '.' && $entry != '..')
2002-03-03 22:47:30 +01:00
{
$list[$entry]['name'] = $entry;
$f = EGW_SERVER_ROOT . '/phpgwapi/templates/' . $entry . '/details.inc.php';
if (file_exists ($f))
{
include($f);
$list[$entry]['title'] = 'Use ' . $GLOBALS['egw_info']['template'][$entry]['title'] . 'interface';
}
else
2002-03-03 22:47:30 +01:00
{
$list[$entry]['title'] = $entry;
2002-03-03 22:47:30 +01:00
}
}
}
$d->close();
reset ($list);
return $list;
}
static function list_themes()
{
$dh = dir(EGW_SERVER_ROOT . '/phpgwapi/themes');
while ($file = $dh->read())
{
if (preg_match('/'."\.theme$".'/i', $file))
{
$list[] = substr($file,0,strpos($file,'.'));
}
}
$dh->close();
reset ($list);
return $list;
2002-03-03 22:47:30 +01:00
}
}