egroupware/preferences/index.php

141 lines
4.1 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
2001-03-08 10:56:18 +01:00
/**************************************************************************\
* phpGroupWare - preferences *
* http://www.phpgroupware.org *
* Written by Joseph Engo <jengo@phpgroupware.org> *
* -------------------------------------------- *
2001-03-08 10:56:18 +01:00
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
2001-03-08 10:56:18 +01:00
/* $Id$ */
2000-08-18 05:24:22 +02:00
2002-01-11 15:04:40 +01:00
$phpgw_info = array();
$GLOBALS['phpgw_info']['flags']['currentapp'] = 'preferences';
2001-03-08 10:56:18 +01:00
include('../header.inc.php');
2001-05-11 20:43:47 +02:00
$pref_tpl = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
$templates = Array(
'pref' => 'index.tpl'
);
$pref_tpl->set_file($templates);
2002-01-11 15:04:40 +01:00
$pref_tpl->set_block('pref','list');
$pref_tpl->set_block('pref','app_row');
$pref_tpl->set_block('pref','app_row_noicon');
$pref_tpl->set_block('pref','link_row');
$pref_tpl->set_block('pref','spacer_row');
2001-05-11 23:18:59 +02:00
if ($GLOBALS['phpgw']->acl->check('run',1,'admin'))
{
2002-01-11 15:04:40 +01:00
// This is where we will keep track of our position.
// Developers won't have to pass around a variable then
$session_data = $GLOBALS['phpgw']->session->appsession('session_data','preferences');
if (! is_array($session_data))
{
2002-01-11 15:04:40 +01:00
$session_data = array('type' => 'user');
$GLOBALS['phpgw']->session->appsession('session_data','preferences',$session_data);
}
if (! $GLOBALS['HTTP_GET_VARS']['type'])
{
$type = $session_data['type'];
}
else
{
$type = $GLOBALS['HTTP_GET_VARS']['type'];
2002-01-11 15:04:40 +01:00
$session_data = array('type' => $type);
$GLOBALS['phpgw']->session->appsession('session_data','preferences',$session_data);
}
$tabs[] = array(
2002-01-11 15:04:40 +01:00
'label' => lang('Your preferences'),
'link' => $GLOBALS['phpgw']->link('/preferences/index.php','type=user')
);
$tabs[] = array(
2002-01-11 15:04:40 +01:00
'label' => lang('Default preferences'),
'link' => $GLOBALS['phpgw']->link('/preferences/index.php','type=default')
);
$tabs[] = array(
2002-01-11 15:04:40 +01:00
'label' => lang('Forced preferences'),
'link' => $GLOBALS['phpgw']->link('/preferences/index.php','type=forced')
);
switch($type)
{
2002-01-11 15:04:40 +01:00
case 'user': $selected = 0; break;
case 'default': $selected = 1; break;
case 'forced': $selected = 2; break;
}
$pref_tpl->set_var('tabs',$GLOBALS['phpgw']->common->create_tabs($tabs,$selected));
}
2001-03-08 10:56:18 +01:00
// This func called by the includes to dump a row header
2002-11-04 01:50:18 +01:00
function section_start($appname='',$icon='')
2001-03-08 10:56:18 +01:00
{
global $pref_tpl;
2002-11-04 01:50:18 +01:00
$pref_tpl->set_var('icon_backcolor',$GLOBALS['phpgw_info']['theme']['row_off']);
// $pref_tpl->set_var('link_backcolor',$GLOBALS['phpgw_info']['theme']['row_off']);
$pref_tpl->set_var('a_name',$appname);
$pref_tpl->set_var('app_name',$GLOBALS['phpgw_info']['apps'][$appname]['title']);
$pref_tpl->set_var('app_icon',$icon);
2001-03-08 10:56:18 +01:00
if ($icon)
{
$pref_tpl->parse('rows','app_row',True);
2001-03-08 10:56:18 +01:00
}
else
{
$pref_tpl->parse('rows','app_row_noicon',True);
}
2001-03-08 10:56:18 +01:00
}
2001-05-11 19:19:20 +02:00
function section_item($pref_link='',$pref_text='')
{
global $pref_tpl;
$pref_tpl->set_var('pref_link',$pref_link);
if (strtolower($pref_text) == 'grant access' && $GLOBALS['phpgw_info']['server']['deny_user_grants_access'])
{
return False;
}
else
{
$pref_tpl->set_var('pref_text',$pref_text);
}
$pref_tpl->parse('rows','link_row',True);
}
2001-05-11 19:19:20 +02:00
2001-03-08 10:56:18 +01:00
function section_end()
{
global $pref_tpl;
$pref_tpl->parse('rows','spacer_row',True);
}
function display_section($appname,$file,$file2=False)
{
if ($file2)
{
$file = $file2;
}
section_start($appname,$GLOBALS['phpgw']->common->image($appname,Array('navbar',$appname)));
while(list($text,$url) = each($file))
{
section_item($url,lang($text));
}
section_end();
2001-03-08 10:56:18 +01:00
}
2000-12-15 22:56:09 +01:00
2002-01-11 15:04:40 +01:00
$GLOBALS['phpgw']->hooks->process('preferences',array('preferences'));
$pref_tpl->pfp('out','list');
$GLOBALS['phpgw']->common->phpgw_footer();
?>