mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
271 lines
10 KiB
PHP
Executable File
271 lines
10 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare *
|
|
* http://www.phpgroupware.org *
|
|
* -------------------------------------------- *
|
|
* 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. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
function add_col(&$tpl,$str)
|
|
{
|
|
$tpl->set_var('str',$str);
|
|
$tpl->parse('header_column','head_col',True);
|
|
}
|
|
|
|
function add_image_ahref($link,$image,$alt)
|
|
{
|
|
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" title="'.$alt.'" border="0"></a>';
|
|
}
|
|
|
|
$refer = explode('.',MENUACTION);
|
|
$referrer = $refer[2];
|
|
|
|
$templates = Array(
|
|
'head_tpl' => 'head.tpl',
|
|
'form_button_dropdown' => 'form_button_dropdown.tpl',
|
|
'form_button_script' => 'form_button_script.tpl'
|
|
);
|
|
$tpl->set_file($templates);
|
|
$tpl->set_block('head_tpl','head','head');
|
|
$tpl->set_block('head_tpl','head_table','head_table');
|
|
$tpl->set_block('head_tpl','head_col','head_col');
|
|
$tpl->set_block('form_button_script','form_button');
|
|
|
|
if(floor(phpversion()) >= 4)
|
|
{
|
|
$tpl->set_var('cols',8);
|
|
}
|
|
else
|
|
{
|
|
$tpl->set_var('cols',7);
|
|
}
|
|
|
|
$today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
|
|
|
|
$col_width = 12;
|
|
|
|
add_col($tpl,' <td width="2%"> </td>');
|
|
|
|
add_col($tpl,' <td width="2%">'.add_image_ahref($this->page('day','&date='.$today),'today',lang('Today')).'</td>');
|
|
|
|
add_col($tpl,' <td width="2%" align="left">'.add_image_ahref($this->page('week','&date='.$today),'week',lang('This week')).'</td>');
|
|
|
|
add_col($tpl,' <td width="2%" align="left">'.add_image_ahref($this->page('month','&date='.$today),'month',lang('This month')).'</td>');
|
|
|
|
add_col($tpl,' <td width="2%" align="left">'.add_image_ahref($this->page('year','&date='.$today),'year',lang('This Year')).'</td>');
|
|
|
|
if(floor(phpversion()) >= 4)
|
|
{
|
|
add_col($tpl,' <td width="2%" align="left">'.add_image_ahref($this->page('planner','&date='.$today),'planner',lang('Planner')).'</td>');
|
|
$col_width += 2;
|
|
}
|
|
|
|
add_col($tpl,' <td width="2%" align="left">'.add_image_ahref($this->page('matrixselect'),'view',lang('Daily Matrix View')).'</td>');
|
|
|
|
add_col($tpl,' <td width="'.(100 - $col_width).'%" align="left"'.(floor(phpversion()) < 4?' colspan="2"':'').'> </td>');
|
|
|
|
$tpl->parse('row','head_table',True);
|
|
|
|
$tpl->set_var('header_column','');
|
|
$tpl->set_var('cols',$cols);
|
|
|
|
if($referrer!='view')
|
|
{
|
|
$remainder = 72;
|
|
$cal_id = get_var('cal_id',Array('GET','DEFAULT'),0);
|
|
$keywords = get_var('keywords',Array('POST','DEFAULT'),'');
|
|
$matrixtype = get_var('matrixtype',Array('POST','DEFAULT'),'');
|
|
$participants = get_var('participants',Array('POST'));
|
|
$date = get_var('date',Array('GET','POST'));
|
|
$year = $this->bo->year;
|
|
$month = $this->bo-month;
|
|
$day = $this->bo->day;
|
|
$var_list = Array(
|
|
'cal_id',
|
|
'keywords',
|
|
'matrixtype',
|
|
'date',
|
|
'year',
|
|
'month',
|
|
'day'
|
|
);
|
|
|
|
$base_hidden_vars = '<input type="hidden" name="from" value="'.MENUACTION.'">'."\n";
|
|
for($i=0;$i<count($var_list);$i++)
|
|
{
|
|
if($($var_list[$i]))
|
|
{
|
|
$base_hidden_vars .= ' <input type="hidden" name="'.$var_list[$i].'" value="'.$($var_list[$i]).'">'."\n";
|
|
}
|
|
}
|
|
$hidden_vars = '';
|
|
if($participants)
|
|
{
|
|
for ($i=0;$i<count($participants);$i++)
|
|
{
|
|
$hidden_vars .= ' <input type="hidden" name="participants[]" value="'.$participants[$i].'">'."\n";
|
|
}
|
|
}
|
|
|
|
$var = Array(
|
|
'form_width' => '28',
|
|
'form_link' => $this->page($referrer),
|
|
'form_name' => 'cat_id',
|
|
'title' => lang('Category'),
|
|
'hidden_vars' => $base_hidden_vars.$hidden_vars,
|
|
'form_options' => '<option value="0">All</option>'.$this->cat->formated_list('select','all',$this->bo->cat_id,'True'),
|
|
'button_value' => lang('Go!')
|
|
);
|
|
$tpl->set_var($var);
|
|
$tpl->set_var('str',$tpl->fp('out','form_button_dropdown'));
|
|
$tpl->parse('header_column','head_col',True);
|
|
|
|
if(MENUACTION == 'calendar.uicalendar.planner')
|
|
{
|
|
$remainder -= 28;
|
|
print_debug('Sort By',$this->bo->sortby);
|
|
|
|
$form_options = '<option value="user"'.($this->bo->sortby=='user'?' selected':'').'>'.lang('User').'</option>'."\n";
|
|
$form_options .= ' <option value="category"'.((!isset($this->bo->sortby) || !$this->bo->sortby) || $this->bo->sortby=='category'?' selected':'').'>'.lang('Category').'</option>'."\n";
|
|
|
|
$var = Array(
|
|
'form_width' => '28',
|
|
'form_link' => $this->page($referrer),
|
|
'form_name' => 'sortby',
|
|
'title' => lang('Sort By'),
|
|
'hidden_vars' => $base_hidden_vars,
|
|
'form_options' => $form_options,
|
|
'button_value' => lang('Go!')
|
|
);
|
|
$tpl->set_var($var);
|
|
$tpl->set_var('str',$tpl->fp('out','form_button_dropdown'));
|
|
$tpl->parse('header_column','head_col',True);
|
|
}
|
|
|
|
if($this->bo->check_perms(PHPGW_ACL_PRIVATE))
|
|
{
|
|
$remainder -= 28;
|
|
$hidden_vars = '';
|
|
if($participants)
|
|
{
|
|
for ($i=0;$i<count($participants);$i++)
|
|
{
|
|
$hidden_vars .= ' <input type="hidden" name="participants[]" value="'.$participants[$i].'">'."\n";
|
|
}
|
|
}
|
|
$form_options = '<option value=" all "'.($this->bo->filter==' all '?' selected':'').'>'.lang('All').'</option>'."\n";
|
|
$form_options .= ' <option value=" private "'.((!isset($this->bo->filter) || !$this->bo->filter) || $this->bo->filter==' private '?' selected':'').'>'.lang('Private Only').'</option>'."\n";
|
|
|
|
$var = Array(
|
|
'form_width' => '28',
|
|
'form_link' => $this->page($referrer),
|
|
'form_name' => 'filter',
|
|
'title' => lang('Filter'),
|
|
'hidden_vars' => $base_hidden_vars.$hidden_vars,
|
|
'form_options' => $form_options,
|
|
'button_value' => lang('Go!')
|
|
);
|
|
$tpl->set_var($var);
|
|
$tpl->set_var('str',$tpl->fp('out','form_button_dropdown'));
|
|
$tpl->parse('header_column','head_col',True);
|
|
}
|
|
|
|
if((!isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) || !$GLOBALS['phpgw_info']['server']['deny_user_grants_access']) && count($this->bo->grants) > 0)
|
|
{
|
|
$form_options = '';
|
|
reset($this->bo->grants);
|
|
while(list($grantor,$temp_rights) = each($this->bo->grants))
|
|
{
|
|
$GLOBALS['phpgw']->accounts->get_account_name($grantor,$lid,$fname,$lname);
|
|
$drop_down[$lname.' '.$fname] = Array(
|
|
'grantor' => $grantor,
|
|
'value' => ($GLOBALS['phpgw']->accounts->get_type($grantor)=='g'?'g_':'').$grantor,
|
|
'name' => $GLOBALS['phpgw']->common->display_fullname($lid,$fname,$lname)
|
|
);
|
|
}
|
|
$memberships = $GLOBALS['phpgw']->accounts->membership($GLOBALS['phpgw_info']['user']['account_id']);
|
|
while($memberships != False && list($key,$group_info) = each($memberships))
|
|
{
|
|
$GLOBALS['phpgw']->accounts->get_account_name($group_info['account_id'],$lid,$fname,$lname);
|
|
$drop_down[$lname.' '.$fname] = Array(
|
|
'grantor' => $group_info['account_id'],
|
|
'value' => ($GLOBALS['phpgw']->accounts->get_type($group_info['account_id'])=='g'?'g_':'').$group_info['account_id'],
|
|
'name' => $GLOBALS['phpgw']->common->display_fullname($lid,$fname,$lname)
|
|
);
|
|
|
|
$account_perms = $GLOBALS['phpgw']->acl->get_ids_for_location($group_info['account_id'],PHPGW_ACL_READ,'calendar');
|
|
while($account_perms && list($key,$group_id) = each($account_perms))
|
|
{
|
|
$GLOBALS['phpgw']->accounts->get_account_name($group_id,$lid,$fname,$lname);
|
|
$drop_down[$lname.' '.$fname] = Array(
|
|
'grantor' => $group_id,
|
|
'value' => ($GLOBALS['phpgw']->accounts->get_type($group_id)=='g'?'g_':'').$group_id,
|
|
'name' => $GLOBALS['phpgw']->common->display_fullname($lid,$fname,$lname)
|
|
);
|
|
}
|
|
}
|
|
|
|
@reset($drop_down);
|
|
@ksort($drop_down);
|
|
while(list($key,$grant) = each($drop_down))
|
|
{
|
|
$form_options .= ' <option value="'.$grant['value'].'"'.($grant['grantor']==$this->bo->owner?' selected':'').'>'.$grant['name'].'</option>'."\n";
|
|
}
|
|
reset($this->bo->grants);
|
|
|
|
$var = Array(
|
|
'form_width' => $remainder,
|
|
'form_link' => $this->page($referrer),
|
|
'form_name' => 'owner',
|
|
'title' => lang('User'),
|
|
'hidden_vars' => $base_hidden_vars,
|
|
'form_options' => $form_options,
|
|
'button_value' => lang('Go!')
|
|
);
|
|
$tpl->set_var($var);
|
|
$tpl->set_var('str',$tpl->fp('out','form_button_dropdown'));
|
|
$tpl->parse('header_column','head_col',True);
|
|
}
|
|
}
|
|
|
|
$hidden_vars = ' <input type="hidden" name="from" value="'.MENUACTION.'">'."\n";
|
|
$date = get_var('date',Array('GET'));
|
|
if($date)
|
|
{
|
|
$hidden_vars .= ' <input type="hidden" name="date" value="'.$date.'">'."\n";
|
|
}
|
|
$hidden_vars .= ' <input type="hidden" name="month" value="'.$this->bo->month.'">'."\n";
|
|
$hidden_vars .= ' <input type="hidden" name="day" value="'.$this->bo->day.'">'."\n";
|
|
$hidden_vars .= ' <input type="hidden" name="year" value="'.$this->bo->year.'">'."\n";
|
|
if(isset($this->bo->filter) && $this->bo->filter)
|
|
{
|
|
$hidden_vars .= ' <input type="hidden" name="filter" value="'.$this->bo->filter.'">'."\n";
|
|
}
|
|
if(isset($this->bo->sortby) && $this->bo->sortby)
|
|
{
|
|
$hidden_vars .= ' <input type="hidden" name="sortby" value="'.$this->bo->sortby.'">'."\n";
|
|
}
|
|
if(isset($this->bo->num_months) && $this->bo->num_months)
|
|
{
|
|
$hidden_vars .= ' <input type="hidden" name="num_months" value="'.$this->bo->num_months.'">'."\n";
|
|
}
|
|
$hidden_vars .= ' <input name="keywords"'.($keywords?' value="'.$keywords.'"':'').'>';
|
|
|
|
$var = Array(
|
|
'action_url_button' => $this->page('search'),
|
|
'action_text_button' => lang('Search'),
|
|
'action_confirm_button' => '',
|
|
'action_extra_field' => $hidden_vars
|
|
);
|
|
$tpl->set_var($var);
|
|
$button = $tpl->fp('out','form_button');
|
|
$tpl->set_var('str','<td align="right" valign="bottom">'.$button.'</td>');
|
|
$tpl->parse('header_column','head_col',True);
|
|
$tpl->parse('row','head_table',True);
|
|
?>
|