2005-11-09 00:15:14 +01:00
|
|
|
<?php
|
2007-03-09 12:30:59 +01:00
|
|
|
/**
|
|
|
|
* eGroupWare - Calendar's Listview and Search
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @package calendar
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2008-06-07 19:45:33 +02:00
|
|
|
* @copyright (c) 2005-8 by RalfBecker-At-outdoor-training.de
|
2007-03-09 12:30:59 +01:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2005-11-09 00:15:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to generate the calendar listview and the search
|
|
|
|
*
|
|
|
|
* The new UI, BO and SO classes have a strikt definition, in which time-zone they operate:
|
|
|
|
* UI only operates in user-time, so there have to be no conversation at all !!!
|
|
|
|
* BO's functions take and return user-time only (!), they convert internaly everything to servertime, because
|
|
|
|
* SO operates only on server-time
|
|
|
|
*
|
|
|
|
* The state of the UI elements is managed in the uical class, which all UI classes extend.
|
|
|
|
*
|
|
|
|
* All permanent debug messages of the calendar-code should done via the debug-message method of the bocal class !!!
|
|
|
|
*/
|
2008-06-07 19:45:33 +02:00
|
|
|
class calendar_uilist extends calendar_ui
|
2005-11-09 00:15:14 +01:00
|
|
|
{
|
|
|
|
var $public_functions = array(
|
|
|
|
'listview' => True,
|
|
|
|
);
|
|
|
|
/**
|
2007-03-09 12:30:59 +01:00
|
|
|
* integer level or string function- or widget-name
|
2008-06-07 19:45:33 +02:00
|
|
|
*
|
2007-03-09 12:30:59 +01:00
|
|
|
* @var mixed
|
2005-11-09 00:15:14 +01:00
|
|
|
*/
|
|
|
|
var $debug=false;
|
2007-03-09 12:30:59 +01:00
|
|
|
/**
|
|
|
|
* Filternames
|
2008-06-07 19:45:33 +02:00
|
|
|
*
|
2007-03-09 12:30:59 +01:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
var $date_filters = array(
|
|
|
|
'after' => 'After current date',
|
|
|
|
'before' => 'Before current date',
|
|
|
|
'all' => 'All events',
|
|
|
|
'custom' => 'Selected range',
|
|
|
|
);
|
2005-11-09 00:15:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param array $set_states=null to manualy set / change one of the states, default NULL = use $_REQUEST
|
|
|
|
*/
|
2008-06-07 19:45:33 +02:00
|
|
|
function __construct($set_states=null)
|
2005-11-09 00:15:14 +01:00
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
parent::__construct(true,$set_states); // call the parent's constructor
|
2005-11-09 00:15:14 +01:00
|
|
|
|
2006-03-03 19:51:46 +01:00
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] = $GLOBALS['egw_info']['apps']['calendar']['title'].' - '.lang('Listview').
|
|
|
|
// for a single owner we add it's name to the app-header
|
|
|
|
(count(explode(',',$this->owner)) == 1 ? ': '.$this->bo->participant_name($this->owner) : '');
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2007-03-09 12:30:59 +01:00
|
|
|
foreach($this->date_filters as $name => $label)
|
|
|
|
{
|
|
|
|
$this->date_filters[$name] = lang($label);
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2006-03-03 19:51:46 +01:00
|
|
|
$this->check_owners_access();
|
2005-11-09 00:15:14 +01:00
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2005-11-09 00:15:14 +01:00
|
|
|
/**
|
|
|
|
* Show the calendar on the home page
|
|
|
|
*
|
|
|
|
* @return string with content
|
|
|
|
*/
|
|
|
|
function &home()
|
|
|
|
{
|
|
|
|
// set the defaults for the home-page
|
|
|
|
$this->uilist(array(
|
|
|
|
'date' => $this->bo->date2string($this->bo->now_su),
|
|
|
|
'cat_id' => 0,
|
|
|
|
'filter' => 'all',
|
|
|
|
'owner' => $this->user,
|
|
|
|
'multiple' => 0,
|
2008-06-07 19:45:33 +02:00
|
|
|
'view' => $this->bo->cal_prefs['defaultcalendar'],
|
2005-11-09 00:15:14 +01:00
|
|
|
));
|
|
|
|
$GLOBALS['egw']->session->appsession('calendar_list','calendar',''); // in case there's already something set
|
|
|
|
|
|
|
|
return $this->listview(null,'',true);
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
2005-11-09 00:15:14 +01:00
|
|
|
/**
|
|
|
|
* Show the listview
|
|
|
|
*/
|
|
|
|
function listview($content=null,$msg='',$home=false)
|
|
|
|
{
|
2006-03-04 10:54:31 +01:00
|
|
|
if ($_GET['msg']) $msg .= $_GET['msg'];
|
|
|
|
if ($this->group_warning) $msg .= $this->group_warning;
|
2005-11-09 00:15:14 +01:00
|
|
|
|
|
|
|
$etpl =& CreateObject('etemplate.etemplate','calendar.list');
|
2006-03-01 10:15:58 +01:00
|
|
|
|
|
|
|
if (is_array($content) && $content['nm']['rows']['delete'])
|
|
|
|
{
|
|
|
|
list($id) = each($content['nm']['rows']['delete']);
|
|
|
|
|
|
|
|
if ($this->bo->delete($id))
|
|
|
|
{
|
|
|
|
$msg = lang('Event deleted');
|
|
|
|
}
|
|
|
|
}
|
2008-02-05 16:50:54 +01:00
|
|
|
//Delete all selected Entrys
|
|
|
|
if (is_array($content) && $content['deleteall'])
|
|
|
|
{
|
|
|
|
//_debug_array($content);
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2008-02-05 16:50:54 +01:00
|
|
|
foreach($content['nm']['rows']['checked'] as $num => $id)
|
|
|
|
{
|
|
|
|
if ($this->bo->delete($id))
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
$msg .= lang('Event deleted');
|
2008-02-05 16:50:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-11-09 00:15:14 +01:00
|
|
|
$content = array(
|
2006-03-01 10:15:58 +01:00
|
|
|
'nm' => $GLOBALS['egw']->session->appsession('calendar_list','calendar'),
|
|
|
|
'msg' => $msg,
|
2005-11-09 00:15:14 +01:00
|
|
|
);
|
|
|
|
if (!is_array($content['nm']))
|
|
|
|
{
|
|
|
|
$content['nm'] = array(
|
2008-06-07 19:45:33 +02:00
|
|
|
'get_rows' => 'calendar.calendar_uilist.get_rows',
|
2005-11-09 00:15:14 +01:00
|
|
|
'filter_no_lang' => True, // I set no_lang for filter (=dont translate the options)
|
|
|
|
'no_filter2' => True, // I disable the 2. filter (params are the same as for filter)
|
|
|
|
'no_cat' => True, // I disable the cat-selectbox
|
|
|
|
// 'bottom_too' => True,// I show the nextmatch-line (arrows, filters, search, ...) again after the rows
|
|
|
|
'filter' => 'after',
|
|
|
|
'order' => 'cal_start',// IO name of the column to sort after (optional for the sortheaders)
|
|
|
|
'sort' => 'ASC',// IO direction of the sort: 'ASC' or 'DESC'
|
2008-02-05 16:50:54 +01:00
|
|
|
'default_cols' => '!week,weekday,cal_title,cal_description,recure,cal_location,cal_owner,cat_id,pm_id',
|
2007-03-09 12:30:59 +01:00
|
|
|
'filter_onchange' => "set_style_by_class('*','custom_hide','visibility',this.value == 'custom' ? 'visible' : 'hidden'); if (this.value != 'custom') this.form.submit();",
|
|
|
|
'header_left' => 'calendar.list.dates',
|
2005-11-09 00:15:14 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if (isset($_REQUEST['keywords'])) // new search => set filters so every match is shown
|
|
|
|
{
|
|
|
|
$this->adjust_for_search($_REQUEST['keywords'],$content['nm']);
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
return $etpl->exec('calendar.calendar_uilist.listview',$content,array(
|
2005-11-09 00:15:14 +01:00
|
|
|
'filter' => &$this->date_filters,
|
|
|
|
),$readonlys,'',$home ? -1 : 0);
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2005-11-09 00:15:14 +01:00
|
|
|
/**
|
|
|
|
* set filter for search, so that everything is shown
|
|
|
|
*/
|
|
|
|
function adjust_for_search($keywords,&$params)
|
|
|
|
{
|
|
|
|
$params['search'] = $keywords;
|
|
|
|
$params['start'] = 0;
|
|
|
|
$params['order'] = 'cal_start';
|
|
|
|
if ($keywords)
|
|
|
|
{
|
|
|
|
$params['filter'] = 'all';
|
|
|
|
$params['sort'] = 'DESC';
|
|
|
|
unset($params['col_filter']['participant']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$params['filter'] = 'after';
|
|
|
|
$params['sort'] = 'ASC';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* query calendar for nextmatch in the listview
|
|
|
|
*
|
2008-06-07 19:45:33 +02:00
|
|
|
* @internal
|
2005-11-09 00:15:14 +01:00
|
|
|
* @param array &$params parameters
|
|
|
|
* @param array &$rows returned rows/events
|
|
|
|
* @param array &$readonlys eg. to disable buttons based on acl
|
|
|
|
*/
|
|
|
|
function get_rows(&$params,&$rows,&$readonlys)
|
|
|
|
{
|
|
|
|
//echo "uilist::get_rows() params="; _debug_array($params);
|
2007-03-09 12:30:59 +01:00
|
|
|
if (isset($_GET['listview_days']) && is_numeric($_GET['listview_days']))
|
|
|
|
{
|
|
|
|
$params['filter'] = 'fixed';
|
|
|
|
}
|
|
|
|
if ($params['filter'] == 'custom')
|
|
|
|
{
|
|
|
|
if (!$params['startdate'] && !$params['enddate'])
|
|
|
|
{
|
|
|
|
$params['filter'] = 'all';
|
|
|
|
}
|
|
|
|
elseif (!$params['startdate'])
|
|
|
|
{
|
|
|
|
$params['filter'] = 'before';
|
|
|
|
$this->manage_states(array('date' => $this->bo->date2string($params['enddate'])));
|
|
|
|
}
|
|
|
|
elseif (!$params['enddate'])
|
|
|
|
{
|
|
|
|
$params['filter'] = 'after';
|
|
|
|
$this->manage_states(array('date' => $this->bo->date2string($params['startdate'])));
|
|
|
|
}
|
|
|
|
}
|
2005-11-09 00:15:14 +01:00
|
|
|
$old_params = $GLOBALS['egw']->session->appsession('calendar_list','calendar');
|
|
|
|
if ($old_params['filter'] && $old_params['filter'] != $params['filter']) // filter changed => order accordingly
|
|
|
|
{
|
|
|
|
$params['order'] = 'cal_start';
|
|
|
|
$params['sort'] = $params['filter'] == 'after' ? 'ASC' : 'DESC';
|
|
|
|
}
|
|
|
|
if ($old_params['search'] != $params['search'])
|
|
|
|
{
|
|
|
|
$this->adjust_for_search($params['search'],$params);
|
|
|
|
}
|
|
|
|
$GLOBALS['egw']->session->appsession('calendar_list','calendar',$params);
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2005-11-09 00:15:14 +01:00
|
|
|
$search_params = array(
|
|
|
|
'cat_id' => $this->cat_id,
|
|
|
|
'filter' => $this->filter,
|
|
|
|
'query' => $params['search'],
|
|
|
|
'offset' => (int) $params['start'],
|
|
|
|
'order' => $params['order'] ? $params['order'].' '.$params['sort'] : 'cal_start',
|
|
|
|
);
|
|
|
|
switch($params['filter'])
|
|
|
|
{
|
|
|
|
case 'all':
|
|
|
|
break;
|
|
|
|
case 'before':
|
|
|
|
$search_params['end'] = $this->date;
|
2007-03-09 12:30:59 +01:00
|
|
|
$label = lang('Before %1',$this->bo->long_date($this->date));
|
|
|
|
break;
|
|
|
|
case 'custom':
|
|
|
|
$GLOBALS['egw']->js->set_onload("set_style_by_class('*','custom_hide','visibility','visible');");
|
|
|
|
$this->first = $search_params['start'] = $params['startdate'];
|
|
|
|
$this->last = $search_params['end'] = $params['enddate'];
|
|
|
|
$label = $this->bo->long_date($this->first,$this->last);
|
2005-11-09 00:15:14 +01:00
|
|
|
break;
|
2007-03-09 12:30:59 +01:00
|
|
|
case 'fixed':
|
|
|
|
if ($this->listview_days == 5 || $this->listview_days == 7) // weekview
|
|
|
|
{
|
|
|
|
$this->first = $this->datetime->get_weekday_start($this->year,$this->month,$this->day);
|
|
|
|
$this->last = $this->bo->date2array($this->first);
|
2008-01-21 14:22:47 +01:00
|
|
|
$this->last['day'] += (int) $this->listview_days - 1;
|
2007-03-09 12:30:59 +01:00
|
|
|
$this->last['hour'] = 23; $this->last['minute'] = $this->last['sec'] = 59;
|
|
|
|
unset($this->last['raw']);
|
|
|
|
$this->last = $this->bo->date2ts($this->last);
|
|
|
|
$this->date_filters['fixed'] = $label = lang('Week').' '.adodb_date('W',$this->first).': '.$this->bo->long_date($this->first,$this->last);
|
|
|
|
$search_params['start'] = $this->first;
|
|
|
|
$search_params['end'] = $this->last;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
elseif ((string)$this->listview_days === '0') // monthview
|
|
|
|
{
|
|
|
|
$this->first = $this->bo->date2array($this->date);
|
|
|
|
$this->first['day'] = 1;
|
|
|
|
unset($this->first['raw']);
|
|
|
|
$this->last = $this->first;
|
|
|
|
$this->last['month'] += 1;
|
|
|
|
$this->first = $this->bo->date2ts($this->first);
|
|
|
|
$this->last = $this->bo->date2ts($this->last);
|
|
|
|
$this->last--;
|
|
|
|
$this->date_filters['fixed'] = $label = lang(adodb_date('F',$this->bo->date2ts($this->date))).' '.$this->year;
|
2007-04-04 16:25:23 +02:00
|
|
|
$search_params['start'] = $this->first;
|
|
|
|
$search_params['end'] = $this->last;
|
2007-03-09 12:30:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// fall through to after given date
|
2005-11-09 00:15:14 +01:00
|
|
|
case 'after':
|
|
|
|
default:
|
2007-03-09 12:30:59 +01:00
|
|
|
$label = lang('After %1',$this->bo->long_date($this->date));
|
2005-11-09 00:15:14 +01:00
|
|
|
$search_params['start'] = $this->date;
|
|
|
|
break;
|
|
|
|
}
|
2007-03-09 12:30:59 +01:00
|
|
|
if ($label)
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] .= ': '.$label;
|
|
|
|
}
|
2005-11-09 00:15:14 +01:00
|
|
|
if ((int) $params['col_filter']['participant'])
|
|
|
|
{
|
|
|
|
$search_params['users'] = (int) $params['col_filter']['participant'];
|
|
|
|
}
|
|
|
|
elseif(empty($params['search'])) // active search displays entries from all users
|
|
|
|
{
|
2006-03-03 19:51:46 +01:00
|
|
|
$search_params['users'] = explode(',',$this->owner);
|
2005-11-09 00:15:14 +01:00
|
|
|
}
|
|
|
|
$rows = array();
|
|
|
|
foreach((array) $this->bo->search($search_params) as $event)
|
|
|
|
{
|
2007-01-02 15:55:24 +01:00
|
|
|
$readonlys['view['.$event['id'].']'] = !($readonlys['edit['.$event['id'].']'] = !$this->bo->check_perms(EGW_ACL_EDIT,$event));
|
2005-11-09 00:15:14 +01:00
|
|
|
$readonlys['delete['.$event['id'].']'] = !$this->bo->check_perms(EGW_ACL_DELETE,$event);
|
|
|
|
|
|
|
|
$event['parts'] = implode(",\n",$this->bo->participants($event));
|
2005-12-02 16:34:45 +01:00
|
|
|
$event['recure'] = $this->bo->recure2string($event);
|
|
|
|
$event['date'] = $this->bo->date2string($event['start']);
|
2005-11-09 00:15:14 +01:00
|
|
|
if (empty($event['description'])) $event['description'] = ' '; // no description screws the titles horz. alignment
|
|
|
|
if (empty($event['location'])) $event['location'] = ' '; // no location screws the owner horz. alignment
|
|
|
|
$rows[] = $event;
|
|
|
|
}
|
2008-02-05 16:50:54 +01:00
|
|
|
$wv=0;
|
|
|
|
$dv=0;
|
2007-03-09 12:30:59 +01:00
|
|
|
$params['options-selectcols']['week'] = lang('Week');
|
2008-02-05 16:50:54 +01:00
|
|
|
$params['options-selectcols']['weekday'] = lang('Weekday');
|
|
|
|
if ((substr($this->cal_prefs['nextmatch-calendar.list.rows'],0,4) == 'week' && strlen($this->cal_prefs['nextmatch-calendar.list.rows'])==4) || substr($this->cal_prefs['nextmatch-calendar.list.rows'],0,5) == 'week,')
|
2007-03-09 12:30:59 +01:00
|
|
|
{
|
|
|
|
$rows['format'] = '32'; // prefix date with week-number
|
2008-02-05 16:50:54 +01:00
|
|
|
$wv=1;
|
|
|
|
}
|
|
|
|
if (!(strpos($this->cal_prefs['nextmatch-calendar.list.rows'],'weekday')===FALSE))
|
|
|
|
{
|
|
|
|
$rows['format'] = '16';
|
|
|
|
$dv=1;
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
if ($wv&&$dv)
|
2008-02-05 16:50:54 +01:00
|
|
|
{
|
|
|
|
$rows['format'] = '64';
|
2007-03-09 12:30:59 +01:00
|
|
|
}
|
|
|
|
if ($this->cat_id) $rows['no_cat_id'] = true;
|
|
|
|
if (!$GLOBALS['egw_info']['user']['apps']['projectmanager'])
|
|
|
|
{
|
|
|
|
$params['options-selectcols']['pm_id'] = false;
|
|
|
|
}
|
2005-11-09 00:15:14 +01:00
|
|
|
//_debug_array($rows);
|
|
|
|
return $this->bo->total;
|
|
|
|
}
|
|
|
|
}
|