mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
Some more towards Ralf Beckers patches.
This commit is contained in:
parent
1ac3fcb9a7
commit
129a6d1f21
@ -81,10 +81,18 @@
|
||||
$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'
|
||||
'matrixtype',
|
||||
'date',
|
||||
'year',
|
||||
'month',
|
||||
'day'
|
||||
);
|
||||
|
||||
$base_hidden_vars = '<input type="hidden" name="from" value="'.MENUACTION.'">'."\n";
|
||||
@ -92,21 +100,9 @@
|
||||
{
|
||||
if($($var_list[$i]))
|
||||
{
|
||||
$base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$($var_list[$i]).'">'."\n";
|
||||
$base_hidden_vars .= ' <input type="hidden" name="'.$var_list[$i].'" value="'.$($var_list[$i]).'">'."\n";
|
||||
}
|
||||
}
|
||||
// if($cal_id != 0)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$cal_id.'">'."\n";
|
||||
// }
|
||||
// if($keywords)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="keywords" value="'.$keywords.'">'."\n";
|
||||
// }
|
||||
// if($matrixtype)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="matrixtype" value="'.$matrixtype.'">'."\n";
|
||||
// }
|
||||
$hidden_vars = '';
|
||||
if($participants)
|
||||
{
|
||||
@ -129,6 +125,28 @@
|
||||
$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;
|
||||
@ -228,6 +246,14 @@
|
||||
{
|
||||
$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(
|
||||
|
@ -81,10 +81,18 @@
|
||||
$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'
|
||||
'matrixtype',
|
||||
'date',
|
||||
'year',
|
||||
'month',
|
||||
'day'
|
||||
);
|
||||
|
||||
$base_hidden_vars = '<input type="hidden" name="from" value="'.MENUACTION.'">'."\n";
|
||||
@ -92,21 +100,9 @@
|
||||
{
|
||||
if($($var_list[$i]))
|
||||
{
|
||||
$base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$($var_list[$i]).'">'."\n";
|
||||
$base_hidden_vars .= ' <input type="hidden" name="'.$var_list[$i].'" value="'.$($var_list[$i]).'">'."\n";
|
||||
}
|
||||
}
|
||||
// if($cal_id != 0)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$cal_id.'">'."\n";
|
||||
// }
|
||||
// if($keywords)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="keywords" value="'.$keywords.'">'."\n";
|
||||
// }
|
||||
// if($matrixtype)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="matrixtype" value="'.$matrixtype.'">'."\n";
|
||||
// }
|
||||
$hidden_vars = '';
|
||||
if($participants)
|
||||
{
|
||||
@ -129,6 +125,28 @@
|
||||
$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;
|
||||
@ -228,6 +246,14 @@
|
||||
{
|
||||
$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(
|
||||
|
@ -81,10 +81,18 @@
|
||||
$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'
|
||||
'matrixtype',
|
||||
'date',
|
||||
'year',
|
||||
'month',
|
||||
'day'
|
||||
);
|
||||
|
||||
$base_hidden_vars = '<input type="hidden" name="from" value="'.MENUACTION.'">'."\n";
|
||||
@ -92,21 +100,9 @@
|
||||
{
|
||||
if($($var_list[$i]))
|
||||
{
|
||||
$base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$($var_list[$i]).'">'."\n";
|
||||
$base_hidden_vars .= ' <input type="hidden" name="'.$var_list[$i].'" value="'.$($var_list[$i]).'">'."\n";
|
||||
}
|
||||
}
|
||||
// if($cal_id != 0)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$cal_id.'">'."\n";
|
||||
// }
|
||||
// if($keywords)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="keywords" value="'.$keywords.'">'."\n";
|
||||
// }
|
||||
// if($matrixtype)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="matrixtype" value="'.$matrixtype.'">'."\n";
|
||||
// }
|
||||
$hidden_vars = '';
|
||||
if($participants)
|
||||
{
|
||||
@ -129,6 +125,28 @@
|
||||
$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;
|
||||
@ -228,6 +246,14 @@
|
||||
{
|
||||
$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(
|
||||
|
@ -81,10 +81,18 @@
|
||||
$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'
|
||||
'matrixtype',
|
||||
'date',
|
||||
'year',
|
||||
'month',
|
||||
'day'
|
||||
);
|
||||
|
||||
$base_hidden_vars = '<input type="hidden" name="from" value="'.MENUACTION.'">'."\n";
|
||||
@ -92,21 +100,9 @@
|
||||
{
|
||||
if($($var_list[$i]))
|
||||
{
|
||||
$base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$($var_list[$i]).'">'."\n";
|
||||
$base_hidden_vars .= ' <input type="hidden" name="'.$var_list[$i].'" value="'.$($var_list[$i]).'">'."\n";
|
||||
}
|
||||
}
|
||||
// if($cal_id != 0)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="cal_id" value="'.$cal_id.'">'."\n";
|
||||
// }
|
||||
// if($keywords)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="keywords" value="'.$keywords.'">'."\n";
|
||||
// }
|
||||
// if($matrixtype)
|
||||
// {
|
||||
// $base_hidden_vars .= ' <input type="hidden" name="matrixtype" value="'.$matrixtype.'">'."\n";
|
||||
// }
|
||||
$hidden_vars = '';
|
||||
if($participants)
|
||||
{
|
||||
@ -129,6 +125,28 @@
|
||||
$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;
|
||||
@ -228,6 +246,14 @@
|
||||
{
|
||||
$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(
|
||||
|
Loading…
Reference in New Issue
Block a user