egroupware/calendar/inc/class.calendar_favorite_portlet.inc.php
2014-12-08 17:23:57 +00:00

190 lines
6.0 KiB
PHP

<?php
/*
* Egroupware - Addressbook - A portlet for displaying a list of entries
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package addressbook
* @subpackage home
* @link http://www.egroupware.org
* @author Nathan Gray
* @version $Id$
*/
/**
* The addressbook_list_portlet uses a nextmatch / favorite
* to display a list of entries.
*/
class calendar_favorite_portlet extends home_favorite_portlet
{
/**
* Construct the portlet
* Calendar complicates things...
*/
public function __construct(Array &$context = array(), &$need_reload = false)
{
$context['appname'] = 'calendar';
// Let parent handle the basic stuff
parent::__construct($context,$need_reload);
if($this->favorite['state']['view'] == 'listview')
{
$ui = new calendar_uilist();
$this->context['template'] = 'calendar.list.rows';
$this->context['sel_options'] = array();
$this->nm_settings += array(
'csv_export' => True,
'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
'filter' => 'after',
'row_id' => 'row_id', // set in get rows "$event[id]:$event[recur_date]"
'row_modified' => 'modified',
'get_rows' => 'calendar_favorite_portlet::get_rows',
// Use a different template so it can be accessed from client side
'template' => 'calendar.list.rows',
// Default to fewer columns
'default_cols' => 'cal_start_cal_end,cal_title,cal_owner_cal_location'
);
}
$need_reload = true;
}
public function exec($id = null, etemplate_new &$etemplate = null)
{
// Always load app's css
egw_framework::includeCSS('calendar','app');
if($this->favorite['state']['view'] == 'listview' || is_array($this->favorite) && !$this->favorite['state']['view'])
{
$ui = new calendar_uilist();
}
else
{
$ui = new calendar_uiviews();
if($this->favorite['state']['start']) $ui->search_params['start'] = $this->favorite['state']['start'];
if($this->favorite['state']['cat_id']) $ui->search_params['cat_id'] = $this->favorite['state']['cat_id'];
if($this->favorite['state']['owner']) $ui->search_params['users'] = explode(',',$this->favorite['state']['owner']);
if($this->favorite['state']['filter']) $ui->search_params['filter'] = $this->favorite['state']['filter'];
if($this->favorite['state']['sortby']) $ui->search_params['sortby'] = $this->favorite['state']['sortby'];
$etemplate->read('home.legacy');
$etemplate->set_dom_id($id);
// Always load app's javascript, so most actions have a chance of working
egw_framework::validate_file('','app',$this->context['appname']);
}
$content = array('legacy' => '');
switch($this->favorite['state']['view'])
{
case 'listview':
$this->context['sel_options']['filter'] = &$ui->date_filters;
$this->nm_settings['actions'] = $ui->get_actions($this->nm_settings['col_filter']['tid'], $this->nm_settings['org_view']);
// Early exit
return parent::exec($id, $etemplate);
break;
case 'planner_user':
case 'planner_cat':
case 'planner':
$content = array('legacy' => $ui->planner(true));
break;
case 'year':
$content = array('legacy' => $ui->year(true));
break;
case 'month':
$content = array('legacy' => $ui->month(0,true));
break;
case 'weekN':
$content = array('legacy' => $ui->weekN(true));
break;
case 'week':
$content = array('legacy' => $ui->week(0,true));
break;
case 'day':
$content = array('legacy' => $ui->day(true));
break;
case 'day4':
$content = array('legacy' => $ui->week(4,true));
break;
}
unset($GLOBALS['egw_info']['flags']['app_header']);
// Force loading of CSS
egw_framework::include_css_js_response();
$etemplate->exec(get_called_class() .'::process',$content);
}
/**
* Override from calendar list to clear the app header
*
* @param type $query
* @param type $rows
* @param type $readonlys
* @return integer Total rows found
*/
public static function get_rows(&$query, &$rows, &$readonlys)
{
$ui = new calendar_uilist();
$old_owner = $ui->owner;
$ui->owner = $query['owner'];
$total = $ui->get_rows($query, $rows, $readonlys);
$ui->owner = $old_owner;
unset($GLOBALS['egw_info']['flags']['app_header']);
return $total;
}
/**
* Here we need to handle any incoming data. Setup is done in the constructor,
* output is handled by parent.
*
* @param type $id
* @param etemplate_new $etemplate
*/
public static function process($values = array())
{
parent::process($values);
$ui = new calendar_uilist();
if (is_array($values) && !empty($values['nm']['action']))
{
if (!count($values['nm']['selected']) && !$values['nm']['select_all'])
{
egw_framework::message(lang('You need to select some entries first'));
}
else
{
$success = $failed = $action_msg = null;
if ($ui->action($values['nm']['action'],$values['nm']['selected'],$values['nm']['select_all'],
$success,$failed,$action_msg,'calendar_list',$msg, $values['nm']['checkboxes']['no_notifications']))
{
$msg .= lang('%1 event(s) %2',$success,$action_msg);
egw_json_response::get()->apply('egw.message',array($msg,'success'));
foreach($values['nm']['selected'] as &$id)
{
$id = 'calendar::'.$id;
}
// Directly request an update - this will get addressbook tab too
egw_json_response::get()->apply('egw.dataRefreshUIDs',array($values['nm']['selected']));
}
elseif(is_null($msg))
{
$msg .= lang('%1 entries %2, %3 failed because of insufficent rights !!!',$success,$action_msg,$failed);
egw_json_response::get()->apply('egw.message',array($msg,'error'));
}
elseif($msg)
{
$msg .= "\n".lang('%1 entries %2, %3 failed.',$success,$action_msg,$failed);
egw_json_response::get()->apply('egw.message',array($msg,'error'));
}
unset($values['nm']['action']);
unset($values['nm']['select_all']);
}
}
}
}