egroupware/phpgwapi/inc/class.nextmatchs.inc.php

1013 lines
27 KiB
PHP
Raw Normal View History

<?php
/**************************************************************************\
* phpGroupWare API - next *
* This file written by Joseph Engo <jengo@phpgroupware.org> *
* Handles limiting number of rows displayed *
* Copyright (C) 2000, 2001 Joseph Engo *
* -------------------------------------------------------------------------*
* This library is part of the phpGroupWare API *
* http://www.phpgroupware.org/api *
* ------------------------------------------------------------------------ *
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 2.1 of the License, *
* or any later version. *
* This library is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU Lesser General Public License for more details. *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
\**************************************************************************/
/* $Id$ */
/*!
@class nextmatchs
@abstract
*/
2001-09-28 23:27:40 +02:00
class nextmatchs
{
2001-09-28 23:27:40 +02:00
var $maxmatches;
var $action;
var $template;
function nextmatchs($website=False)
2001-09-28 23:27:40 +02:00
{
if(!$website)
2002-04-28 00:32:18 +02:00
{
$this->template = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
$this->template->set_file(array(
'_nextmatchs' => 'nextmatchs.tpl'
));
$this->template->set_block('_nextmatchs','nextmatchs');
$this->template->set_block('_nextmatchs','filter');
$this->template->set_block('_nextmatchs','form');
$this->template->set_block('_nextmatchs','icon');
$this->template->set_block('_nextmatchs','link');
$this->template->set_block('_nextmatchs','search');
$this->template->set_block('_nextmatchs','cats');
$this->template->set_block('_nextmatchs','search_filter');
$this->template->set_block('_nextmatchs','cats_search_filter');
}
2001-09-28 23:27:40 +02:00
2001-12-25 03:58:49 +01:00
if(isset($GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs']) &&
intval($GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs']) > 0)
2001-09-28 23:27:40 +02:00
{
2001-11-16 05:10:09 +01:00
$this->maxmatches = intval($GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs']);
2001-09-28 23:27:40 +02:00
}
else
{
$this->maxmatches = 15;
}
if(MENUACTION)
2001-09-28 23:27:40 +02:00
{
$this->action = MENUACTION;
2001-09-28 23:27:40 +02:00
}
}
/*!
@function get_var
@abstract Fetch commonly-used GP(C) vars
@discussion This calls get_var() from functions.inc.php
*/
function get_var()
{
return array(
get_var('filter',array('GLOBAL','POST','GET')),
get_var('qfield',array('GLOBAL','POST','GET')),
get_var('start',array('GLOBAL','POST','GET')),
get_var('order',array('GLOBAL','POST','GET')),
get_var('sort',array('GLOBAL','POST','GET'))
);
}
2001-09-28 23:27:40 +02:00
/*!
@function set_icon
@abstract ?
@param $align ?
@param $img_src ?
@param $label ?
*/
function set_icon($align,$img,$label)
{
2001-11-16 05:10:09 +01:00
switch(strtolower($GLOBALS['phpgw_info']['user']['account_lid']))
2001-09-28 23:27:40 +02:00
{
case 'ceb':
2001-12-25 03:58:49 +01:00
$border = 2;
break;
2001-09-28 23:27:40 +02:00
default:
2001-12-25 03:58:49 +01:00
$border = 0;
break;
2001-09-28 23:27:40 +02:00
}
2001-09-28 23:27:40 +02:00
$var = array(
2001-12-25 03:58:49 +01:00
'align' => $align,
'img' => $GLOBALS['phpgw']->common->image('phpgwapi',$img),
'label' => lang($label),
'border' => $border
2001-09-28 23:27:40 +02:00
);
$this->template->set_var($var);
return $this->template->fp('out','link');
}
2001-09-28 23:27:40 +02:00
/*!
@function page
@abstract ?
*/
function page($extravars='')
{
2001-09-28 23:27:40 +02:00
if($extravars && is_string($extravars) && substr($extravars,0,1)!='&')
{
2001-09-28 23:27:40 +02:00
$extras = '&'.$extravars;
}
2001-09-28 23:27:40 +02:00
elseif($extravars && is_array($extravars))
{
2001-09-28 23:27:40 +02:00
@reset($extravars);
while(list($var,$value) = each($extravars))
2001-08-08 09:44:27 +02:00
{
if($var != 'menuaction')
{
$t_extras[] = $var.'='.$value;
}
}
2001-09-28 23:27:40 +02:00
$extras = implode($t_extras,'&');
}
2001-09-28 23:27:40 +02:00
2001-11-16 05:10:09 +01:00
return $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->action.$extras);
}
2001-09-28 23:27:40 +02:00
/*!
@function set_link
@abstract ?
@param $img_src ?
@param $label ?
@param $link ?
@param $extravars ?
*/
function set_link($align,$img,$link,$alt,$extravars)
{
2001-09-28 23:27:40 +02:00
$hidden = '';
while(list($var,$value) = each($extravars))
2001-03-29 19:13:35 +02:00
{
2001-11-16 05:10:09 +01:00
if((is_int($value) && $value == 0) || $value)
{
2001-11-16 05:10:09 +01:00
// if(is_int($value))
// {
// $param = intval($value);
// }
// else
// {
2001-09-28 23:27:40 +02:00
$param = '"'.$value.'"';
2001-11-16 05:10:09 +01:00
// }
2001-09-28 23:27:40 +02:00
$hidden .= ' <input type="hidden" name="'.$var.'" value='.$param.'>'."\n";
}
2001-03-29 19:13:35 +02:00
}
2001-09-28 23:27:40 +02:00
$border = 0;
$var = Array(
2001-12-25 03:58:49 +01:00
'align' => $align,
'action' => ($this->action?$this->page():$GLOBALS['phpgw']->link($link)),
'form_name' => $img,
'hidden' => substr($hidden,0,strlen($hidden)-1),
'img' => $GLOBALS['phpgw']->common->image('phpgwapi',$img),
'label' => $alt,
'border' => $border,
'start' => $extravars['start']
2001-09-28 23:27:40 +02:00
);
$this->template->set_var($var);
return $this->template->fp('out','form');
}
/*!
@function show_tpl
@abstract ?
@param $sn ?
@param $start ?
@param $total ?
@param $extra ?
@param $twidth ?
@param $bgtheme ?
@param $search_obj ?
@param $filter_obj ?
@param $showsearch ?
*/
function show_tpl($sn,$localstart,$total,$extra,$twidth,$bgtheme,$search_obj=0,$filter_obj=1,$showsearch=1,$yours=0,$cat_id=0,$cat_field='fcat_id')
2001-09-28 23:27:40 +02:00
{
list($filter,$qfield,$start,$order,$sort) = $this->get_var();
2001-09-28 23:27:40 +02:00
$start = $localstart;
2001-12-25 03:58:49 +01:00
$cats = CreateObject('phpgwapi.categories');
2001-09-28 23:27:40 +02:00
$extravars = Array();
$extravars = $this->split_extras($extravars,$extra);
$var = array(
2001-12-25 03:58:49 +01:00
'form_action' => ($this->action?$this->page($extra):$GLOBALS['phpgw']->link($sn, $extra)),
'lang_category' => lang('Category'),
'lang_all' => lang('All'),
'lang_select' => lang('Select'),
'cat_field' => $cat_field,
2002-10-15 23:41:26 +02:00
'categories' => $cats->formatted_list('select','all',$cat_id,'True'),
2001-12-25 03:58:49 +01:00
'filter_value' => $filter,
'qfield' => $qfield,
'start_value' => $start,
'order_value' => $order,
'sort_value' => $sort,
'query_value' => urlencode(stripslashes($GLOBALS['query'])),
'table_width' => $twidth,
'th_bg' => $GLOBALS['phpgw_info']['theme']['th_bg'],
'left' => $this->left($sn,$start,$total,$extra),
'search' => ($showsearch?$this->search($search_obj):''),
'filter' => ($filter_obj?$this->filter($filter_obj,$yours):''),
'right' => $this->right($sn,$start,$total,$extra)
2001-09-28 23:27:40 +02:00
);
$this->template->set_var($var);
2001-12-25 03:58:49 +01:00
$this->template->parse('cats','cats');
2001-09-28 23:27:40 +02:00
$this->template->parse('cats_search_filter_data','cats_search_filter');
return $this->template->fp('out','nextmatchs');
}
function split_extras($extravars,$extradata)
{
if($extradata)
{
2001-09-28 23:27:40 +02:00
if(is_string($extradata))
{
2001-09-28 23:27:40 +02:00
$extraparams = explode('&',$extradata);
$c_extraparams = count($extraparams) + 1;
for($i=0;$i<$c_extraparams;$i++)
{
2001-09-28 23:27:40 +02:00
if($extraparams[$i])
{
list($var,$value) = explode('=',$extraparams[$i]);
if($var != 'menuaction')
{
$extravars[$var] = $value;
}
else
{
$this->action = $value;
}
}
}
2001-09-28 23:27:40 +02:00
}
elseif(is_array($extradata))
{
while(list($var,$value) = each($extradata))
{
2001-09-28 23:27:40 +02:00
if($var != 'menuaction')
{
$extravars[$var] = $value;
}
else
{
$this->action = $value;
}
}
}
}
2001-09-28 23:27:40 +02:00
return $extravars;
}
2001-09-28 23:27:40 +02:00
function extras_to_string($extra)
{
2001-09-28 23:27:40 +02:00
if(is_array($extra))
2001-08-08 09:44:27 +02:00
{
2001-09-28 23:27:40 +02:00
@reset($extra);
while(list($var,$value) = each($extra))
{
$t_extras[] = $var . '=' . $value;
}
$extra_s = '&' . implode('&',$t_extras);
2001-08-08 09:44:27 +02:00
}
2001-09-28 23:27:40 +02:00
return $extra_s;
}
2001-09-28 23:27:40 +02:00
/*!
@function left
@abstract ?
@param $scriptname ?
@param $start ?
@param $total ?
@param $extradate ?
*/
function left($scriptname,$start,$total,$extradata = '')
{
list($filter,$qfield,$NULL,$order,$sort) = $this->get_var();
2001-09-28 23:27:40 +02:00
$extravars = Array(
2001-12-25 03:58:49 +01:00
'order' => $order,
'filter' => $filter,
'q_field' => $qfield,
'sort' => $sort,
'query' => urlencode(stripslashes($GLOBALS['query']))
2001-09-28 23:27:40 +02:00
);
2001-09-28 23:27:40 +02:00
$extravars = $this->split_extras($extravars,$extradata);
$ret_str = '';
if(($start != 0) &&
2001-12-25 03:58:49 +01:00
($start > $this->maxmatches))
{
$extravars['start'] = 0;
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_link('left','first.png',$scriptname,lang('First page'),$extravars);
}
else
{
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_icon('left','first-grey.png',lang('First page'));
}
if($start != 0)
2001-09-28 23:27:40 +02:00
{
// Changing the sorting order screaws up the starting number
if(($start - $this->maxmatches) < 0)
2001-09-28 23:27:40 +02:00
{
$extravars['start'] = 0;
}
else
{
$extravars['start'] = ($start - $this->maxmatches);
}
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_link('left','left.png',$scriptname,lang('Previous page'),$extravars);
2001-09-28 23:27:40 +02:00
}
else
{
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_icon('left','left-grey.png',lang('Previous page'));
2001-09-28 23:27:40 +02:00
}
return $ret_str;
} /* left() */
/*!
@function right
@abstract ?
@param $scriptname ?
@param $start ?
@param $total ?
@param $extradate ?
*/
2001-09-28 23:27:40 +02:00
function right($scriptname,$start,$total,$extradata = '')
2001-08-08 09:44:27 +02:00
{
list($filter,$qfield,$NULL,$order,$sort) = $this->get_var();
2001-09-28 23:27:40 +02:00
$extravars = Array(
2001-12-25 03:58:49 +01:00
'order' => $order,
'filter' => $filter,
'q_field' => $qfield,
'sort' => $sort,
'query' => urlencode(stripslashes($GLOBALS['query']))
2001-09-28 23:27:40 +02:00
);
2001-08-08 09:44:27 +02:00
2001-09-28 23:27:40 +02:00
$extravars = $this->split_extras($extravars,$extradata);
2001-08-08 09:44:27 +02:00
2001-09-28 23:27:40 +02:00
$ret_str = '';
if(($total > $this->maxmatches) &&
2001-12-25 03:58:49 +01:00
($total > $start + $this->maxmatches))
2001-09-28 23:27:40 +02:00
{
$extravars['start'] = ($start + $this->maxmatches);
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_link('right','right.png',$scriptname,lang('Next page'),$extravars);
2001-09-28 23:27:40 +02:00
}
else
{
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_icon('right','right-grey.png',lang('Next page'));
2001-09-28 23:27:40 +02:00
}
if(($start != $total - $this->maxmatches) &&
2001-12-25 03:58:49 +01:00
(($total - $this->maxmatches) > ($start + $this->maxmatches)))
2001-09-28 23:27:40 +02:00
{
$extravars['start'] = ($total - $this->maxmatches);
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_link('right','last.png',$scriptname,lang('Last page'),$extravars);
2001-09-28 23:27:40 +02:00
}
else
{
2002-12-05 01:27:37 +01:00
$ret_str .= $this->set_icon('right','last-grey.png',lang('Last page'));
2001-09-28 23:27:40 +02:00
}
return $ret_str;
} /* right() */
2001-09-28 23:27:40 +02:00
/*!
@function search_filter
@abstract ?
@param $search_obj default 0
*/
function search_filter($search_obj=0,$filter_obj=1,$yours=0,$link='',$extra='')
{
list($filter,$qfield,$start,$order,$sort) = $this->get_var();
2001-09-28 23:27:40 +02:00
$start = $localstart;
$var = array(
2001-12-25 03:58:49 +01:00
'form_action' => ($this->action?$this->page($extra):$GLOBALS['phpgw']->link($sn, $extra)),
'filter_value' => $filter,
'qfield' => $qfield,
'start_value' => $start,
'order_value' => $order,
'sort_value' => $sort,
'query_value' => urlencode(stripslashes($GLOBALS['query'])),
'th_bg' => $GLOBALS['phpgw_info']['theme']['th_bg'],
'search' => $this->search($search_obj),
'filter' => ($filter_obj?$this->filter($filter_obj,$yours):'')
2001-09-28 23:27:40 +02:00
);
$this->template->set_var($var);
return $this->template->fp('out','search_filter');
}
/*!
@function cats_search_filter
@abstract ?
@param $search_obj default 0
*/
function cats_search_filter($search_obj=0,$filter_obj=1,$yours=0,$cat_id=0,$cat_field='fcat_id',$link='',$extra='')
{
list($filter,$qfield,$start,$order,$sort) = $this->get_var();
2001-09-28 23:27:40 +02:00
$start = $localstart;
2001-12-25 03:58:49 +01:00
$cats = CreateObject('phpgwapi.categories');
2001-09-28 23:27:40 +02:00
$var = array(
2001-12-25 03:58:49 +01:00
'form_action' => ($this->action?$this->page($extra):$GLOBALS['phpgw']->link($sn, $extra)),
'lang_category' => lang('Category'),
'lang_all' => lang('All'),
'lang_select' => lang('Select'),
'cat_field' => $cat_field,
2002-10-15 23:41:26 +02:00
'categories' => $cats->formatted_list('select','all',$cat_id,'True'),
2001-12-25 03:58:49 +01:00
'filter_value' => $filter,
'qfield' => $qfield,
'start_value' => $start,
'order_value' => $order,
'sort_value' => $sort,
'query_value' => urlencode(stripslashes($GLOBALS['query'])),
'th_bg' => $GLOBALS['phpgw_info']['theme']['th_bg'],
'search' => $this->search($search_obj),
'filter' => ($filter_obj?$this->filter($filter_obj,$yours):'')
2001-09-28 23:27:40 +02:00
);
$this->template->set_var($var);
return $this->template->fp('out','cats_search_filter');
}
/*!
@function search
@abstract ?
@param $search_obj default 0
*/
function search($search_obj=0)
{
if(is_array($search_obj))
{
$params = $search_obj;
$_query = stripslashes($params['query']);
$search_obj = $params['search_obj'];
}
else
{
$_query = stripslashes($GLOBALS['query']);
}
// If the place a '"' in there search, it will mess everything up
2001-09-28 23:27:40 +02:00
// Our only option is to remove it
if(ereg('"',$_query))
2001-09-28 23:27:40 +02:00
{
$_query = ereg_replace('"','',$_query);
}
$var = array
(
2001-12-25 03:58:49 +01:00
'query_value' => stripslashes($_query),
'lang_search' => lang('Search')
2001-09-28 23:27:40 +02:00
);
if (is_array($search_obj))
{
$var['searchby'] = $this->searchby($search_obj);
}
2001-09-28 23:27:40 +02:00
$this->template->set_var($var);
return $this->template->fp('out','search');
} /* search() */
/*!
@function filterobj
@abstract ?
@param $filtertable
@param $indxfieldname ?
@param $strfieldname ?
*/
function filterobj($filtertable, $idxfieldname, $strfieldname)
2001-08-08 09:44:27 +02:00
{
2001-09-28 23:27:40 +02:00
$filter_obj = array(array('none','show all'));
$index = 0;
2001-03-25 00:19:39 +01:00
2001-12-25 03:58:49 +01:00
$GLOBALS['phpgw']->db->query("SELECT $idxfieldname, $strfieldname FROM $filtertable",__LINE__,__FILE__);
2001-11-16 05:10:09 +01:00
while($GLOBALS['phpgw']->db->next_record())
2001-09-28 23:27:40 +02:00
{
$index++;
2001-11-16 05:10:09 +01:00
$filter_obj[$index][0] = $GLOBALS['phpgw']->db->f($idxfieldname);
$filter_obj[$index][1] = $GLOBALS['phpgw']->db->f($strfieldname);
2001-09-28 23:27:40 +02:00
}
return $filter_obj;
} /* filterobj() */
2001-09-28 23:27:40 +02:00
/*!
@function searchby
@abstract ?
@param $search_obj ?
*/
function searchby($search_obj)
2001-08-08 09:44:27 +02:00
{
$qfield = get_var('qfield',Array('GET','POST'));
2001-09-28 23:27:40 +02:00
$str = '';
if(is_array($search_obj))
{
2001-09-28 23:27:40 +02:00
$indexlimit = count($search_obj);
for($index=0; $index<$indexlimit; $index++)
{
if($qfield == '')
2001-09-28 23:27:40 +02:00
{
$qfield = $search_obj[$index][0];
}
$str .= '<option value="' . $search_obj[$index][0] . '"' . ($qfield == $search_obj[$index][0]?' selected':'') . '>' . lang($search_obj[$index][1]) . '</option>';
}
2001-09-28 23:27:40 +02:00
$str = '<select name="qfield">' . $str . '</select>' . "\n";
}
2001-09-28 23:27:40 +02:00
return $str;
} /* searchby() */
2001-09-28 23:27:40 +02:00
/*!
@function filter
@abstract ?
@param $filter_obj
*/
function filter($filter_obj,$yours=0)
2001-08-08 09:44:27 +02:00
{
if(is_array($yours))
{
$params = $yours;
$filter = $params['filter'];
$yours = $params['yours'];
}
else
{
$filter = get_var('filter',Array('GET','POST'));
}
if(is_long($filter_obj))
2001-09-28 23:27:40 +02:00
{
if($filter_obj == 1)
2001-08-08 09:44:27 +02:00
{
2001-11-16 05:10:09 +01:00
// $user_groups = $GLOBALS['phpgw']->accounts->membership($GLOBALS['phpgw_info']['user']['account_id']);
2001-09-28 23:27:40 +02:00
$indexlimit = count($user_groups);
if($yours)
2001-09-28 23:27:40 +02:00
{
$filter_obj = array(
2002-11-30 03:22:23 +01:00
array('none',lang('show all')),
array('yours',lang('only yours')),
array('private',lang('only private'))
2001-09-28 23:27:40 +02:00
);
}
else
{
$filter_obj = array(
2002-11-30 03:22:23 +01:00
array('none',lang('show all')),
array('private',lang('only private'))
2001-09-28 23:27:40 +02:00
);
}
for($index=0; $index<$indexlimit; $index++)
2001-09-28 23:27:40 +02:00
{
$filter_obj[2+$index][0] = $user_groups[$index]['account_id'];
$filter_obj[2+$index][1] = 'Group - ' . $user_groups[$index]['account_name'];
}
2001-08-08 09:44:27 +02:00
}
2001-09-28 23:27:40 +02:00
}
if(is_array($filter_obj))
2001-09-28 23:27:40 +02:00
{
$str = '';
$indexlimit = count($filter_obj);
for($index=0; $index<$indexlimit; $index++)
2001-08-08 09:44:27 +02:00
{
if($filter == '')
2001-09-28 23:27:40 +02:00
{
$filter = $filter_obj[$index][0];
}
$str .= ' <option value="' . $filter_obj[$index][0] . '"'.($filter == $filter_obj[$index][0]?' selected':'') . '>' . $filter_obj[$index][1] . '</option>'."\n";
}
2001-09-28 23:27:40 +02:00
$str = ' <select name="filter" onChange="this.form.submit()">'."\n" . $str . ' </select>';
$this->template->set_var('select',$str);
$this->template->set_var('lang_filter',lang('Filter'));
}
2001-05-21 11:05:21 +02:00
2001-09-28 23:27:40 +02:00
return $this->template->fp('out','filter');
} /* filter() */
/* replacement for function filter */
function new_filter($data=0)
{
if(is_array($data))
{
$filter = (isset($data['filter'])?$data['filter']:'');
$format = (isset($data['format'])?$data['format']:'all');
}
else
{
//$filter = get_var('filter',Array('GET','POST'));
$filter = $data;
$format = 'all';
}
switch($format)
{
case 'yours':
$filter_obj = array
(
array('none',lang('show all')),
array('yours',lang('only yours'))
);
break;
case 'private':
$filter_obj = array
(
array('none',lang('show all')),
array('private',lang('only private'))
);
break;
default:
$filter_obj = array
(
array('none',lang('show all')),
array('yours',lang('only yours')),
array('private',lang('only private'))
);
}
$str = '';
$indexlimit = count($filter_obj);
for($index=0; $index<$indexlimit; $index++)
{
if($filter == '')
{
$filter = $filter_obj[$index][0];
}
$str .= ' <option value="' . $filter_obj[$index][0] . '"'.($filter == $filter_obj[$index][0]?' selected':'') . '>' . $filter_obj[$index][1] . '</option>'."\n";
}
$str = ' <select name="filter" onChange="this.form.submit()">'."\n" . $str . ' </select>';
$this->template->set_var('select',$str);
$this->template->set_var('lang_filter',lang('Filter'));
return $this->template->fp('out','filter');
} /* filter() */
2002-09-26 05:58:21 +02:00
function xslt_filter($data=0)
{
if(is_array($data))
{
$filter = (isset($data['filter'])?$data['filter']:'');
$format = (isset($data['format'])?$data['format']:'all');
2002-09-26 05:58:21 +02:00
}
else
{
//$filter = get_var('filter',Array('GET','POST'));
$filter = $data;
$format = 'all';
2002-09-26 05:58:21 +02:00
}
switch($format)
{
case 'yours':
$filter_obj = array
(
array('key' => 'none','lang' => lang('show all')),
array('key' => 'yours','lang' => lang('only yours'))
);
break;
case 'private':
$filter_obj = array
(
array('key' => 'none','lang' => lang('show all')),
array('key' => 'private','lang' => lang('only private'))
);
break;
default:
$filter_obj = array
(
array('key' => 'none','lang' => lang('show all')),
array('key' => 'yours','lang' => lang('only yours')),
array('key' => 'private','lang' => lang('only private'))
);
}
2002-09-26 05:58:21 +02:00
for($i=0;$i<count($filter_obj);$i++)
2002-09-26 05:58:21 +02:00
{
if($filter_obj[$i]['key'] == $filter)
2002-09-26 05:58:21 +02:00
{
$filter_obj[$i]['selected'] = 'yes';
2002-09-26 05:58:21 +02:00
}
}
return $filter_obj;
}
2001-09-28 23:27:40 +02:00
/*!
@function alternate_row_color
@abstract alternate row colour
@param $currentcolor default ''
*/
2002-09-28 01:49:59 +02:00
/*function alternate_row_color($currentcolor = '')
2001-08-08 09:44:27 +02:00
{
if(!$currentcolor)
2001-09-28 23:27:40 +02:00
{
$currentcolor = $GLOBALS['tr_color'];
2001-09-28 23:27:40 +02:00
}
if($currentcolor == $GLOBALS['phpgw_info']['theme']['row_on'])
2001-08-08 09:44:27 +02:00
{
2002-04-18 01:41:55 +02:00
$GLOBALS['tr_color'] = $GLOBALS['phpgw_info']['theme']['row_off'];
2001-09-28 23:27:40 +02:00
}
else
{
2002-04-18 01:41:55 +02:00
$GLOBALS['tr_color'] = $GLOBALS['phpgw_info']['theme']['row_on'];
}
2001-05-21 11:05:21 +02:00
2002-09-28 01:49:59 +02:00
return $GLOBALS['tr_color'];
}*/
function alternate_row_color($currentcolor = '')
{
if(!$currentcolor)
{
$currentcolor = $GLOBALS['tr_color'];
}
if($currentcolor == 'row_on')
{
$GLOBALS['tr_color'] = 'row_off';
}
else
{
$GLOBALS['tr_color'] = 'row_on';
}
2002-04-18 01:41:55 +02:00
return $GLOBALS['tr_color'];
2001-08-08 09:44:27 +02:00
}
2001-09-28 23:27:40 +02:00
// If you are using the common bgcolor="{tr_color}"
// This function is a little cleanier approch
/*!
@function template_alternate_row_color
@abstract ?
@param $tpl ?
*/
function template_alternate_row_color(&$tpl)
2001-08-08 09:44:27 +02:00
{
$this->template->set_var('tr_color',$color = $this->alternate_row_color());
if (is_object($tpl))
{
$tpl->set_var('tr_color',$color); // set the supplied template too
}
2001-08-08 09:44:27 +02:00
}
2001-09-28 23:27:40 +02:00
/*!
@function show_sort_order
@abstract ?
@param $sort ?
@param $var ?
@param $order ?
@param $program ?
@param $text ?
@param $extra default ''
@param $build_an_href default True
2001-09-28 23:27:40 +02:00
*/
2002-12-05 01:27:37 +01:00
function show_sort_order($sort, $var = '', $order = '', $program = '', $text = '', $extra='', $build_an_href = True)
2001-08-08 09:44:27 +02:00
{
2002-12-05 01:27:37 +01:00
if(is_array($sort))
{
$temp_format = $sort['sort'];
$var = (isset($sort['var'])?$sort['var']:'');
$order = (isset($sort['order'])?$sort['order']:'');
$program = (isset($sort['program'])?$sort['program']:'/index.php');
$text = (isset($sort['text'])?$sort['text']:'xslt');
$extra = (isset($sort['extra'])?$sort['extra']:'');
$build_an_href = (isset($sort['build_an_href'])?$sort['build_an_href']:True);
settype($sort,'string');
$sort = $temp_format;
unset($temp_format);
}
list($filter,$qfield,$start,$NULL1,$NULL) = $this->get_var();
2001-08-08 09:44:27 +02:00
if(($order == $var) && ($sort == 'ASC'))
2001-09-28 23:27:40 +02:00
{
$sort = 'DESC';
}
elseif(($order == $var) && ($sort == 'DESC'))
2001-09-28 23:27:40 +02:00
{
$sort = 'ASC';
}
else
{
$sort = 'ASC';
}
if(is_array($extra))
2001-09-28 23:27:40 +02:00
{
$extra = $this->extras_to_string($extra);
}
2001-11-16 05:10:09 +01:00
$extravar = 'order='.$var.'&sort='.$sort.'&filter='.$filter.'&qfield='.$qfield.'&start='.$start.'&query='.urlencode(stripslashes($GLOBALS['query'])).$extra;
2001-11-16 05:10:09 +01:00
$link = ($this->action?$this->page($extravar):$GLOBALS['phpgw']->link($program,$extravar));
2002-12-05 01:27:37 +01:00
if ($text == 'xslt')
{
return $link;
}
elseif($build_an_href)
2001-09-28 23:27:40 +02:00
{
return '<a href="' . $link . '">' . $text . '</a>';
}
else
{
return $link;
}
}
function show_hits($total_records='',$start=0)
{
if($total_records > $this->maxmatches)
{
if($start + $this->maxmatches > $total_records)
{
$end = $total_records;
}
else
{
$end = $start + $this->maxmatches;
}
2003-04-23 00:30:38 +02:00
return lang('showing %1 - %2 of %3',($start + 1),$end,$total_records);
}
else
{
2003-04-23 00:30:38 +02:00
return lang('showing %1',$total_records);
}
}
2001-09-28 23:27:40 +02:00
/*!
@function show_sort_order_imap
@abstract ?
@param $old_sort : the current sort value
@param $new_sort : the sort value you want if you click on this
@param $default_order : users preference for ordering list items (force this when a new [different] sorting is requested)
2001-09-28 23:27:40 +02:00
@param $order : the current order (will be flipped if old_sort = new_sort)
@param $program : script file name
@param $text : Text the link will show
@param $extra : any extra stuff you want to pass, url style
*/
function show_sort_order_imap($old_sort,$new_sort,$default_order,$order,$program,$text,$extra='')
{
if(is_array($extra))
{
2001-09-28 23:27:40 +02:00
$extra = $this->extras_to_string($extra);
}
if($old_sort == $new_sort)
{
2001-09-28 23:27:40 +02:00
// alternate order, like on outkrook, click on present sorting reverses order
if((int)$order == 1)
2001-09-28 23:27:40 +02:00
{
$our_order = 0;
}
elseif((int)$order == 0)
2001-09-28 23:27:40 +02:00
{
$our_order = 1;
}
else
{
// we should never get here
$our_order = 1;
}
}
else
{
//user has selected a new sort scheme, reset the order to users default
2001-09-28 23:27:40 +02:00
$our_order = $default_order;
}
2001-09-28 23:27:40 +02:00
$extravar = 'order='.$our_order.'&sort='.$new_sort.$extra;
2001-08-08 09:44:27 +02:00
2001-11-16 05:10:09 +01:00
$link = ($this->action?$this->page($extravar):$GLOBALS['phpgw']->link($program,$extravar));
2001-09-28 23:27:40 +02:00
return '<a href="' .$link .'">' .$text .'</a>';
}
/*!
@function nav_left_right_imap
@abstract same code as left and right (as of Dec 07, 2001) except all combined into one function
@param feed_vars : array with these elements: <br>
start
total
cmd_prefix
cmd_suffix
@return array, combination of functions left and right above, with these elements:
first_page
prev_page
next_page
last_page
@author: jengo, some changes by Angles
*/
function nav_left_right_imap($feed_vars)
{
$return_array = Array(
2001-12-25 03:58:49 +01:00
'first_page' => '',
'prev_page' => '',
'next_page' => '',
'last_page' => ''
);
$out_vars = array();
// things that might change
$out_vars['start'] = $feed_vars['start'];
// things that stay the same
$out_vars['common_uri'] = $feed_vars['common_uri'];
$out_vars['total'] = $feed_vars['total'];
// first page
if(($feed_vars['start'] != 0) &&
2001-12-25 03:58:49 +01:00
($feed_vars['start'] > $this->maxmatches))
{
$out_vars['start'] = 0;
$return_array['first_page'] = $this->set_link_imap('left','first.gif',lang('First page'),$out_vars);
}
else
{
$return_array['first_page']= $this->set_icon_imap('left','first-grey.gif',lang('First page'));
}
// previous page
if($feed_vars['start'] != 0)
{
// Changing the sorting order screaws up the starting number
if(($feed_vars['start'] - $this->maxmatches) < 0)
2001-09-28 23:27:40 +02:00
{
$out_vars['start'] = 0;
2001-09-28 23:27:40 +02:00
}
else
{
$out_vars['start'] = ($feed_vars['start'] - $this->maxmatches);
2001-09-28 23:27:40 +02:00
}
$return_array['prev_page'] = $this->set_link_imap('left','left.gif',lang('Previous page'),$out_vars);
}
else
{
$return_array['prev_page'] = $this->set_icon_imap('left','left-grey.gif',lang('Previous page'));
}
2001-12-25 03:58:49 +01:00
// re-initialize the out_vars
// things that might change
$out_vars['start'] = $feed_vars['start'];
// next page
if(($feed_vars['total'] > $this->maxmatches) &&
2001-12-25 03:58:49 +01:00
($feed_vars['total'] > $feed_vars['start'] + $this->maxmatches))
{
$out_vars['start'] = ($feed_vars['start'] + $this->maxmatches);
$return_array['next_page'] = $this->set_link_imap('right','right.gif',lang('Next page'),$out_vars);
}
else
{
$return_array['next_page'] = $this->set_icon_imap('right','right-grey.gif',lang('Next page'));
}
// last page
if(($feed_vars['start'] != $feed_vars['total'] - $this->maxmatches) &&
2001-12-25 03:58:49 +01:00
(($feed_vars['total'] - $this->maxmatches) > ($feed_vars['start'] + $this->maxmatches)))
{
$out_vars['start'] = ($feed_vars['total'] - $this->maxmatches);
$return_array['last_page'] = $this->set_link_imap('right','last.gif',lang('Last page'),$out_vars);
}
else
{
$return_array['last_page'] = $this->set_icon_imap('right','last-grey.gif',lang('Last page'));
}
return $return_array;
}
/*!
@function set_link_imap
@abstract ?
@param $img_src ?
@param $label ?
@param $link ?
@param $extravars ?
*/
function set_link_imap($align,$img,$alt_text,$out_vars)
{
$img_full = $GLOBALS['phpgw']->common->image('phpgwapi',$img);
$image_part = '<img src="'.$img_full.'" border="0" alt="'.$alt_text.'" width="12" height="12">';
return '<a href="'.$out_vars['common_uri'].'&start='.$out_vars['start'].'">'.$image_part.'</a>';
}
function set_icon_imap($align,$img,$alt_text)
{
$img_full = $GLOBALS['phpgw']->common->image('phpgwapi',$img);
return '<img src="'.$img_full.'" border="0" width="12" height="12" alt="'.$alt_text.'">'."\r\n";
}
2001-09-28 23:27:40 +02:00
} // End of nextmatchs class
?>