mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
a little nicer admin and prefs index page
This commit is contained in:
parent
4477efd6dc
commit
7e036516ef
@ -1,30 +1,63 @@
|
|||||||
<!-- BEGIN list -->
|
<!-- BEGIN list -->
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<style>
|
||||||
|
<!--
|
||||||
|
#prefIndex {
|
||||||
|
}
|
||||||
|
#divGenTime {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
.prefAppBox {
|
||||||
|
width: 225px;
|
||||||
|
min-height: 125px;
|
||||||
|
border: 2px ridge gray;
|
||||||
|
border-radius: 10px;
|
||||||
|
margin: 5px;
|
||||||
|
padding-left: 5px;
|
||||||
|
float: left;
|
||||||
|
box-shadow:8px 8px 8px #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.prefAppBox h3 {
|
||||||
|
height: 32px;
|
||||||
|
padding-left: 50px;
|
||||||
|
padding-top: 10px;
|
||||||
|
background-image: url(../phpgwapi/templates/default/images/nonav.png);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: left;
|
||||||
|
background-size: 32px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prefAppBox ul {
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
-->
|
||||||
|
</style>
|
||||||
|
<div id="prefIndex">
|
||||||
{rows}
|
{rows}
|
||||||
</table>
|
</div>
|
||||||
<!-- END list -->
|
<!-- END list -->
|
||||||
|
|
||||||
<!-- BEGIN app_row -->
|
<!-- BEGIN app_row -->
|
||||||
<tr height="60" class="row_off">
|
<div class="prefAppBox">
|
||||||
<td width="5%" align="center" valign="middle"><img src="{app_icon}" alt="[ {app_name} ]"> <a name="{a_name}"></a></td>
|
<h3 style="background-image: url({app_icon})">{app_name}</h3>
|
||||||
<td width="95%" valign="middle"><strong> {app_name}</strong></td>
|
<ul>
|
||||||
</tr>
|
|
||||||
<!-- END app_row -->
|
<!-- END app_row -->
|
||||||
|
|
||||||
<!-- BEGIN app_row_noicon -->
|
<!-- BEGIN app_row_noicon -->
|
||||||
<tr class="row_off">
|
<div class="prefAppBox">
|
||||||
<td colspan="2" width="95%" valign="middle"><strong> {app_name}</strong> <a name="{a_name}"></a></td>
|
<h3>{app_name}</h3>
|
||||||
</tr>
|
<ul>
|
||||||
<!-- END app_row_noicon -->
|
<!-- END app_row_noicon -->
|
||||||
|
|
||||||
<!-- BEGIN link_row -->
|
<!-- BEGIN link_row -->
|
||||||
<tr>
|
<li><a href="{pref_link}">{pref_text}</a></li>
|
||||||
<td colspan="2"> • <a href="{pref_link}">{pref_text}</a></td>
|
|
||||||
</tr>
|
|
||||||
<!-- END link_row -->
|
<!-- END link_row -->
|
||||||
|
|
||||||
<!-- BEGIN spacer_row -->
|
<!-- BEGIN spacer_row -->
|
||||||
<tr>
|
</ul>
|
||||||
<td colspan="2"> </td>
|
</div>
|
||||||
</tr>
|
|
||||||
<!-- END spacer_row -->
|
<!-- END spacer_row -->
|
||||||
|
@ -18,10 +18,11 @@ $GLOBALS['egw_info'] = array(
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
include('../header.inc.php');
|
include('../header.inc.php');
|
||||||
|
|
||||||
auth::check_password_age('preferences','index');
|
auth::check_password_age('preferences','index');
|
||||||
$GLOBALS['egw_info']['flags']['nonavbar']=false;
|
$GLOBALS['egw_info']['flags']['nonavbar']=false;
|
||||||
common::egw_header();
|
common::egw_header();
|
||||||
$pref_tpl =& CreateObject('phpgwapi.Template',EGW_APP_TPL);
|
$pref_tpl = new Template(EGW_APP_TPL);
|
||||||
$templates = Array(
|
$templates = Array(
|
||||||
'pref' => 'index.tpl'
|
'pref' => 'index.tpl'
|
||||||
);
|
);
|
||||||
@ -34,51 +35,6 @@ $pref_tpl->set_block('pref','app_row_noicon');
|
|||||||
$pref_tpl->set_block('pref','link_row');
|
$pref_tpl->set_block('pref','link_row');
|
||||||
$pref_tpl->set_block('pref','spacer_row');
|
$pref_tpl->set_block('pref','spacer_row');
|
||||||
|
|
||||||
if ($GLOBALS['egw']->acl->check('run',1,'admin'))
|
|
||||||
{
|
|
||||||
// This is where we will keep track of our position.
|
|
||||||
// Developers won't have to pass around a variable then
|
|
||||||
$session_data = $GLOBALS['egw']->session->appsession('session_data','preferences');
|
|
||||||
|
|
||||||
if (! is_array($session_data))
|
|
||||||
{
|
|
||||||
$session_data = array('type' => 'user');
|
|
||||||
$GLOBALS['egw']->session->appsession('session_data','preferences',$session_data);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! $_GET['type'])
|
|
||||||
{
|
|
||||||
$type = $session_data['type'];
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$type = $_GET['type'];
|
|
||||||
$session_data = array('type' => $type);
|
|
||||||
$GLOBALS['egw']->session->appsession('session_data','preferences',$session_data);
|
|
||||||
}
|
|
||||||
|
|
||||||
$tabs[] = array(
|
|
||||||
'label' => lang('Your preferences'),
|
|
||||||
'link' => egw::link('/preferences/index.php','type=user')
|
|
||||||
);
|
|
||||||
$tabs[] = array(
|
|
||||||
'label' => lang('Default preferences'),
|
|
||||||
'link' => egw::link('/preferences/index.php','type=default')
|
|
||||||
);
|
|
||||||
$tabs[] = array(
|
|
||||||
'label' => lang('Forced preferences'),
|
|
||||||
'link' => egw::link('/preferences/index.php','type=forced')
|
|
||||||
);
|
|
||||||
|
|
||||||
switch($type)
|
|
||||||
{
|
|
||||||
case 'user': $selected = 0; break;
|
|
||||||
case 'default': $selected = 1; break;
|
|
||||||
case 'forced': $selected = 2; break;
|
|
||||||
}
|
|
||||||
$pref_tpl->set_var('tabs',$GLOBALS['egw']->common->create_tabs($tabs,$selected));
|
|
||||||
}
|
|
||||||
|
|
||||||
// This func called by the includes to dump a row header
|
// This func called by the includes to dump a row header
|
||||||
function section_start($appname='',$icon='')
|
function section_start($appname='',$icon='')
|
||||||
{
|
{
|
||||||
@ -128,7 +84,7 @@ function display_section($appname,$file,$file2=False)
|
|||||||
{
|
{
|
||||||
$file = $file2;
|
$file = $file2;
|
||||||
}
|
}
|
||||||
section_start($appname,$GLOBALS['egw']->common->image($appname,Array('navbar',$appname)));
|
section_start($appname,common::image($appname,Array('navbar',$appname)));
|
||||||
|
|
||||||
foreach($file as $text => $url)
|
foreach($file as $text => $url)
|
||||||
{
|
{
|
||||||
|
@ -1,30 +1,63 @@
|
|||||||
<!-- BEGIN list -->
|
<!-- BEGIN list -->
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<style>
|
||||||
|
<!--
|
||||||
|
#prefIndex {
|
||||||
|
}
|
||||||
|
#divGenTime {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
.prefAppBox {
|
||||||
|
width: 225px;
|
||||||
|
min-height: 125px;
|
||||||
|
border: 2px ridge gray;
|
||||||
|
border-radius: 10px;
|
||||||
|
margin: 5px;
|
||||||
|
padding-left: 5px;
|
||||||
|
float: left;
|
||||||
|
box-shadow:8px 8px 8px #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.prefAppBox h3 {
|
||||||
|
height: 32px;
|
||||||
|
padding-left: 50px;
|
||||||
|
padding-top: 10px;
|
||||||
|
background-image: url(../phpgwapi/templates/default/images/nonav.png);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: left;
|
||||||
|
background-size: 32px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prefAppBox ul {
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
-->
|
||||||
|
</style>
|
||||||
|
<div id="prefIndex">
|
||||||
{rows}
|
{rows}
|
||||||
</table>
|
</div>
|
||||||
<!-- END list -->
|
<!-- END list -->
|
||||||
|
|
||||||
<!-- BEGIN app_row -->
|
<!-- BEGIN app_row -->
|
||||||
<tr height="60" bgcolor="{icon_backcolor}">
|
<div class="prefAppBox">
|
||||||
<td width="5%" align="center" valign="middle"><img src="{app_icon}" alt="[ {app_name} ]"> <a name="{a_name}"></a></td>
|
<h3 style="background-image: url({app_icon})">{app_name}</h3>
|
||||||
<td width="95%" valign="middle"><strong> {app_name}</strong></td>
|
<ul>
|
||||||
</tr>
|
|
||||||
<!-- END app_row -->
|
<!-- END app_row -->
|
||||||
|
|
||||||
<!-- BEGIN app_row_noicon -->
|
<!-- BEGIN app_row_noicon -->
|
||||||
<tr bgcolor="{icon_backcolor}">
|
<div class="prefAppBox">
|
||||||
<td colspan="2" width="95%" valign="middle"><strong> {app_name}</strong> <a name="{a_name}"></a></td>
|
<h3>{app_name}</h3>
|
||||||
</tr>
|
<ul>
|
||||||
<!-- END app_row_noicon -->
|
<!-- END app_row_noicon -->
|
||||||
|
|
||||||
<!-- BEGIN link_row -->
|
<!-- BEGIN link_row -->
|
||||||
<tr>
|
<li><a href="{pref_link}">{pref_text}</a></li>
|
||||||
<td colspan="2"> • <a href="{pref_link}">{pref_text}</a></td>
|
|
||||||
</tr>
|
|
||||||
<!-- END link_row -->
|
<!-- END link_row -->
|
||||||
|
|
||||||
<!-- BEGIN spacer_row -->
|
<!-- BEGIN spacer_row -->
|
||||||
<tr>
|
</ul>
|
||||||
<td colspan="2"> </td>
|
</div>
|
||||||
</tr>
|
|
||||||
<!-- END spacer_row -->
|
<!-- END spacer_row -->
|
||||||
|
Loading…
Reference in New Issue
Block a user