2004-08-01 17:36:04 +02:00
< ? php
/************************************************************************** \
2005-11-09 00:15:14 +01:00
* eGroupWare - Calendar - shared base - class of all calendar UI classes *
2004-08-01 17:36:04 +02:00
* http :// www . egroupware . org *
2005-11-09 00:15:14 +01:00
* Written and ( c ) 2004 / 5 by Ralf Becker < RalfBecker @ outdoor - training . de > *
2004-08-01 17:36:04 +02:00
* -------------------------------------------- *
* 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$ */
/**
2005-11-09 00:15:14 +01:00
* Shared base - class of all calendar UserInterface classes
2004-08-01 17:36:04 +02:00
*
* It manages eg . the state of the controls in the UI and generated the calendar navigation ( sidebox - menu )
*
2005-11-09 00:15:14 +01:00
* 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
*
* All permanent debug messages of the calendar - code should done via the debug - message method of the bocal class ! ! !
*
2004-08-01 17:36:04 +02:00
* @ package calendar
2005-11-09 00:15:14 +01:00
* @ author Ralf Becker < RalfBecker - AT - outdoor - training . de >
* @ copyright ( c ) 2004 / 5 by RalfBecker - At - outdoor - training . de
* @ license http :// opensource . org / licenses / gpl - license . php GPL - GNU General Public License
2004-08-01 17:36:04 +02:00
*/
class uical
{
/**
* @ var $debug mixed integer level or string function - name
*/
2005-11-09 00:15:14 +01:00
var $debug = false ;
2004-08-01 17:36:04 +02:00
/**
* @ var $bo class bocal
*/
2005-11-09 00:15:14 +01:00
var $bo , $jscal , $html , $datetime , $cats , $accountsel ;
/**
* @ var array $common_prefs reference to $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ]
*/
var $common_prefs ;
/**
* @ var array $cal_prefs reference to $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'calendar' ]
*/
var $cal_prefs ;
/**
* @ var int $wd_start user pref . workday start
*/
var $wd_start ;
/**
* @ var int $wd_start user pref . workday end
*/
var $wd_end ;
/**
* @ var int $interval_m user pref . interval
*/
var $interval_m ;
/**
* @ var int $user account_id of loged in user
*/
var $user ;
/**
* @ var string $date session - state : date ( Ymd ) of shown view
*/
var $date ;
/**
* @ var int $cat_it session - state : selected category
*/
var $cat_id ;
/**
* @ var int $filter session - state : selected filter
*/
var $filter ;
/**
* @ var int / array $owner session - state : selected owner ( s ) of shown calendar ( s )
*/
var $owner ;
/**
* @ var boolean $multiple session - state : true multiple owners selected , false single user / group
*/
var $multiple ;
/**
* @ var string $sortby session - state : filter of planner : 'category' or 'user'
*/
var $sortby ;
/**
* @ var string $view session - state : selected view
*/
var $view ;
/**
* @ var string $view menuaction of the selected view
*/
var $view_menuaction ;
/**
* @ var int $first first day of the shown view
*/
var $first ;
/**
* @ var int $last last day of the shown view
*/
var $last ;
2004-08-01 17:36:04 +02:00
/**
* Constructor
2005-11-09 00:15:14 +01:00
*
* @ param boolean $use_bocalupdate use bocalupdate as parenent instead of bocal
* @ param array $set_states = null to manualy set / change one of the states , default NULL = use $_REQUEST
2004-08-01 17:36:04 +02:00
*/
2005-11-09 00:15:14 +01:00
function uical ( $use_bocalupdate = false , $set_states = NULL )
2004-08-01 17:36:04 +02:00
{
foreach ( array (
2005-11-09 00:15:14 +01:00
'bo' => $use_bocalupdate ? 'calendar.bocalupdate' : 'calendar.bocal' ,
2004-08-01 17:36:04 +02:00
'jscal' => 'phpgwapi.jscalendar' , // for the sidebox-menu
'html' => 'phpgwapi.html' ,
'datetime' => 'phpgwapi.datetime' ,
'accountsel' => 'phpgwapi.uiaccountsel' ,
) as $my => $app_class )
{
list (, $class ) = explode ( '.' , $app_class );
2005-11-09 00:15:14 +01:00
if ( ! is_object ( $GLOBALS [ 'egw' ] -> $class ))
2004-08-01 17:36:04 +02:00
{
2005-11-09 00:15:14 +01:00
$GLOBALS [ 'egw' ] -> $class =& CreateObject ( $app_class );
2004-08-01 17:36:04 +02:00
}
2005-11-09 00:15:14 +01:00
$this -> $my = & $GLOBALS [ 'egw' ] -> $class ;
2004-08-01 17:36:04 +02:00
}
2005-11-09 00:15:14 +01:00
if ( ! is_object ( $this -> cats ))
{
$this -> cats =& CreateObject ( 'phpgwapi.categories' , '' , 'calendar' ); // we need an own instance to get the calendar cats
}
$this -> common_prefs = & $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ];
$this -> cal_prefs = & $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'calendar' ];
$this -> wd_start = 60 * $this -> cal_prefs [ 'workdaystarts' ];
$this -> wd_end = 60 * $this -> cal_prefs [ 'workdayends' ];
$this -> interval_m = $this -> cal_prefs [ 'interval' ];
2004-08-01 17:36:04 +02:00
2005-11-09 00:15:14 +01:00
$this -> user = $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ];
2004-08-01 17:36:04 +02:00
2005-11-09 00:15:14 +01:00
$this -> manage_states ( $set_states );
2004-08-01 17:36:04 +02:00
$GLOBALS [ 'uical' ] = & $this ; // make us available for ExecMethod, else it creates a new instance
// calendar does not work with hidden sidebox atm.
2005-11-09 00:15:14 +01:00
unset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'auto_hide_sidebox' ]);
2004-08-01 17:36:04 +02:00
}
/**
* Manages the states of certain controls in the UI : date shown , category selected , ...
*
* The state of all these controls is updated if they are set in $_REQUEST or $set_states and saved in the session .
* The following states are used :
* - date or year , month , day : the actual date of the period displayed
* - cat_id : the selected category
* - owner : the owner of the displayed calendar
* - save_owner : the overriden owner of the planner
* - filter : the used filter : no filter / all or only privat
* - sortby : category or user of planner
2005-11-09 00:15:14 +01:00
* - view : the actual view , where dialogs should return to or which they refresh
2004-08-01 17:36:04 +02:00
* @ param set_states array to manualy set / change one of the states , default NULL = use $_REQUEST
*/
function manage_states ( $set_states = NULL )
{
2005-11-09 00:15:14 +01:00
$states = $states_session = $GLOBALS [ 'egw' ] -> session -> appsession ( 'session_data' , 'calendar' );
2004-08-01 17:36:04 +02:00
if ( is_null ( $set_states ))
{
$set_states = $_REQUEST ;
}
if ( ! $states [ 'date' ] && $states [ 'year' ] && $states [ 'month' ] && $states [ 'day' ])
{
$states [ 'date' ] = $this -> bo -> date2string ( $states );
}
foreach ( array (
'date' => $this -> bo -> date2string ( $this -> bo -> now_su ),
'cat_id' => 0 ,
'filter' => 'all' ,
'owner' => $this -> user ,
'save_owner' => 0 ,
'sortby' => 'category' ,
2005-11-09 00:15:14 +01:00
'planner_days' => 0 , // full month
2004-08-01 17:36:04 +02:00
'multiple' => 0 ,
2005-11-09 00:15:14 +01:00
'view' => $this -> bo -> cal_prefs [ 'defaultcalendar' ],
2004-08-01 17:36:04 +02:00
) as $state => $default )
{
if ( isset ( $set_states [ $state ]))
{
$states [ $state ] = $set_states [ $state ];
}
elseif ( ! is_array ( $states ) || ! isset ( $states [ $state ]))
{
$states [ $state ] = $default ;
}
if ( $state == 'date' )
{
$date_arr = $this -> bo -> date2array ( $states [ 'date' ]);
foreach ( array ( 'year' , 'month' , 'day' ) as $name )
{
$this -> $name = $states [ $name ] = $date_arr [ $name ];
}
}
$this -> $state = $states [ $state ];
}
2005-11-09 00:15:14 +01:00
if ( substr ( $this -> view , 0 , 8 ) == 'planner_' )
{
$states [ 'sortby' ] = $this -> sortby = $this -> view == 'planner_cat' ? 'category' : 'user' ;
$states [ 'view' ] = $this -> view = 'planner' ;
}
2004-08-01 17:36:04 +02:00
// set the actual view as return_to
list ( $app , $class , $func ) = explode ( '.' , $_GET [ 'menuaction' ]);
2005-11-09 00:15:14 +01:00
if (( $class == 'uiviews' || $class == 'uilist' ) && $func )
2004-08-01 17:36:04 +02:00
{
2005-11-09 00:15:14 +01:00
// if planner_start_with_group is set in the users prefs: switch owner for planner to planner_start_with_group and back
if ( $this -> cal_prefs [ 'planner_start_with_group' ])
{
if ( $func == 'planner' && $this -> view != 'planner' && $this -> owner == $this -> user )
{
//echo "<p>switched for planner to {$this->cal_prefs['planner_start_with_group']}, view was $this->view, func=$func, owner was $this->owner</p>\n";
$states [ 'save_owner' ] = $this -> save_owner = $this -> owner ;
$states [ 'owner' ] = $this -> owner = $this -> cal_prefs [ 'planner_start_with_group' ];
}
elseif ( $func != 'planner' && $this -> view == 'planner' && $this -> owner == $this -> cal_prefs [ 'planner_start_with_group' ] && $this -> save_owner )
{
//echo "<p>switched back to $this->save_owner, view was $this->view, func=$func, owner was $this->owner</p>\n";
$states [ 'owner' ] = $this -> owner = $this -> save_owner ;
$states [ 'save_owner' ] = $this -> save_owner = 0 ;
}
}
$this -> view = $states [ 'view' ] = $func ;
2004-08-01 17:36:04 +02:00
}
2005-11-09 00:15:14 +01:00
$this -> view_menuaction = $this -> view == 'listview' ? 'calendar.uilist.listview' : 'calendar.uiviews.' . $this -> view ;
2004-08-01 17:36:04 +02:00
// deal with group-owners
2005-11-09 00:15:14 +01:00
if ( substr ( $this -> owner , 0 , 2 ) == 'g_' || $GLOBALS [ 'egw' ] -> accounts -> get_type ( $this -> owner ) == 'g' )
2004-08-01 17:36:04 +02:00
{
$this -> set_owner_to_group ( $this -> owner );
$states [ 'owner' ] = $this -> owner ;
}
$states [ 'multiple' ] = $this -> multiple = $_GET [ 'multiple' ] || count ( explode ( ',' , $this -> owner )) > 1 ;
if ( $this -> debug > 0 || $this -> debug == 'menage_states' ) $this -> bo -> debug_message ( 'uical::manage_states(%1) session was %2, states now %3, is_group=%4, g_owner=%5' , True , $set_states , $states_session , $states , $this -> is_group , $this -> g_owner );
// save the states in the session
2005-11-09 00:15:14 +01:00
$GLOBALS [ 'egw' ] -> session -> appsession ( 'session_data' , 'calendar' , $states );
2004-08-01 17:36:04 +02:00
}
/**
* Sets a group as owner ( of the events to show )
*
* It set $this -> is_group and $this -> g_owner - array with user - id ' s of the group - members who gave read - grants
* @ param group - id or 'g_' + group - id
*/
function set_owner_to_group ( $owner )
{
$this -> owner = ( int ) ( substr ( $owner , 0 , 2 ) == 'g_' ? substr ( $owner , 2 ) : $owner );
$this -> is_group = True ;
$this -> g_owner = Array ();
2005-11-09 00:15:14 +01:00
$members = $GLOBALS [ 'egw' ] -> accounts -> member ( $this -> owner );
2004-08-01 17:36:04 +02:00
if ( is_array ( $members ))
{
foreach ( $members as $user )
{
// use only members which gave the user a read-grant
2005-11-09 00:15:14 +01:00
if ( $this -> bo -> check_perms ( EGW_ACL_READ , 0 , $user [ 'account_id' ]))
2004-08-01 17:36:04 +02:00
{
$this -> g_owner [] = $user [ 'account_id' ];
}
}
}
if ( $this -> debug > 2 || $this -> debug == 'set_owner_to_group' ) $this -> bo -> debug_message ( 'uical::set_owner_to_group(%1): owner=%2, g_owner=%3' , True , $owner , $this -> owner , $this -> g_owner );
}
/**
* gets the icons displayed for a given event
*
* @ param $event array
* @ return array of 'img' / 'title' pairs
*/
function event_icons ( $event )
{
2005-11-09 00:15:14 +01:00
$is_private = ! $event [ 'public' ] && ! $this -> bo -> check_perms ( EGW_ACL_READ , $event );
$viewable = ! $this -> bo -> printer_friendly && $this -> bo -> check_perms ( EGW_ACL_READ , $event );
2004-08-01 17:36:04 +02:00
if ( ! $is_private )
{
if ( $event [ 'priority' ] == 3 )
{
$icons [] = $this -> html -> image ( 'calendar' , 'high' , lang ( 'high priority' ));
}
2005-11-09 00:15:14 +01:00
if ( $event [ 'recur_type' ] != MCAL_RECUR_NONE )
2004-08-01 17:36:04 +02:00
{
$icons [] = $this -> html -> image ( 'calendar' , 'recur' , lang ( 'recurring event' ));
}
2005-11-12 18:57:18 +01:00
$icons [] = $this -> html -> image ( 'calendar' , count ( $event [ 'participants' ]) > 1 ? 'users' : 'single' );
2004-08-01 17:36:04 +02:00
}
if ( $event [ 'public' ] == 0 )
{
$icons [] = $this -> html -> image ( 'calendar' , 'private' , lang ( 'private' ));
}
if ( isset ( $event [ 'alarm' ]) && count ( $event [ 'alarm' ]) >= 1 && ! $is_private )
{
$icons [] = $this -> html -> image ( 'calendar' , 'alarm' , lang ( 'alarm' ));
}
2005-11-09 00:15:14 +01:00
foreach ( $event [ 'participants' ] as $participant => $status )
{
if ( is_numeric ( $participant )) continue ;
if ( isset ( $this -> bo -> resources [ $participant { 0 }]) && isset ( $this -> bo -> resources [ $participant { 0 }][ 'icon' ]) && ! $seticon [ $participant { 0 }])
{
$seticon [ $participant { 0 }] = true ;
$icons [] = $this -> html -> image ( $this -> bo -> resources [ $participant { 0 }][ 'app' ],
( $this -> bo -> resources [ $participant { 0 }][ 'icon' ] ? $this -> bo -> resources [ $participant { 0 }][ 'icon' ] : 'navbar' ),
lang ( $this -> bo -> resources [ $participant { 0 }][ 'app' ]),
'width="16px" height="16px"' );
}
}
2004-08-01 17:36:04 +02:00
return $icons ;
}
/**
* Create a select - box item in the sidebox - menu
* @ privat used only by sidebox_menu !
*/
function _select_box ( $title , $name , $options , $baseurl = '' )
{
if ( $baseurl ) // we append the value to the baseurl
{
$baseurl .= strstr ( $baseurl , '?' ) === False ? '?' : '&' ;
$onchange = " location=' $baseurl '+this.value; " ;
}
else // we add $name=value to the actual location
{
$onchange = " location=location+(location.search.length ? '&' : '?')+' " . $name . " ='+this.value; " ;
}
2005-11-09 00:15:14 +01:00
$select = ' <select style="width: 185px;" name="' . $name . '" onchange="' . $onchange . '" title="' .
2004-08-01 17:36:04 +02:00
lang ( 'Select a %1' , lang ( $title )) . '">' .
$options . " </select> \n " ;
return array (
'text' => $select ,
'no_lang' => True ,
'link' => False
);
}
2005-11-09 00:15:14 +01:00
/**
* Generate a link to add an event , incl . the necessary popup
*
* @ param string $content content of the link
* @ param string $date = null which date should be used as start - and end - date , default null = $this -> date
* @ param int $hour = null which hour should be used for the start , default null = $this -> hour
* @ param int $minute = 0 start - minute
* @ return string the link incl . content
*/
function add_link ( $content , $date = null , $hour = null , $minute = 0 )
{
$vars = array (
'menuaction' => 'calendar.uiforms.edit' ,
'date' => $date ? $date : $this -> date ,
);
if ( ! is_null ( $hour ))
{
$vars [ 'hour' ] = $hour ;
$vars [ 'minute' ] = $minute ;
}
return $this -> html -> a_href ( $content , '/index.php' , $vars , ' target="_blank" title="' . $this -> html -> htmlspecialchars ( lang ( 'Add' )) .
'" onclick="' . $this -> popup ( 'this.href' , 'this.target' ) . '; return false;"' );
}
/**
* returns javascript to open a popup window : window . open ( ... )
*
* @ param string $link link or this . href
* @ param string $target = '_blank' name of target or this . target
* @ param int $width = 750 width of the window
* @ param int $height = 400 height of the window
* @ return string javascript ( using single quotes )
*/
function popup ( $link , $target = '_blank' , $width = 750 , $height = 410 )
{
return 'egw_openWindowCentered2(' . ( $link == 'this.href' ? $link : " ' " . $link . " ' " ) . ',' .
( $target == 'this.target' ? $target : " ' " . $target . " ' " ) . " , $width , $height ,'yes') " ;
return 'window.open(' . ( $link == 'this.href' ? $link : " ' " . $link . " ' " ) . ',' .
( $target == 'this.target' ? $target : " ' " . $target . " ' " ) . ',' .
" 'dependent=yes,width= $width ,height= $height ,scrollbars=yes,status=yes') " ;
}
2004-08-01 17:36:04 +02:00
/**
* creates the content for the sidebox - menu , called as hook
*/
function sidebox_menu ()
{
$base_hidden_vars = $link_vars = array ();
if ( @ $_POST [ 'keywords' ])
{
$base_hidden_vars [ 'keywords' ] = $_POST [ 'keywords' ];
}
$n = 0 ; // index for file-array
2005-11-09 00:15:14 +01:00
$planner_days_for_view = false ;
switch ( $this -> view )
{
case 'month' : $planner_days_for_view = 0 ; break ;
case 'week' : $planner_days_for_view = $this -> cal_prefs [ 'days_in_weekview' ] == 5 ? 5 : 7 ; break ;
case 'day' : $planner_days_for_view = 1 ; break ;
}
2004-08-01 17:36:04 +02:00
// Toolbar with the views
$views = '<table style="width: 100%;"><tr>' . " \n " ;
foreach ( array (
2005-11-09 00:15:14 +01:00
'add' => array ( 'icon' => 'new' , 'text' => 'add' ),
'day' => array ( 'icon' => 'today' , 'text' => 'Today' , 'menuaction' => 'calendar.uiviews.day' , 'date' => $this -> bo -> date2string ( $this -> bo -> now_su )),
'week' => array ( 'icon' => 'week' , 'text' => 'Weekview' , 'menuaction' => 'calendar.uiviews.week' ),
'month' => array ( 'icon' => 'month' , 'text' => 'Monthview' , 'menuaction' => 'calendar.uiviews.month' ),
2005-11-12 18:57:18 +01:00
'planner' => array ( 'icon' => 'planner' , 'text' => 'Group planner' , 'menuaction' => 'calendar.uiviews.planner' , 'sortby' => $this -> sortby ),
2005-11-09 00:15:14 +01:00
'list' => array ( 'icon' => 'list' , 'text' => 'Listview' , 'menuaction' => 'calendar.uilist.listview' ),
2004-08-01 17:36:04 +02:00
) as $view => $data )
{
2005-11-09 00:15:14 +01:00
$icon = array_shift ( $data );
$title = array_shift ( $data );
$vars = array_merge ( $link_vars , $data );
$icon = $this -> html -> image ( 'calendar' , $icon , lang ( $title ));
$link = $view == 'add' ? $this -> add_link ( $icon ) : $this -> html -> a_href ( $icon , '/index.php' , $vars );
$views .= '<td align="center">' . $link . " </a></td> \n " ;
2004-08-01 17:36:04 +02:00
}
$views .= " </tr></table> \n " ;
2005-11-09 00:15:14 +01:00
2004-08-01 17:36:04 +02:00
$file [ ++ $n ] = array ( 'text' => $views , 'no_lang' => True , 'link' => False , 'icon' => False );
// special views and view-options menu
$options = '' ;
foreach ( array (
array (
'text' => lang ( 'select one' ),
'value' => '' ,
'selected' => False ,
),
array (
'text' => lang ( 'dayview' ),
'value' => 'menuaction=calendar.uiviews.day' ,
2005-11-09 00:15:14 +01:00
'selected' => $_GET [ 'menuaction' ] == 'calendar.uiviews.day' ,
2004-08-01 17:36:04 +02:00
),
array (
2005-11-09 00:15:14 +01:00
'text' => lang ( 'weekview with weekend' ),
2004-08-01 17:36:04 +02:00
'value' => 'menuaction=calendar.uiviews.week&days=7' ,
'selected' => $_GET [ 'menuaction' ] == 'calendar.uiviews.week' && $this -> cal_prefs [ 'days_in_weekview' ] != 5 ,
),
array (
'text' => lang ( 'weekview without weekend' ),
'value' => 'menuaction=calendar.uiviews.week&days=5' ,
'selected' => $_GET [ 'menuaction' ] == 'calendar.uiviews.week' && $this -> cal_prefs [ 'days_in_weekview' ] == 5 ,
),
array (
'text' => lang ( 'monthview' ),
'value' => 'menuaction=calendar.uiviews.month' ,
'selected' => $_GET [ 'menuaction' ] == 'calendar.uiviews.month' ,
),
array (
'text' => lang ( 'planner by category' ),
2005-11-09 00:15:14 +01:00
'value' => 'menuaction=calendar.uiviews.planner&sortby=category' .
( $planner_days_for_view !== false ? '&planner_days=' . $planner_days_for_view : '' ),
'selected' => $_GET [ 'menuaction' ] == 'calendar.uiviews.planner' && $this -> sortby != 'user' ,
2004-08-01 17:36:04 +02:00
),
array (
'text' => lang ( 'planner by user' ),
2005-11-09 00:15:14 +01:00
'value' => 'menuaction=calendar.uiviews.planner&sortby=user' .
( $planner_days_for_view !== false ? '&planner_days=' . $planner_days_for_view : '' ),
'selected' => $_GET [ 'menuaction' ] == 'calendar.uiviews.planner' && $this -> sortby == 'user' ,
2004-08-01 17:36:04 +02:00
),
array (
2005-11-09 00:15:14 +01:00
'text' => lang ( 'listview' ),
'value' => 'menuaction=calendar.uilist.list' ,
'selected' => $_GET [ 'menuaction' ] == 'calendar.uilist.listview' ,
2004-08-01 17:36:04 +02:00
),
) as $data )
{
$options .= '<option value="' . $data [ 'value' ] . '"' . ( $data [ 'selected' ] ? ' selected="1"' : '' ) . '>' . $this -> html -> htmlspecialchars ( $data [ 'text' ]) . " </option> \n " ;
}
2005-11-09 00:15:14 +01:00
$file [ ++ $n ] = $this -> _select_box ( 'displayed view' , 'view' , $options , $GLOBALS [ 'egw' ] -> link ( '/index.php' ));
2004-08-01 17:36:04 +02:00
// Search
$blur = addslashes ( $this -> html -> htmlspecialchars ( lang ( 'Search' ) . '...' ));
2004-08-22 20:44:47 +02:00
$value = @ $_POST [ 'keywords' ] ? $this -> html -> htmlspecialchars ( $_POST [ 'keywords' ]) : $blur ;
2004-08-01 17:36:04 +02:00
$file [ ++ $n ] = array (
2005-11-09 00:15:14 +01:00
'text' => $this -> html -> form ( '<input name="keywords" value="' . $value . '" style="width: 185px;"' .
2004-08-01 17:36:04 +02:00
' onFocus="if(this.value==\'' . $blur . '\') this.value=\'\';"' .
' onBlur="if(this.value==\'\') this.value=\'' . $blur . '\';" title="' . lang ( 'Search' ) . '">' ,
2005-11-09 00:15:14 +01:00
'' , '/index.php' , array ( 'menuaction' => 'calendar.uilist.listview' )),
2004-08-01 17:36:04 +02:00
'no_lang' => True ,
'link' => False ,
);
// Minicalendar
2005-11-09 00:15:14 +01:00
$link = array ();
2004-08-01 17:36:04 +02:00
foreach ( array (
2005-11-09 00:15:14 +01:00
'day' => 'calendar.uiviews.day' ,
'week' => 'calendar.uiviews.week' ,
'month' => 'calendar.uiviews.month' ) as $view => $menuaction )
2004-08-01 17:36:04 +02:00
{
2005-11-09 00:15:14 +01:00
if ( $this -> view == 'planner' )
{
switch ( $view )
{
case 'day' : $link_vars [ 'planner_days' ] = 1 ; break ;
case 'week' : $link_vars [ 'planner_days' ] = $this -> cal_prefs [ 'days_in_weekview' ] == 5 ? 5 : 7 ; break ;
case 'month' : $link_vars [ 'planner_days' ] = 0 ; break ;
}
$link_vars [ 'menuaction' ] = $this -> view_menuaction ; // stay in the planner
}
elseif ( $this -> view == 'listview' )
{
$link_vars [ 'menuaction' ] = $this -> view_menuaction ; // stay in the listview
}
else
{
$link_vars [ 'menuaction' ] = $menuaction ;
}
2004-08-01 17:36:04 +02:00
unset ( $link_vars [ 'date' ]); // gets set in jscal
2005-11-09 00:15:14 +01:00
$link [ $view ] = $l = $GLOBALS [ 'egw' ] -> link ( '/index.php' , $link_vars );
2004-08-01 17:36:04 +02:00
}
2005-11-09 00:15:14 +01:00
$jscalendar = $GLOBALS [ 'egw' ] -> jscalendar -> flat ( $link [ 'day' ], $this -> date ,
2004-08-01 17:36:04 +02:00
$link [ 'week' ], lang ( 'show this week' ), $link [ 'month' ], lang ( 'show this month' ));
$file [ ++ $n ] = array ( 'text' => $jscalendar , 'no_lang' => True , 'link' => False , 'icon' => False );
// Category Selection
$file [ ++ $n ] = $this -> _select_box ( 'Category' , 'cat_id' ,
'<option value="0">' . lang ( 'All categories' ) . '</option>' .
2005-11-09 00:15:14 +01:00
$this -> cats -> formatted_list ( 'select' , 'all' , $this -> cat_id , 'True' ));
2004-08-01 17:36:04 +02:00
// we need a form for the select-boxes => insert it in the first selectbox
$file [ $n ][ 'text' ] = $this -> html -> form ( False , $base_hidden_vars , '/index.php' , array ( 'menuaction' => $_GET [ 'menuaction' ])) .
$file [ $n ][ 'text' ];
// Filter all or private
2005-11-09 00:15:14 +01:00
if ( is_numeric ( $this -> owner ) && $this -> bo -> check_perms ( EGW_ACL_PRIVATE , 0 , $this -> owner ))
2004-08-01 17:36:04 +02:00
{
$file [] = $this -> _select_box ( 'Filter' , 'filter' ,
'<option value=" all "' . ( $this -> filter == ' all ' ? ' selected="1"' : '' ) . '>' . lang ( 'No filter' ) . '</option>' . " \n " .
'<option value=" private "' . ( $this -> filter == ' private ' ? ' selected="1"' : '' ) . '>' . lang ( 'Private Only' ) . '</option>' . " \n " );
}
// Calendarselection: User or Group
2005-11-09 00:15:14 +01:00
if ( count ( $this -> bo -> grants ) > 0 && ( ! isset ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'deny_user_grants_access' ]) ||
! $GLOBALS [ 'egw_info' ][ 'server' ][ 'deny_user_grants_access' ]))
2004-08-01 17:36:04 +02:00
{
$grants = array ();
foreach ( $this -> bo -> list_cals () as $grant )
{
$grants [] = $grant [ 'grantor' ];
}
2005-11-09 00:15:14 +01:00
// exclude non-accounts from the account-selection
$accounts = array ();
foreach ( explode ( ',' , $this -> owner ) as $owner )
{
if ( is_numeric ( $owner )) $accounts [] = $owner ;
}
2004-08-29 22:32:56 +02:00
$file [] = array (
'text' => "
2004-08-01 17:36:04 +02:00
< script type = \ " text/javascript \" >
function load_cal ( url , id ) {
selectBox = document . getElementById ( id );
owner = '' ;
for ( i = 0 ; i < selectBox . length ; ++ i ) {
if ( selectBox . options [ i ] . selected ) {
owner += ( owner ? ',' : '' ) + selectBox . options [ i ] . value ;
}
}
if ( owner ) {
location = url + '&owner=' + owner ;
}
}
</ script >
" .
2005-11-09 00:15:14 +01:00
$this -> accountsel -> selection ( 'owner' , 'uical_select_owner' , $accounts , 'calendar+' , $this -> multiple ? 3 : 1 , False ,
' style="width: ' . ( $this -> multiple && $this -> common_prefs [ 'account_selection' ] == 'selectbox' ? 185 : 165 ) . 'px;"' .
2004-08-29 22:32:56 +02:00
' title="' . lang ( 'select a %1' , lang ( 'user' )) . '" onchange="load_cal(\'' .
2005-11-09 00:15:14 +01:00
$GLOBALS [ 'egw' ] -> link ( '/index.php' , array (
'menuaction' => $this -> view_menuaction ,
2004-08-29 22:32:56 +02:00
'date' => $this -> date ,
)) . '\',\'uical_select_owner\');"' , '' , $grants ),
'no_lang' => True ,
'link' => False
);
2004-08-01 17:36:04 +02:00
}
// Import & Export
2005-11-09 00:15:14 +01:00
$file [] = array (
'text' => lang ( 'Export' ) . ': ' . $this -> html -> a_href ( lang ( 'iCal' ), 'calendar.uiforms.export' , $this -> first ? array (
'start' => $this -> bo -> date2string ( $this -> first ),
'end' => $this -> bo -> date2string ( $this -> last ),
) : false ),
'no_lang' => True ,
'link' => False ,
);
$file [] = array (
'text' => lang ( 'Import' ) . ': ' . $this -> html -> a_href ( lang ( 'iCal' ), 'calendar.uiforms.import' ) .
' & ' . $this -> html -> a_href ( lang ( 'CSV' ), '/calendar/csv_import.php' ),
'no_lang' => True ,
'link' => False ,
);
/*
$print_functions = array (
'calendar.uiviews.day' => 'calendar.pdfcal.day' ,
'calendar.uiviews.week' => 'calendar.pdfcal.week' ,
);
if ( isset ( $print_functions [ $_GET [ 'menuaction' ]]))
{
$file [] = array (
'text' => 'pdf-export / print' ,
'link' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , array (
'menuaction' => $print_functions [ $_GET [ 'menuaction' ]],
'date' => $this -> date ,
)),
'target' => '_blank' ,
);
}
*/
2004-08-01 17:36:04 +02:00
// we need to set the sidebox-width a bit wider, as idots.css sets it to 147, to small for the jscal
// setting it to auto, uses the smallest possible size, but IE kills the jscal if the width is set to auto !!!
2005-11-09 00:15:14 +01:00
$width = 203 ;
2004-08-01 17:36:04 +02:00
echo ' < style >
. divSidebox
{
2005-11-09 00:15:14 +01:00
width : '.($this->html->user_agent == ' msie ' ? $width.' px ' : ' auto ; max - width : '.$width.' px ; ').' ;
2004-08-01 17:36:04 +02:00
}
</ style > ' . " \n " ;
2005-11-09 00:15:14 +01:00
$appname = 'calendar' ;
$menu_title = $GLOBALS [ 'egw_info' ][ 'apps' ][ $appname ][ 'title' ] . ' ' . lang ( 'Menu' );
2004-08-01 17:36:04 +02:00
display_sidebox ( $appname , $menu_title , $file );
echo " </form> \n " ;
2005-11-09 00:15:14 +01:00
// resources menu hooks
foreach ( $this -> bo -> resources as $resource )
{
if ( ! is_array ( $resource [ 'cal_sidebox' ])) continue ;
$menu_title = $resource [ 'cal_sidebox' ][ 'menu_title' ] ? $resource [ 'cal_sidebox' ][ 'menu_title' ] : lang ( $resource [ 'app' ]);
$file = ExecMethod ( $resource [ 'cal_sidebox' ][ 'file' ], $this -> view_menuaction , $this -> date );
display_sidebox ( $appname , $menu_title , $file );
}
2004-08-01 17:36:04 +02:00
2005-11-09 00:15:14 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'preferences' ])
2004-08-01 17:36:04 +02:00
{
$menu_title = lang ( 'Preferences' );
$file = Array (
2005-11-09 00:15:14 +01:00
'Calendar preferences' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , 'menuaction=preferences.uisettings.index&appname=calendar' ),
'Grant Access' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , 'menuaction=preferences.uiaclprefs.index&acl_app=calendar' ),
'Edit Categories' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , 'menuaction=preferences.uicategories.index&cats_app=calendar&cats_level=True&global_cats=True' ),
2004-08-01 17:36:04 +02:00
);
display_sidebox ( $appname , $menu_title , $file );
}
2005-11-09 00:15:14 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'admin' ])
2004-08-01 17:36:04 +02:00
{
$menu_title = lang ( 'Administration' );
$file = Array (
2005-11-09 00:15:14 +01:00
'Configuration' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , 'menuaction=admin.uiconfig.index&appname=calendar' ),
'Custom Fields' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , 'menuaction=admin.customfields.edit&appname=calendar' ),
'Holiday Management' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , 'menuaction=calendar.uiholiday.admin' ),
'Global Categories' => $GLOBALS [ 'egw' ] -> link ( '/index.php' , 'menuaction=admin.uicategories.index&appname=calendar' ),
2004-08-01 17:36:04 +02:00
);
display_sidebox ( $appname , $menu_title , $file );
}
}
}