source: branches/2.2/calendar/inc/class.uicalendar.inc.php @ 3396

Revision 3396, 193.0 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #1223 - Corrigida a apresentacao dos usuarios de um grupo no mapa de disponibilidade

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2  /**************************************************************************\
3  * eGroupWare - Calendar                                                    *
4  * http://www.eGroupWare.org                                                *
5  * Maintained and further developed by RalfBecker@outdoor-training.de       *
6  * Based on Webcalendar by Craig Knudsen <cknudsen@radix.net>               *
7  *          http://www.radix.net/~cknudsen                                  *
8  * Originaly modified by Mark Peters <skeeter@phpgroupware.org>             *
9  * --------------------------------------------                             *
10  *  This program is free software; you can redistribute it and/or modify it *
11  *  under the terms of the GNU General Public License as published by the   *
12  *  Free Software Foundation; either version 2 of the License, or (at your  *
13  *  option) any later version.                                              *
14  \**************************************************************************/
15
16
17        class uicalendar
18        {
19                var $template;
20                var $template_dir;
21
22                var $bo;
23                var $cat;
24
25                var $holidays;
26                var $holiday_color;
27
28                var $debug = False;
29                //var $debug = True;
30
31                var $cat_id;
32                var $theme;
33                var $link_tpl;
34
35                // planner related variables
36                var $planner_header;
37                var $planner_rows;
38
39                var $planner_group_members;
40
41                var $planner_firstday;
42                var $planner_lastday;
43                var $planner_days;
44
45                var $planner_end_month;
46                var $planner_end_year;
47                var $planner_days_in_end_month;
48
49                var $planner_intervals = array( // conversation hour and interval depending on intervals_per_day
50                                        //                                  1 1 1 1 1 1 1 1 1 1 2 2 2 2
51                                        //              0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
52                                                '1' => array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), // 0=0-23h
53                                                '2' => array(0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0), // 0=0-12h, 1=12-23h
54                                                '3' => array(0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2), // 0=0-12h, 2=12-18h, 3=18-23h
55                                                '4' => array(0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,3,3)  // 0=0-7, 7-12h, 3=12-18h, 4=18-23h
56                                        );
57
58                var $public_functions = array(
59                        'screen_delegate_event' => True,
60                        'delegate_event' => True,
61                        'mini_calendar' => True,
62                        'index' => True,
63                        'month' => True,
64                        'get_month' => True,
65                        'week'  => True,
66                        'get_week' => True,
67                        'year' => True,
68                        'view' => True,
69                        'edit' => True,
70                        'export'        => True,
71                        'export_all' => True,
72                        'reinstate_list'        => True,
73                        'reinstate'     => True,
74                        'add'  => True,
75                        'delete' => True,
76                        'preferences' => True,
77                        'day' => True,
78                        'edit_status' => True,
79                        'set_action' => True,
80                        'planner' => True,
81                        'modify_ext_partlist' => True,
82                        'matrixselect'  => True,
83                        'viewmatrix'    => True,
84                        'search' => True,
85                        'header' => True,
86                        'footer' => True,
87                        'css'           => True,
88                        'accounts_popup' => True,
89                        'disponibility' => True
90                );
91
92                function uicalendar()
93                {
94                        $GLOBALS['phpgw']->nextmatchs = CreateObject('phpgwapi.nextmatchs');
95                        $GLOBALS['phpgw']->browser    = CreateObject('phpgwapi.browser');
96
97                        $this->theme = $GLOBALS['phpgw_info']['theme'];
98
99                        $this->bo = CreateObject('calendar.bocalendar',1);
100                        $this->cat = &$this->bo->cat;
101
102                        print_debug('BO Owner',$this->bo->owner);
103
104                        $this->template = $GLOBALS['phpgw']->template;
105                        $this->template_dir = $GLOBALS['phpgw']->common->get_tpl_dir('calendar');
106
107                        $this->holiday_color = (substr($this->theme['bg06'],0,1)=='#'?'':'#').$this->theme['bg06'];
108
109                        $this->cat_id   = $this->bo->cat_id;
110
111                        $this->link_tpl = CreateObject('phpgwapi.Template',$this->template_dir);
112                        $this->link_tpl->set_unknowns('remove');
113                        $this->link_tpl->set_file(
114                                Array(
115                                        'link_picture'  => 'link_pict.tpl'
116                                )
117                        );
118                        $this->link_tpl->set_block('link_picture','link_pict','link_pict');
119                        $this->link_tpl->set_block('link_picture','pict','pict');
120                        $this->link_tpl->set_block('link_picture','link_open','link_open');
121                        $this->link_tpl->set_block('link_picture','link_close','link_close');
122                        $this->link_tpl->set_block('link_picture','link_text','link_text');
123                       
124                        /*************** EVENTO **************************/
125/* Este bloco de codigo foi adicionado pois os eventos de agendamento (exibicao do mes) para impressao serao tratados em outro template
126(event_link.tpl) */
127
128                        $this->event_tpl = CreateObject('phpgwapi.Template',$this->template_dir);
129                        $this->event_tpl = CreateObject('phpgwapi.Template',$this->template_dir);
130                        $this->event_tpl->set_unknowns('remove');
131                        $this->event_tpl->set_file(
132                                Array(
133                                        'link_event'    => 'event_link.tpl'
134                                )
135                        );
136                        $this->event_tpl->set_block('link_event','link_event_pict','link_event_pict');
137                        $this->event_tpl->set_block('link_event','event_pict','event_pict');
138                        $this->event_tpl->set_block('link_event','link_event_open','link_event_open');
139                        $this->event_tpl->set_block('link_event','link_event_close','link_event_close');
140                        $this->event_tpl->set_block('link_event','link_event_text','link_event_text');
141
142
143/*************************************************/
144
145                        if($this->bo->use_session)
146                        {
147                                // save return-fkt for add, view, ...
148                                list(,,$fkt) = explode('.',$_GET['menuaction']);
149                                if ($fkt == 'day' || $fkt == 'week' || $fkt == 'month' || $fkt == 'year' || $fkt == 'planner')
150                                {
151                                        $this->bo->return_to = $_GET['menuaction'].
152                                                sprintf('&date=%04d%02d%02d',$this->bo->year,$this->bo->month,$this->bo->day);
153                                }
154                                $this->bo->save_sessiondata();
155                        }
156                        $this->always_app_header = $this->bo->prefs['common']['template_set'] == 'idots';
157
158                        print_debug('UI',$this->_debug_sqsof());
159
160                        if (!is_object($GLOBALS['phpgw']->html))
161                        {
162                                $GLOBALS['phpgw']->html = CreateObject('phpgwapi.html');
163                        }
164                        $this->html = &$GLOBALS['phpgw']->html;
165                }
166
167                function screen_delegate_event($params=NULL) {
168                        $module_name = 'expressoMail'.(str_replace("1.","1_",$GLOBALS['phpgw_info']['server']['cal_expressoMail']));
169
170                        $sb = CreateObject('phpgwapi.sbox2');
171                        $jscal = CreateObject('phpgwapi.jscalendar');   // before phpgw_header() !!!
172                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
173                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
174                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
175                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
176                        $GLOBALS['phpgw_info']['flags']['app_header'] = $event['id'] ? lang('Calendar - Edit') : lang('Calendar - Add');
177                        $GLOBALS['phpgw']->common->phpgw_header();
178
179                        $ldap_manager = CreateObject('contactcenter.bo_ldap_manager');
180                        $_SESSION['phpgw_info']['expressomail']['user'] = $GLOBALS['phpgw_info']['user'];
181                        $_SESSION['phpgw_info']['expressomail']['user']['owner'] = $event['owner'];
182                        $_SESSION['phpgw_info']['expressomail']['server'] = $GLOBALS['phpgw_info']['server'];
183                        $_SESSION['phpgw_info']['expressomail']['ldap_server'] = $ldap_manager ? $ldap_manager->srcs[1] : null;
184                        $context = $GLOBALS['phpgw_info']['server']['ldap_context'];
185                        $user_context = array();
186                        foreach(explode(",",$GLOBALS['phpgw_info']['user']['account_dn']) as $i => $dn_part){
187                                if($i)
188                                        $user_context[] = $dn_part;
189                        }
190                        // Prepara o contexto do usuario com sua OU raiz, pois ele pode pertencer a uma OU de nivel N.
191                        $user_ou = explode(",",str_replace($context,"",implode(",",$user_context)));
192                        $user_context = trim(strtolower($user_ou[count($user_ou) - 2].",".$context));
193                        // Fim
194                        // Verifica o tipo da visualização da árvore LDAP, configurado no admin da Agenda
195                        $recursive = $GLOBALS['phpgw_info']['server']['cal_type_tree_participants'] == '1' ? true : false;
196                        $combo_org = $this->get_organizations(trim(strtolower($context)),$user_context, $recursive);
197
198                        $var = array(
199                                "module_name"           => $module_name,
200                                "lang_loading"          => lang("Loading"),
201                                "lang_searching"        => lang("Searching"),
202                                "lang_users"            => lang("Users"),
203                                "lang_groups"           => lang("Groups"),
204                                "recursive"             => ($recursive)?"":"search",
205                                "options"               => $combo_org,
206                                "id_event"              => $_REQUEST["id_event"],
207                                "eventArray"            => $_REQUEST["eventArray"],
208                                "delegator"             => $_REQUEST["delegator"],
209                                "lang_avaliable_users"  => lang("Available Users and Groups"),
210                                "lang_search_for"       => lang("Search for"),
211                                "lang_ou"               => lang("Organization"),
212                                "min_num_characters"    => $GLOBALS['phpgw_info']['server']['min_num_characters'],
213                                "date"                  => $_REQUEST["date"],
214                                "eventDelegation"       => 1,
215                                "Delegate"              => lang("Delegate"),
216                                'url_template'          => 'calendar/templates/'.$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set']
217                        );
218
219                        if(isset($_REQUEST["error"]))
220                        {
221                                if($_REQUEST["error"] == 999){
222                                        $var['error_msg'] = lang("Problems delegating. Make sure you have selected a user to delegate the appointment.");
223                                }else {
224                                        $var['error_msg'] = lang("Problems delegating. Make sure you haven't delegated to a person that was also invited to the meeting");
225                                }
226                        }
227
228                        $template = CreateObject('phpgwapi.Template',$this->template_dir);
229                        $template->set_file(
230                                        array(
231                                                "screen"=>"delegate.tpl"
232                                        )
233                                );
234                        $template->set_var($var);
235                        print $template->fp('out','screen');
236                }
237
238
239                function delegate_event($params=NULL) {
240                        $ldap = CreateObject('expressoMail1_2.ldap_functions');
241                        $delegated = $ldap->uid2uidnumber($_REQUEST['delegated']);
242
243                        try {
244                                $this->bo->delegar($_REQUEST['delegator'],$ldap->uid2uidnumber($_REQUEST['delegated'])/*$delegated*/,$_REQUEST['event']);
245                                header("Location: index.php?menuaction=calendar.uicalendar.day&date=".$_REQUEST['date']);
246                        }catch(Exception $e) {
247                                if($e->getMessage() == '999') {
248                                        header("Location: index.php?menuaction=calendar.uicalendar.screen_delegate_event&id_event=". $_REQUEST["event"]."&delegator=".$_REQUEST["delegator"]."&date=".$_REQUEST["date"]."&error=999");
249                                }else {
250                                        header("Location: index.php?menuaction=calendar.uicalendar.screen_delegate_event&id_event=". $_REQUEST["event"]."&delegator=".$_REQUEST["delegator"]."&date=".$_REQUEST["date"]."&error=1");
251                                }
252                        }
253                }
254
255                /* Public functions */
256
257                function mini_calendar($params)
258                {
259                        static $mini_cal_tpl;
260                        if(!is_array($params))
261                        {
262                                return;
263                        }
264
265                        if($params['month'] == 0)
266                        {
267                                $params['month'] = 12;
268                                $params['year'] = $params['year'] - 1;
269                        }
270                        elseif($params['month'] == 13)
271                        {
272                                $params['month'] = 1;
273                                $params['year'] = $params['year'] + 1;
274                        }
275
276                        $this->bo->store_to_cache(
277                                Array(
278                                        'smonth'        => $params['month'],
279                                        'sday'  => 1,
280                                        'syear' => $params['year']
281                                )
282                        );
283
284                        $params['link']                 = (!isset($params['link'])?'':$params['link']);
285                        $params['buttons']              = (!isset($params['buttons'])?'none':$params['buttons']);
286                        $params['outside_month']        = (!isset($params['outside_month'])?True:$params['outside_month']);
287
288                        $this->bo->read_holidays($params['year']);
289
290                        $date = $GLOBALS['phpgw']->datetime->makegmttime(0,0,0,$params['month'],$params['day'],$params['year']);
291                        $month_ago = (int)(date('Ymd',mktime(0,0,0,$params['month'] - 1,$params['day'],$params['year'])));
292                        $month_ahead = (int)(date('Ymd',mktime(0,0,0,$params['month'] + 1,$params['day'],$params['year'])));
293                        $monthstart = (int)(date('Ymd',mktime(0,0,0,$params['month'],1,$params['year'])));
294                        $monthend = (int)(date('Ymd',mktime(0,0,0,$params['month'] + 1,0,$params['year'])));
295
296                        $weekstarttime = $GLOBALS['phpgw']->datetime->get_weekday_start($params['year'],$params['month'],1);
297
298                        print_debug('mini_calendar:monthstart',$monthstart);
299                        print_debug('mini_calendar:weekstarttime',date('Ymd H:i:s',$weekstarttime));
300
301                        if(!is_object($mini_cal_tpl))
302                        {
303                                $mini_cal_tpl = CreateObject('phpgwapi.Template',$this->template_dir);
304                                $mini_cal_tpl->set_unknowns('remove');
305                                $mini_cal_tpl->set_file(
306                                        Array(
307                                                'mini_calendar' => 'mini_cal.tpl'
308                                        )
309                                );
310                                $mini_cal_tpl->set_block('mini_calendar','mini_cal','mini_cal');
311                                $mini_cal_tpl->set_block('mini_calendar','mini_week','mini_week');
312                                $mini_cal_tpl->set_block('mini_calendar','mini_day','mini_day');
313                        }
314
315
316                        if($this->bo->printer_friendly == False)
317                        {
318//NDEE                          $month = '<a href="' . $this->page('month','&month='.$GLOBALS['phpgw']->common->show_date($date['raw'],'m').'&year='.$GLOBALS['phpgw']->common->show_date($date['raw'],'Y')). '" class="_minicalendar">' . lang($GLOBALS['phpgw']->common->show_date($date['raw'],'F')).' '.$GLOBALS['phpgw']->common->show_date($date['raw'],'Y').'</a>';
319                                $month = '<a href="' . $this->page('month','&month='.$GLOBALS['phpgw']->common->show_date($date['raw'],'m').'&year='.$GLOBALS['phpgw']->common->show_date($date['raw'],'Y')). '">' . lang($GLOBALS['phpgw']->common->show_date($date['raw'],'F')).' '.$GLOBALS['phpgw']->common->show_date($date['raw'],'Y').'</a>';
320                        }
321                        else
322                        {
323                                $month = lang($GLOBALS['phpgw']->common->show_date($date['raw'],'F')).' '.$GLOBALS['phpgw']->common->show_date($date['raw'],'Y');
324                        }
325
326                        $var = Array(
327                                'cal_img_root'          =>      $GLOBALS['phpgw']->common->image('calendar','mini-calendar-bar'),
328                                'bgcolor'                       =>      $this->theme['bg_color'],
329                                'bgcolor1'                      =>      $this->theme['bg_color'],
330                                'month'                         =>      $month,
331                                'bgcolor2'                      =>      $this->theme['cal_dayview'],
332                                'holiday_color' => $this->holiday_color
333                        );
334
335                        $mini_cal_tpl->set_var($var);
336
337                        switch(strtolower($params['buttons']))
338                        {
339                                case 'right':
340                                        $var = Array(
341                                                'nextmonth'                     =>      '<a href="'.$this->page('month','&date='.$month_ahead).'"><img src="'.$GLOBALS['phpgw']->common->image('phpgwapi','right').'" border="0"></a>'
342                                        );
343                                        break;
344                                case 'left':
345                                        $var = Array(
346                                                'prevmonth'                     =>      '<a href="'.$this->page('month','&date='.$month_ago).'"><img src="'.$GLOBALS['phpgw']->common->image('phpgwapi','left').'" border="0"></a>'
347                                        );
348                                        break;
349                                case 'both':
350                                        $var = Array(
351                                                'prevmonth'                     =>      '<a href="'.$this->page('month','&date='.$month_ago).'"><img src="'.$GLOBALS['phpgw']->common->image('phpgwapi','left').'" border="0"></a>',
352                                                'nextmonth'                     =>      '<a href="'.$this->page('month','&date='.$month_ahead).'"><img src="'.$GLOBALS['phpgw']->common->image('phpgwapi','right').'" border="0"></a>'
353                                        );
354                                        break;
355                                case 'none':
356                                default:
357                                        $var = Array(
358                                                'prevmonth'                     =>      '',
359                                                'nextmonth'                     =>      ''
360                                        );
361                                        break;
362                        }
363                        $mini_cal_tpl->set_var($var);
364
365                        if(!$mini_cal_tpl->get_var('daynames'))
366                        {
367                                for($i=0;$i<7;$i++)
368                                {
369                                        $var = Array(
370                                                'dayname'       => '<b>' . lang($GLOBALS['phpgw']->datetime->days_short[$i]) . '</b>',
371                                                'day_image'     => ''
372                                        );
373                                        $this->output_template_array($mini_cal_tpl,'daynames','mini_day',$var);
374                                }
375                        }
376                        $today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
377                        unset($date);
378                        for($i=$weekstarttime + $GLOBALS['phpgw']->datetime->tz_offset;date('Ymd',$i)<=$monthend;$i += (24 * 3600 * 7))
379                        {
380                                unset($var);
381                                $daily = $this->set_week_array($i - $GLOBALS['phpgw']->datetime->tz_offset,$cellcolor,$weekly);
382                                foreach($daily as $date => $day_params)
383                                {
384                                        print_debug('Mini-Cal Date',$date);
385                                        $year = (int)(substr($date,0,4));
386                                        $month = (int)(substr($date,4,2));
387                                        $day = (int)(substr($date,6,2));
388                                        $str = '';
389                                        if(($date >= $monthstart && $date <= $monthend) || $params['outside_month'] == True)
390                                        {
391                                                if(!$this->bo->printer_friendly && $params['link'])
392                                                {
393//NDEE: class def what for?
394                                                        $str = '<a href="'.$this->page($params['link'],'&date='.$date).'" class="'.$day_params['class'].'">'.$day.'</a>';
395                                                }
396                                                else
397                                                {
398
399//NDEE: printer-friendly (mini-calendar)
400                                                        $str = $day;
401                                                }
402
403                                        }
404                                        else
405                                        {
406                                                $day_params['day_image'] = '';
407                                        }
408                                        $var[] = Array(
409                                                'day_image'     => $day_params['day_image'],
410                                                'dayname'       => $str
411                                        );
412                                }
413                                for($l=0;$l<count($var);$l++)
414                                {
415                                        $this->output_template_array($mini_cal_tpl,'monthweek_day','mini_day',$var[$l]);
416                                }
417                                $mini_cal_tpl->parse('display_monthweek','mini_week',True);
418                                $mini_cal_tpl->set_var('dayname','');
419                                $mini_cal_tpl->set_var('monthweek_day','');
420                        }
421
422                        $return_value = $mini_cal_tpl->fp('out','mini_cal');
423                        $mini_cal_tpl->set_var('display_monthweek','');
424//                      $mini_cal_tpl->set_var('daynames','');
425//                      unset($p);
426                        return $return_value;
427                }
428
429                function index($params='')
430                {
431                        if (!$params)
432                        {
433                                foreach(array('date','year','month','day') as $field)
434                                {
435                                        if (isset($_GET[$field]))
436                                        {
437                                                $params[$field] = $_GET[$field];
438                                        }
439                                }
440                        }
441                        $GLOBALS['phpgw']->redirect($this->page('',$params));
442                       
443                }
444
445
446
447// NDEE: printer-friendly
448
449                function printer_friendly($body,$app_header='')
450                {
451                        $_SESSION['calendar']['categories'] = $this->cat->formated_list('select','all',$this->bo->cat_id,'True');
452                        if((!isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) || !$GLOBALS['phpgw_info']['server']['deny_user_grants_access']) && count($this->bo->grants) > 0)
453                                $_SESSION['calendar']['cals'] = $this->bo->list_cals();
454
455                        if($this->bo->printer_friendly || $_GET['plain'] == 'True')
456                        {       
457                                $new_body = '<html>'."\n"
458                                        .'<head>'."\n"
459                                        .'<LINK href="'.$GLOBALS['phpgw_info']['server']['webserver_url'].'/calendar/templates/'.$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set'].'/app.css" type=text/css rel=StyleSheet>'."\n"
460                                        .'<LINK href="'.$GLOBALS['phpgw_info']['server']['webserver_url'].'/calendar/templates/'.$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set'].'/app_print.css" type=text/css rel=StyleSheet media="print">'."\n"
461                                        .'</head>
462                                        <table id="calendar_print_main" class="calendar_print_main">                                           
463                                                <tr>
464                                                        <td id="calendar_print_content" class="calendar_print_content">'.$body.'</td>
465                                                </tr>
466                                                <tr>
467                                                  <td>
468                                                        <div>
469                                                                <input class=button type="button" onClick="javascript:this.style.visibility=\'hidden\';window.print();window.close();" value="Imprimir esta p&aacute;gina">
470                                                        </div>
471                                                   </td>
472                                                 </tr>
473                                        </table></body>'."\n"
474                                        .'</html>'."\n";
475                                //$new_body = utf8_decode($new_body);
476                        }
477                        else
478                        {
479                                unset($GLOBALS['phpgw_info']['flags']['noheader']);
480                                unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
481                                unset($GLOBALS['phpgw_info']['flags']['noappheader']);
482                                unset($GLOBALS['phpgw_info']['flags']['noappfooter']);
483                                if ($app_header && $this->always_app_header)
484                                {
485                                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.$app_header;
486                                }
487                               
488                                $GLOBALS['phpgw']->common->phpgw_header();
489                                $new_body = $this->bo->debug_string.$body;                             
490                               
491                        }
492                        return $new_body;
493                }
494
495                function month()
496                {
497                        echo $this->printer_friendly($this->get_month(),lang('Monthview'));
498                        $GLOBALS['phpgw']->common->phpgw_footer();
499                }
500
501                function get_month()
502                {
503                        $m = mktime(0,0,0,$this->bo->month,1,$this->bo->year);
504
505                        $next = $this->bo->month + 1;
506                        $prev = $this->bo->month - 1;
507                        $nextyear = $this->bo->year;
508                        $prevyear = $this->bo->year;
509                        if ($this->bo->month == 12)
510                        {
511                                $next = 1;
512                                $nextyear = $nextyear + 1;
513                        }
514                        elseif ($this->bo->month == 1)
515                        {
516                                $prev = 12;
517                                $prevyear = $prevyear - 1;
518                        }
519
520                        if (isset($this->bo->prefs['calendar']['display_minicals']) && $this->bo->prefs['calendar']['display_minicals'] == "1" && !$this->bo->printer_friendly)
521                        {
522                                $minical_prev = $this->mini_calendar(
523                                        Array(
524                                                'day'   => 1,
525                                                'month' => $this->bo->month - 1,
526                                                'year'  => $this->bo->year,
527                                                'link'  => 'day',
528                                                'outside_month' => False
529                                        )
530                                );
531
532                                $minical_next = $this->mini_calendar(
533                                        Array(
534                                                'day'   => 1,
535                                                'month' => $this->bo->month + 1,
536                                                'year'  => $this->bo->year,
537                                                'link'  => 'day',
538                                                'outside_month' => False
539                                        )
540                                );
541                        }
542                        else
543                        {
544                                $minical_prev = '';
545                                $minical_next = '';
546                        }
547
548                        if($_POST['year']) {                   
549       
550                        }
551                       
552                        $hoje = date('Ymd',$GLOBALS['phpgw']->datetime->gmtnow);
553                        $mes_hoje = (int)substr($hoje,4,2);
554                        $sday = 1;
555                        if($_POST['day']) {
556                                $day_ini = (int)$_POST['day'];
557                        }
558                        elseif($_GET['sday']){
559                                if($_GET['month'] == $mes_hoje)
560                                {
561                                        $day_ini = $this->bo->day;
562                                }
563                               
564                                else
565                                {
566                                        $day_ini = (int)$_GET['sday'];
567                                }
568                        }
569                        elseif( ($_POST['dia_ini']) && ($_POST['dia_ini'] == $this->bo->day) )
570                        {
571                                $day_ini = (int)substr($hoje,6,2);
572                        }
573                        else
574                        {
575                                $day_ini = $this->bo->day;
576                        }
577                        if($_POST['qtd_dias'])
578                        {
579                                $num_dias = (int)$_POST['qtd_dias'];
580                        }
581                        else
582                        {
583                                $num_dias = 0;
584                        }
585
586                        if (!$this->bo->printer_friendly)
587                        {
588                                $printer = '';
589                                $prev_month_link = '<a href="'.$this->page('month','&year='.$prevyear.'&month='.$prev.'&sday='.$sday).'">&lt;&lt;</a>';
590                                $next_month_link = '<a href="'.$this->page('month','&year='.$nextyear.'&month='.$next.'&sday='.$sday).'">&gt;&gt;</a>';
591                                $param = '&year='.$this->bo->year.'&month='.$this->bo->month.'&friendly=1'.'&day_ini='.$day_ini.'&num_dias='.$num_dias;
592                                //$param = '&year='.$this->bo->year.'&month='.$this->bo->month.'&friendly=1';
593                                $print = lang('Printer Friendly').": <a href='javascript:void(0)' onClick=\"javascript:window.open('".$this->page('month'.$param.'&classic_print=1').
594                                                "','','width=600,height=600,toolbar=no,scrollbars=yes,resizable=no');\" onMouseOver=\"window.status = '".
595                                                lang('columns')."'\">[".lang('columns')."]</a> | <a href='javascript:void(0)' onClick=\"javascript:window.open('".$this->page('month'.$param.'&classic_print=0').
596                                                "','','width=600,height=600,toolbar=no,scrollbars=yes,resizable=no');\" onMouseOver=\"window.status = '".
597                                                lang('lines')."'\">[".lang('lines')."]</a>";
598                                //linha abaixo foi adicionada para exibir a pagina do mes em tela
599                                $large_month = $this->display_month($this->bo->month,$this->bo->year,True,$this->bo->owner);                           
600                        }
601                        else
602                        {
603                                $printer = '<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">';
604                                $prev_month_link = '';
605                                $next_month_link = '';
606                                $print =        '';
607                                $GLOBALS['phpgw_info']['flags']['nofooter'] = True;
608                                //linha abaixo foi adicionada para exibir a pagina do mes para impressao
609
610                                if($_GET['classic_print']==1)
611                                        $large_month = $this->display_month($this->bo->month,$this->bo->year,True,$this->bo->owner);
612                                else
613                                        $large_month = $this->display_month_print($this->bo->month,$this->bo->year,True,$this->bo->owner);
614                        }
615
616                        $this->bo->read_holidays();
617
618                        $var = Array(
619                                'printer_friendly'              =>      $printer,
620                                'bg_text'                                       => $this->theme['bg_text'],
621                                'small_calendar_prev'   =>      $minical_prev,
622                                'prev_month_link'               =>      $prev_month_link,
623                                'month_identifier'              =>      lang(strftime("%B",$m)).' '.$this->bo->year,
624                                'username'                                      =>      $GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner),
625                                'next_month_link'               =>      $next_month_link,
626                                'small_calendar_next'   =>      $minical_next,
627                                //'large_month'                         =>      $this->display_month($this->bo->month,$this->bo->year,True,$this->bo->owner),
628                                'large_month'           =>      $large_month,
629                                'print'                                         =>      $print
630                        );
631
632                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
633                        $p->set_unknowns('remove');
634                        // Alteracao que desvincula o template para tela do template de impressao do mes (month_print teve que ser criado);
635                        if($print != '')
636                        {
637                                $p->set_file(
638                                        Array(
639                                                'index_t'       =>      'index.tpl'
640                                        )
641                                );
642                        }else {
643                                $p->set_file(
644                                        Array(
645                                                'index_t'       =>      'month_print.tpl'
646                                        )
647                                );
648                        }
649                        $p->set_var($var);
650                        return $p->fp('out','index_t');
651                }
652
653                function week()
654                {
655                        echo $this->printer_friendly($this->get_week(),lang('Weekview'));
656                        $GLOBALS['phpgw']->common->phpgw_footer();
657                }
658
659                function get_week()
660                {
661                        $this->bo->read_holidays();
662
663                        $next = $GLOBALS['phpgw']->datetime->makegmttime(0,0,0,$this->bo->month,$this->bo->day + 7,$this->bo->year);
664                        $prev = $GLOBALS['phpgw']->datetime->makegmttime(0,0,0,$this->bo->month,$this->bo->day - 7,$this->bo->year);
665
666                        if (isset($this->bo->prefs['calendar']['display_minicals']) && $this->bo->prefs['calendar']['display_minicals'] == "1" && !$this->bo->printer_friendly)
667                        {
668                                $minical_this = $this->mini_calendar(
669                                        Array(
670                                                'day'   => $this->bo->day,
671                                                'month' => $this->bo->month,
672                                                'year'  => $this->bo->year,
673                                                'link'  => 'day',
674                                                'butons'        => 'none',
675                                                'outside_month' => False
676                                        )
677                                );
678                                $minical_prev = $this->mini_calendar(
679                                        Array(
680                                                'day'   => $this->bo->day,
681                                                'month' => $this->bo->month - 1,
682                                                'year'  => $this->bo->year,
683                                                'link'  => 'day',
684                                                'butons'        => 'left',
685                                                'outside_month' => False
686                                        )
687                                );
688                                $minical_next = $this->mini_calendar(
689                                        Array(
690                                                'day'   => $this->bo->day,
691                                                'month' => $this->bo->month + 1,
692                                                'year'  => $this->bo->year,
693                                                'link'  => 'day',
694                                                'butons'        => 'right',
695                                                'outside_month' => False
696                                        )
697                                );
698                        }
699                        else
700                        {
701
702                        //NDEE: printer-friendly what?
703                                $minical_this = '';
704                                $minical_prev = '';
705                                $minical_next = '';
706                        }
707
708                        if (!$this->bo->printer_friendly)
709                        {
710                                $printer = '';
711                                $prev_week_link = '<a href="'.$this->page('week','&date='.$prev['full']).'">&lt;&lt;</a>';
712                                $next_week_link = '<a href="'.$this->page('week','&date='.$next['full']).'">&gt;&gt;</a>';
713                                $print = '<a href="'.$this->page('week','&friendly=1&date='.sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day))."\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window.status = '".lang('Generate printer-friendly version')."'\">[".lang('Printer Friendly').']</a>';
714                        }
715                        else
716                        {
717
718                                //NDEE: printer-friendly (weekly-view)
719                                $printer = '<body bgcolor="'.$this->theme['bg_color'].'">';
720                                $prev_week_link = '';
721                                $next_week_link = '';
722                                $print =        '';
723                                $GLOBALS['phpgw_info']['flags']['nofooter'] = True;
724                        }
725
726                        $var = Array(
727                                'printer_friendly'      =>      $print,
728                                'bg_text'               => $this->theme['bg_text'],
729                                'small_calendar_prev'   =>      $minical_prev,
730                                'prev_week_link'        =>      $prev_week_link,
731                                'small_calendar_this'   =>      $minical_this,
732                                'week_identifier'       =>      $this->bo->get_week_label(),
733                                'next_week_link'        =>      $next_week_link,
734                                'username'              =>      $GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner),
735                                'small_calendar_next'   =>      $minical_next,
736                                'week_display'          =>      $this->display_weekly(
737                                        Array(
738                                                'date'          => sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day),
739                                                'showyear'      => true,
740                                                'owners'        => $this->bo->owner
741                                        )
742                                ),
743                                'print'                 =>      $print
744                        );
745                        //todo
746                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
747                        $p->set_file(
748                                Array(
749                                        'week_t' => 'week.tpl'
750                                )
751                        );
752                        $p->set_var($var);
753                        return $p->fp('out','week_t');
754
755                }
756
757                function year()
758                {
759                        if ($_GET['plain'] == "True")
760                        {
761
762                                echo $this->printer_friendly($this->get_year(),lang('Yearview'));
763                        }
764                        else
765                        {
766
767                                if($this->bo->printer_friendly)
768                                {
769                                        $GLOBALS['phpgw_info']['flags']['nofooter'] = True;
770                                }
771                                echo $this->printer_friendly($this->get_year(),lang('Yearview'));
772                                $GLOBALS['phpgw']->common->phpgw_footer();
773                        }
774                }
775
776                function get_year()
777                {
778                        if(!$this->bo->printer_friendly)
779                        {
780                                $print = '';
781                                $left_link = '<a href="'.$this->page('year','&year='.($this->bo->year - 1)).'">&lt;&lt;</a>';
782                                $right_link = '<a href="'.$this->page('year','&year='.($this->bo->year + 1)).'">&gt;&gt;</a>';
783                                $link = 'day';
784                                $printer = '<a href="'.$this->page('year','&friendly=1&year='.$this->bo->year).'" target="cal_printer_friendly" onMouseOver="window.status = '."'".lang('Generate printer-friendly version')."'".'">['.lang('Printer Friendly').']</a>';
785                        }
786                        else
787                        {
788//NDEE: printer-friendly (year-view)
789                                $print = '<body bgcolor="'.$this->theme['bg_color'].'">';
790                                $left_link = '';
791                                $right_link = '';
792                                $link = '';
793                                $printer = '';
794                        }
795
796                        $var = Array(
797                                'print'         => $print,
798                                'left_link' => $left_link,
799                                'font'          => $this->theme['font'],
800                                'year_text' => $this->bo->year,
801                                'right_link'=> $right_link,
802                                'printer_friendly'=> $printer
803                        );
804
805                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
806                        $p->set_file(
807                                Array(
808                                        'year_t' => 'year.tpl'
809                                )
810                        );
811                        $p->set_block('year_t','year','year');
812                        $p->set_block('year_t','month','month_handle');
813                        $p->set_block('year_t','month_sep','month_sep_handle');
814                        $p->set_var($var);
815
816                        for($i=1;$i<=12;$i++)
817                        {
818                                if(($i % 3) == 1)
819                                {
820                                        $p->parse('row','month_sep',True);
821                                }
822                                $p->set_var('mini_month',$this->mini_calendar(
823                                                Array(
824                                                        'day'   => 1,
825                                                        'month' => $i,
826                                                        'year'  => $this->bo->year,
827                                                        'link'  => $link,
828                                                        'buttons'       => 'none',
829                                                        'outside_month' => False
830                                                )
831                                        )
832                                );
833                                $p->parse('row','month',True);
834                                $p->set_var('mini_month','');
835                        }
836                        return $p->fp('out','year_t');
837                }
838
839                function view($vcal_id=0,$cal_date=0)
840                {
841                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
842                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
843                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('View');
844                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
845                        $GLOBALS['phpgw']->common->phpgw_header();
846
847                        $cal_id = get_var('cal_id',array('GET','POST'),$vcal_id);
848
849                        $date = $cal_date ? $cal_date : 0;
850                        $date = $date ? $date : (int)$_GET['date'];
851       
852                        // First, make sure they have permission to this entry
853                        if ($cal_id < 1)
854                        {
855                                echo '<center>'.lang('Invalid entry id.').'</center>'."\n";
856                                $GLOBALS['phpgw']->common->phpgw_exit(True);
857                        }
858
859                        if(!$this->bo->check_perms(PHPGW_ACL_READ,$cal_id))
860                        {
861                                echo '<center>'.lang('You do not have permission to read this record!').'</center>'."\n";
862                                $GLOBALS['phpgw']->common->phpgw_exit(True);
863                        }
864                       
865                        $event = $this->bo->read_entry($cal_id);
866
867                        if(!isset($event['id']))
868                        {
869                                echo '<center>'.lang('Sorry, this event does not exist').'.'.'</center>'."\n";
870                                $GLOBALS['phpgw']->common->phpgw_exit(True);
871                        }
872
873                        $this->bo->repeating_events = Array();
874                        $this->bo->cached_events = Array();
875                        $this->bo->repeating_events[0] = $event;
876                        $datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
877                        $this->bo->check_repeating_events($datetime);
878                        $check_date = $GLOBALS['phpgw']->common->show_date($datetime,'Ymd');
879                        if(is_array($this->bo->cached_events[$check_date][0]) &&
880                                $this->bo->cached_events[$check_date][0]['id'] == $event['id'])
881                        {
882                                $starttime = $this->bo->maketime($event['start']);
883                                $endtime = $this->bo->maketime($event['end']);
884                                $event['start']['month'] = $this->bo->month;
885                                $event['start']['mday'] = $this->bo->day;
886                                $event['start']['year'] = $this->bo->year;
887                                $temp_end =  $this->bo->maketime($event['start']) + ($endtime - $starttime);
888                                $event['end']['month'] = date('m',$temp_end);
889                                $event['end']['mday'] = date('d',$temp_end);
890                                $event['end']['year'] = date('Y',$temp_end);
891                        }
892
893                        if(!$this->view_event($event,True))
894                        {
895                                echo '<center>'.lang('You do not have permission to read this record!').'</center>';
896                                $GLOBALS['phpgw']->common->phpgw_exit(True);
897                        }
898                                               
899                        $p = $GLOBALS['phpgw']->template;
900                        $p->set_file(
901                                Array(
902                                        'form_button'   => 'form_button_script.tpl'
903                                )
904                        );
905
906                        $button_left = $button_center = $button_right = '';
907
908                        if($this->bo->check_perms(PHPGW_ACL_EDIT,$event))
909                        {
910                                if($event['recur_type'] != MCAL_RECUR_NONE)
911                                {
912                                        $var = Array(
913                                                'action_url_button'     => $this->page('edit','&cal_id='.$cal_id),
914                                                'action_text_button'    => lang('Edit Single'),
915                                                'action_confirm_button' => '',
916                                                'action_extra_field'    => $this->html->input_hidden(array(
917                                                        'edit_type' => 'single',
918                                                        'date' => sprintf('%04d%02d%02d',$this->bo->year,$this->bo->month,$this->bo->day)
919                                                ))
920                                        );
921                                        $p->set_var($var);
922                                        $button_left .= '<td>'.$p->fp('button','form_button').'</td>';
923
924                                        $var = Array(
925                                                'action_url_button'     => $this->page('edit','&cal_id='.$cal_id),
926                                                'action_text_button'    => lang('Edit Series'),
927                                                'action_confirm_button' => '',
928                                                'action_extra_field'    => $this->html->input_hidden('edit_type','series')
929                                        );
930                                        $p->set_var($var);
931                                        $button_left .= '<td>'.$p->fp('button','form_button').'</td>';
932                                }
933                                else
934                                {
935                                        $var = Array(
936                                                'action_url_button'     => $this->page('edit','&cal_id='.$cal_id),
937                                                'action_text_button'    => lang('Edit'),
938                                                'action_confirm_button' => '',
939                                                'action_extra_field'    => ''
940                                        );
941                                        $p->set_var($var);
942                                        $button_left .= '<td>'.$p->fp('button','form_button').'</td>';
943                                }
944
945                                $var = Array(
946                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uialarm.manager'),
947                                        'action_text_button'    => lang('Alarm Management'),
948                                        'action_confirm_button' => '',
949                                        'action_extra_field'    => $this->html->input_hidden(array(
950                                                'cal_id' => $cal_id,
951                                                'return_to' => $this->bo->return_to
952                                        ))
953                                );
954                                $p->set_var($var);
955                                $button_center .= '<td>'.$p->fp('button','form_button').'</td>';
956                        }
957
958                        if ($this->bo->check_perms(PHPGW_ACL_DELETE,$event))
959                        {
960                                if($event['recur_type'] != MCAL_RECUR_NONE)
961                                {
962                                        $var = Array(
963                                                'action_url_button'     => $this->page('delete','&cal_id='.$cal_id),
964                                                'action_text_button'    => lang('Delete Single'),
965                                                'action_confirm_button' => "onClick=\"return confirm('".lang('Are you sure want to delete this single occurence?').'\\n'.lang('This will delete this entry for all users.')."')\"",
966                                                'action_extra_field'    => $this->html->input_hidden(array(
967                                                        'delete_type' => 'single',
968                                                        'date' => sprintf('%04d%02d%02d',$this->bo->year,$this->bo->month,$this->bo->day)
969                                                ))
970                                        );
971                                        $p->set_var($var);
972                                        $button_right .= '<td>'.$p->fp('button','form_button').'</td>';
973
974                                        $var = Array(
975                                                'action_url_button'     => $this->page('delete','&cal_id='.$cal_id),
976                                                'action_text_button'    => lang('Delete Series'),
977                                                'action_confirm_button' => "onClick=\"return confirm('".lang('Are you sure want to delete this entry?\\nThis will delete this entry for all users.')."')\"",
978                                                'action_extra_field'    => $this->html->input_hidden('delete_type','series')
979                                        );
980                                        $p->set_var($var);
981                                        $button_right .= '<td>'.$p->fp('button','form_button').'</td>';
982
983                                        if($event['recur_exception'])
984                                        {
985                                                $var = Array(
986                                                        'action_url_button'     => $this->page('reinstate_list','&cal_id='.$cal_id),
987                                                        'action_text_button'    => lang('Reinstate'),
988                                                        'action_confirm_button' => '',
989                                                        'action_extra_field'    => ''
990                                                );
991                                                $p->set_var($var);
992                                                $button_center .= '<td>'.$p->fp('button','form_button').'</td>';
993                                        }
994                                }
995                                else
996                                {
997                                        $var = Array(
998                                                'action_url_button'     => $this->page('delete','&cal_id='.$cal_id),
999                                                'action_text_button'    => lang('Delete'),
1000                                                'action_confirm_button' => "onClick=\"return confirm('".lang('Are you sure want to delete this entry?\\nThis will delete this entry for all users.')."')\"",
1001                                                'action_extra_field'    => ''
1002                                        );
1003                                        $p->set_var($var);
1004                                        $button_right .= '<td>'.$p->fp('button','form_button').'</td>';
1005                                }
1006                        }
1007                        else
1008                        {
1009                                // allow me (who I am logged in as) to set up an alarm
1010                                // if I am a participant, but not the owner
1011                                reset($event['participants']);
1012                                while (list($user,$short_status) = each($event['participants']))
1013                                {
1014                                        if ($GLOBALS['phpgw_info']['user']['account_id'] == $user)
1015                                        {
1016                                                $var = Array(
1017                                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uialarm.manager'),
1018                                                        'action_text_button'    => lang('Alarm Management'),
1019                                                        'action_confirm_button' => '',
1020                                                        'action_extra_field'    => $this->html->input_hidden(array(
1021                                                                'cal_id'    => $cal_id,
1022                                                                'return_to' => $this->bo->return_to
1023                                                        ))
1024                                                );
1025                                                $p->set_var($var);
1026                                                echo $p->fp('out','form_button');
1027                                        }
1028                                }
1029                        }
1030
1031                        $var = Array(
1032                                'action_url_button'     => $this->page('export'),
1033                                'action_text_button'    => lang('Export'),
1034                                'action_confirm_button' => '',
1035                                'action_extra_field'    => $this->html->input_hidden('cal_id',$cal_id)
1036                        );
1037                        $p->set_var($var);
1038                        $button_center .= '<td>'.$p->fp('button','form_button').'</td>';
1039
1040                        if ($this->bo->return_to)
1041                        {
1042                                $var = Array(
1043                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to),
1044                                        'action_text_button'    => lang('Done'),
1045                                        'action_confirm_button' => '',
1046                                        'action_extra_field'    => ''
1047                                );
1048                                $p->set_var($var);
1049                                $button_left .= '<td>'.$p->fp('button','form_button').'</td>';
1050                        }
1051                        $p->set_var(array(
1052                                'button_left'   => $button_left,
1053                                'button_center' => $button_center,
1054                                'button_right'  => $button_right
1055                        ));
1056                        $p->pfp('phpgw_body','view_event');
1057
1058                        $GLOBALS['phpgw']->hooks->process(array(
1059                                'location' => 'calendar_view',
1060                                'cal_id'   => $cal_id
1061                        ));
1062                       
1063                        $GLOBALS['phpgw']->common->phpgw_footer();
1064                }
1065
1066                function edit($params='')
1067                {
1068                        if($this->debug)
1069                        {
1070                                echo '<!-- params[readsess] = '.$params['readsess'].' -->'."\n";
1071                                echo '<!-- params[cd] = '.$params['cd'].' -->'."\n";
1072                        }
1073
1074                        if(isset($_GET['readsess']))
1075                        {
1076                                $params['readsess'] = $_GET['readsess'];
1077                                $params['cd'] = 0;
1078                        }
1079
1080                        if($this->debug)
1081                        {
1082                                echo '<!-- params[readsess] = '.$params['readsess'].' -->'."\n";
1083                                echo '<!-- params[cd] = '.$params['cd'].' -->'."\n";
1084                        }
1085
1086                        if($params != '' && @is_array($params) && @isset($params['readsess']))
1087                        {
1088                                $can_edit = True;
1089                                $this->edit_form(
1090                                        Array(
1091                                                'event' => $this->bo->restore_from_appsession(),
1092                                                'cd' => $params['cd']
1093                                        )
1094                                );
1095                        }
1096                        elseif(isset($_GET['cal_id']))
1097                        {
1098                                $cal_id = (int)$_GET['cal_id'];
1099                                $event = $this->bo->read_entry($cal_id);
1100
1101                                if(!$this->bo->check_perms(PHPGW_ACL_EDIT,$event))
1102                                {
1103                                        Header('Location: '.$this->page('view','&cal_id='.$cal_id));
1104                                        $GLOBALS['phpgw']->common->phpgw_exit();
1105                                }
1106                                if(@isset($_POST['edit_type']) && $_POST['edit_type'] == 'single')
1107                                {
1108                                        $event['id'] = 0;
1109                                        $this->bo->set_recur_date($event,$_POST['date']);
1110                                        $event['recur_type'] = MCAL_RECUR_NONE;
1111                                        $event['recur_interval'] = 0;
1112                                        $event['recur_data'] = 0;
1113                                        $event['recur_enddate']['month'] = 0;
1114                                        $event['recur_enddate']['mday'] = 0;
1115                                        $event['recur_enddate']['year'] = 0;
1116                                        $event['recur_exception'] = array();
1117                                }
1118                                $plain = $_GET['plain'];
1119
1120                                $this->edit_form(
1121                                        Array(
1122                                                'event' => $event,
1123                                                'cd'    => $cd,
1124                                                'plain' => $plain
1125                                        )
1126                                );
1127                        }
1128                }
1129
1130                function export_all()
1131                {
1132                        $temp_path = $GLOBALS['phpgw_info']['server']['temp_dir'] . SEP;
1133                        srand((double)microtime()*1000000);
1134                        $random_number = rand(100000000,999999999);
1135                        $newfilename = md5(time() . getenv("REMOTE_ADDR") . $random_number );
1136                        $filename = $temp_path . $newfilename;
1137                        $attach_fd = fopen($filename,"w+");
1138                        $event_ids = $this->bo->search_keywords($_POST['keywords']);
1139                        foreach($event_ids as $key => $id)
1140                        {
1141                                $event[$key]=$this->bo->read_entry($id);
1142                        }
1143                        include_once('class.bocalendar.inc.php');
1144                        $cal = new bocalendar;
1145                        $tmpattach=$cal->create_vcard($event);
1146                        fwrite($attach_fd,$tmpattach);
1147                        header ("Content-Type: text/plain");
1148                        header ("Cache-Control: must-revalidate, post-check=0, pre-check=0");
1149                        header('Content-Length: ' . filesize($filename));
1150                        header("Content-disposition: attachment; filename="."export.vcard");
1151                        readfile($filename);
1152                        fclose($attach_fd);
1153                }
1154
1155                function export($vcal_id=0)
1156                {
1157                        $temp_path = $GLOBALS['phpgw_info']['server']['temp_dir'] . SEP;
1158                        srand((double)microtime()*1000000);
1159                        $random_number = rand(100000000,999999999);
1160                        $newfilename = md5(time() . getenv("REMOTE_ADDR") . $random_number );
1161                        $filename = $temp_path . $newfilename;
1162                        $attach_fd = fopen($filename,"w+");
1163                        $cal_id = get_var('cal_id',array('GET','POST'),$vcal_id);
1164                        $event[0] = $this->bo->read_entry($cal_id);
1165                        include_once('class.bocalendar.inc.php');
1166                        $cal = new bocalendar;
1167                        $tmpattach=$cal->create_vcard($event);
1168                        fwrite($attach_fd,$tmpattach);
1169                        header ("Content-Type: text/plain");
1170                        header ("Cache-Control: must-revalidate, post-check=0, pre-check=0");
1171                        header('Content-Length: ' . filesize($filename));
1172                        header("Content-disposition: attachment; filename="."export.vcard");
1173                        readfile($filename);
1174                        fclose($attach_fd);
1175                }
1176
1177                function reinstate_list($params='')
1178                {
1179                        if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
1180                        {
1181                                $this->no_edit();
1182                        }
1183                        elseif(!$this->bo->check_perms(PHPGW_ACL_ADD))
1184                        {
1185                                $this->index();
1186                        }
1187
1188                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
1189                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
1190                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Reinstate');
1191                        $GLOBALS['phpgw']->common->phpgw_header();
1192
1193                        $cal_id = get_var('cal_id',array('GET'),$params['cal_id']);
1194
1195                        if ($cal_id < 1)
1196                        {
1197                                echo '<center>'.lang('Invalid entry id.').'</center>'."\n";
1198                                $GLOBALS['phpgw']->common->phpgw_exit(True);
1199                        }
1200
1201                        if(!$this->bo->check_perms(PHPGW_ACL_READ))
1202                        {
1203                                echo '<center>'.lang('You do not have permission to read this record!').'</center>'."\n";
1204                                $GLOBALS['phpgw']->common->phpgw_exit(True);
1205                        }
1206
1207                        $event = $this->bo->read_entry($cal_id);
1208
1209                        if(!isset($event['id']))
1210                        {
1211                                echo '<center>'.lang('Sorry, this event does not exist').'.'.'</center>'."\n";
1212                                $GLOBALS['phpgw']->common->phpgw_exit(True);
1213                        }
1214                        elseif(!isset($event['recur_exception']))
1215                        {
1216                                echo '<center>'.lang('Sorry, this event does not have exceptions defined').'.'.'</center>'."\n";
1217                                $GLOBALS['phpgw']->common->phpgw_exit(True);
1218                        }
1219
1220                        if(!$this->view_event($event,True))
1221                        {
1222                                echo '<center>'.lang('You do not have permission to read this record!').'</center>';
1223                                $GLOBALS['phpgw']->common->phpgw_exit(True);
1224                        }
1225
1226                        $p = &$GLOBALS['phpgw']->template;
1227                        $p->set_file(
1228                                Array(
1229                                        'form_button'   => 'form_button_script.tpl'
1230                                )
1231                        );
1232
1233                        $str = '';
1234
1235                        for($i=0;$i<count($event['recur_exception']);$i++)
1236                        {
1237                                $str .= '    <option value="'.$i.'">'.$GLOBALS['phpgw']->common->show_date($event['recur_exception'][$i]).'</option>'."\n";
1238                        }
1239                        $this->output_template_array($p,'row','list',array(
1240                                'field' => lang('Exceptions'),
1241                                'data'  => '<select name="reinstate_index[]" multiple size="5">'."\n".$str.'</select>'
1242                        ));
1243
1244                        $var = Array(
1245                                'action_url_button'     => $this->page('reinstate','&cal_id='.$cal_id),
1246                                'action_text_button'    => lang('Reinstate'),
1247                                'action_confirm_button' => '',
1248                                'action_extra_field'    => ''
1249                        );
1250                        $p->set_var($var);
1251                        $button_left = '<td>'.$p->fp('out','form_button').'</td>';
1252
1253                        $var = Array(
1254                                'action_url_button'     => $this->bo->return_to ? $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to) : $this->page(''),
1255                                'action_text_button'    => lang('Cancel'),
1256                                'action_confirm_button' => '',
1257                                'action_extra_field'    => ''
1258                        );
1259                        $p->set_var($var);
1260                        $button_left .= '<td>'.$p->fp('out','form_button').'</td>';
1261
1262                        $p->set_var('button_left',$button_left);
1263                        $p->pfp('phpgw_body','view_event');
1264                }
1265
1266                function reinstate($params='')
1267                {
1268                        if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
1269                        {
1270                                $this->no_edit();
1271                        }
1272                        elseif(!$this->bo->check_perms(PHPGW_ACL_ADD))
1273                        {
1274                                $this->index();
1275                        }
1276                        $cal_id = (isset($params['cal_id']) ? (int)$params['cal_id'] : '');
1277                        $cal_id = ($cal_id == '' ? (int)$_GET['cal_id'] : $cal_id);
1278
1279                        $reinstate_index = (isset($params['reinstate_index']) ? (int)$params['reinstate_index'] : '');
1280                        $reinstate_index = ($reinstate_index == '' ? (int)$_POST['reinstate_index'] : $reinstate_index);
1281                        if($this->debug)
1282                        {
1283                                echo '<!-- Calling bo->reinstate -->'."\n";
1284                        }
1285                        $cd = $this->bo->reinstate(
1286                                Array(
1287                                        'cal_id'        => $cal_id,
1288                                        'reinstate_index'       => $reinstate_index
1289                                )
1290                        );
1291                        if($this->debug)
1292                        {
1293                                echo '<!-- Return Value = '.$cd.' -->'."\n";
1294                        }
1295                        if ($this->bo->return_to)
1296                        {
1297                                Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to));
1298                        }
1299                        else
1300                        {
1301                                Header('Location: '.$this->page('',($cd?'&cd='.$cd:'')));
1302                        }
1303                        $GLOBALS['phpgw']->common->phpgw_exit();
1304                }
1305
1306                function add($cd=0,$readsess=0)
1307                {
1308                        if(!$this->bo->check_perms(PHPGW_ACL_ADD))
1309                        {
1310                                $this->index();
1311                        }
1312                       
1313                        if($readsess)
1314                        {
1315                                $event = $this->bo->restore_from_appsession;
1316                                if(!$event['owner'])
1317                                {
1318                                        $this->bo->add_attribute('owner',$this->bo->owner);
1319                                }
1320                                $can_edit = True;
1321                        }
1322                        else
1323                        {
1324                                $this->bo->event_init();
1325                                $this->bo->add_attribute('id',0);
1326
1327                                $can_edit = True;
1328                                $participants = (string)(get_var('participants',array('GET'),FALSE));
1329                                $starthour = (int)(get_var('hour',array('GET'),$this->bo->prefs['calendar']['workdaystarts']));
1330                                $startmin  = (int)(get_var('minute',array('GET'),0));
1331                                $endmin    = $startmin + (int)$this->bo->prefs['calendar']['defaultlength'];
1332                                $endhour   = $starthour + $this->bo->normalizeminutes($endmin);
1333                               
1334                                $subject        = (string)(get_var('title',array('GET'),0));
1335                                if ($subject != '0')
1336                                {
1337                                        $description    = (string)(get_var('description',array('GET'),0));
1338                                        $location       = (string)(get_var('location',array('GET'),0));
1339                                }
1340                                else
1341                                        unset($subject);
1342                               
1343                                $this->bo->set_start($this->bo->year,$this->bo->month,$this->bo->day,$starthour,$startmin,0);
1344                                $this->bo->set_end($this->bo->year,$this->bo->month,$this->bo->day,$endhour,$endmin,0);
1345                                $this->bo->set_title($subject);
1346                                $this->bo->set_description($description);
1347                                $this->bo->add_attribute('location',$location);
1348                                $this->bo->set_ex_participants('');
1349                                $this->bo->add_attribute('uid','');
1350                                $this->bo->add_attribute('priority',2);
1351                                if(@$this->bo->prefs['calendar']['default_private'])
1352                                {
1353                                        $this->bo->set_class(False);
1354                                }
1355                                else
1356                                {
1357                                        $this->bo->set_class(True);
1358                                }
1359                                // Add participants
1360                                //$participants = explode(";", $GLOBALS['phpgw']->session->appsession("participants") );
1361                                //for($_f_part=0; $_f_part<count($participants); $_f_part++)
1362                                //{
1363                                //      $this->bo->add_attribute('participants','A',$participants[$_f_part]);
1364                                //}
1365                                // Add misc
1366                                $this->bo->add_attribute('participants','A',$this->bo->owner);
1367                                $this->bo->set_recur_none();
1368                                $event = $this->bo->get_cached_event();
1369                               
1370                        }
1371                        $this->edit_form(
1372                                Array(
1373                                        'event' => $event,
1374                                        'cd' => $cd,
1375                                        'plain' => $_GET['plain']
1376                                )
1377                        );
1378                        $GLOBALS['phpgw']->common->phpgw_footer();
1379                }
1380
1381                function delete()
1382                {
1383                        if(!isset($_GET['cal_id']))
1384                        {
1385                                Header('Location: '.$this->page('','&date='.sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day)));
1386                                $GLOBALS['phpgw']->common->phpgw_exit();
1387                        }
1388
1389                        $date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day);
1390                        if($this->bo->check_perms(PHPGW_ACL_DELETE,$cal_id = (int)$_GET['cal_id']))
1391                        {
1392                                if(isset($_POST['delete_type']) && $_POST['delete_type'] == 'single')
1393                                {
1394                                        $date = $_POST['date'];
1395                                        $cd = $this->bo->delete_single(
1396                                                Array(
1397                                                        'id'    => $cal_id,
1398                                                        'year'  => substr($date,0,4),
1399                                                        'month' => substr($date,4,2),
1400                                                        'day'   => substr($date,6,2)
1401                                                )
1402                                        );
1403                                }
1404                                elseif((isset($_POST['delete_type']) && $_POST['delete_type'] == 'series') || !isset($_POST['delete_type']))
1405                                {
1406                                        $cd = $this->bo->delete_entry($cal_id);
1407                                        $this->bo->expunge();
1408                                }
1409                        }
1410                        else
1411                        {
1412                                $cd = '';
1413                        }
1414                        if ($this->bo->return_to)
1415                        {
1416                                Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to));
1417                        }
1418                        else
1419                        {
1420                                Header('Location: '.$this->page('','&date='.$date.($cd?'&cd='.$cd:'')));
1421                        }
1422                        $GLOBALS['phpgw']->common->phpgw_exit();
1423                }
1424
1425                function disponibility($params) {
1426
1427                        if(!isset($_SESSION['phpgw_info']['expresso']['expressoAdmin'])) {
1428                                $c = CreateObject('phpgwapi.config','expressoAdmin1_2');
1429                                $c->read_repository();
1430                                $current_config = $c->config_data;
1431
1432                                $ldap_manager = CreateObject('contactcenter.bo_ldap_manager');
1433
1434                                $_SESSION['phpgw_info']['expresso']['user'] = $GLOBALS['phpgw_info']['user'];
1435                                $_SESSION['phpgw_info']['expresso']['server'] = $GLOBALS['phpgw_info']['server'];
1436                                $_SESSION['phpgw_info']['expresso']['cc_ldap_server'] = $ldap_manager ? $ldap_manager->srcs[1] : null;
1437                                $_SESSION['phpgw_info']['expresso']['expressoAdmin'] = $current_config;
1438                                $_SESSION['phpgw_info']['expresso']['global_denied_users'] = $GLOBALS['phpgw_info']['server']['global_denied_users'];
1439                                $_SESSION['phpgw_info']['expresso']['global_denied_groups'] = $GLOBALS['phpgw_info']['server']['global_denied_groups'];
1440                        }
1441                        $str_participants = substr($_GET['participants'],0,strlen($_GET['participants'])-1); //remove the last comma
1442                        $participants= array();
1443
1444                        $participants_splited = explode(",",$str_participants);
1445                        foreach($participants_splited as $participant) {
1446                                $participant = substr($participant,0,strlen($participant)-1);
1447                                $acct_type = $GLOBALS['phpgw']->accounts->get_type((int)$participant);
1448                                if($acct_type=='g') {
1449                                        $bo_groups = CreateObject('expressoAdmin1_2.group');
1450                                        $users = $bo_groups->get_info($participant,true);
1451                                        foreach($users['memberuid_info'] as $user) {
1452                                                if($user['type']==u)
1453                                                        $participants[$user['uidnumber']] = 'U';
1454                                        }
1455                                }
1456                                else {
1457                                        $participants[$participant] = 'U';
1458                                }
1459                        }
1460
1461                        $date = explode("/",$_GET['date']);
1462                        $freetime = $GLOBALS['phpgw']->datetime->localdates(mktime(0,0,0,$date[1],$date[0],$date[2]) - $GLOBALS['phpgw']->datetime->tz_offset);
1463
1464                        echo $this->print_disponibility(
1465                                Array(
1466                                        'date'          => $freetime,
1467                                        'starttime'     => $this->bo->splittime('000000',False),
1468                                        'endtime'       => 0,
1469                                        'participants'  => $participants
1470                                )
1471                        );
1472
1473
1474                }
1475
1476                function print_disponibility($param) {
1477
1478                        $str = "<html><head>
1479                        <script type='text/javascript'>
1480
1481                                var start = null;
1482                                var end = null;
1483                                function set_time(hour,minute) {
1484                                        //alert(start);
1485                                        if(start == null) {
1486                                                start = new Array();
1487                                                start[0] = hour;
1488                                                start[1] = minute;
1489                                                paint_interval(start,start,'#009ACD',true);
1490                                        }
1491                                        else if (end == null) {
1492                                                end = new Array();
1493                                                end[0] = hour;
1494                                                end[1] = minute;
1495                                                if(is_lower(start,end))
1496                                                        paint_interval(start,end,'#009ACD',true);
1497                                                else {
1498                                                        paint_interval(end,start,'#009ACD',true);
1499                                                        temp = start;
1500                                                        start = end;
1501                                                        end = temp;
1502                                                        paint_interval(end,end,'#FFFFFF',false);
1503                                                }
1504                                                parent.document.getElementById('start_hour').value=start[0];
1505                                                parent.document.getElementById('start_minute').value=start[1];
1506                                                parent.document.getElementById('end_hour').value=end[0];
1507                                                parent.document.getElementById('end_minute').value=end[1];
1508
1509                                        }
1510                                        else {
1511                                                end = null;
1512                                                start = new Array();
1513                                                start[0] = hour;
1514                                                start[1] = minute;
1515                                                repaint();
1516
1517                                                paint_interval(start,start,'#009ACD',true);
1518                                        }
1519                                }
1520                                function paint_column(name_array,color,force) {
1521                                        name = name_array[0]+'-'+name_array[1];
1522                                        if(navigator.userAgent.toLowerCase().indexOf('msie') == -1) {//firefox
1523                                                for(var i in document.getElementsByName(name)) {
1524                                                        document.getElementsByName(name)[i].bgColor=color;
1525                                                        if(document.getElementsByName(name)[i].nodeType==1) {
1526                                                                if(document.getElementsByName(name)[i].innerHTML.indexOf('>-<')==-1 || force==true)
1527                                                                        document.getElementsByName(name)[i].bgColor=color;
1528                                                                else
1529                                                                        document.getElementsByName(name)[i].bgColor='".$this->theme['bg11']."';
1530                                                        }
1531                                                }
1532                                        }
1533                                        else {//I.E
1534                                                cells = document.getElementsByTagName('td');
1535                                                for(var i=0;i<cells.length;i++) {
1536                                                                if(cells.item(i).name==name) { //getElementsByName in I.E is bugged
1537                                                                        cells.item(i).bgColor=color;
1538                                                                        if(cells.item(i).nodeType==1) {
1539                                                                                if(cells.item(i).innerHTML.indexOf('>-<')==-1 || force==true)
1540                                                                                        cells.item(i).bgColor=color;
1541                                                                                else
1542                                                                                        cells.item(i).bgColor='".$this->theme['bg11']."';
1543                                                                }
1544                                                        }
1545                                                }
1546                                        }
1547                                }
1548
1549                                function repaint() {
1550                                        temp_start = new Array();
1551                                        temp_start[0] = 8;
1552                                        temp_start[1] = 0;
1553                                        temp_end = new Array();
1554                                        temp_end[0] = 19;
1555                                        temp_end[1] = 0;
1556                                        paint_interval(temp_start,temp_end,'#FFFFFF',false);
1557                                }
1558
1559                                //Considera sempre name1 <= name2
1560                                function paint_interval(name1,name2,color,force) {
1561                                        paint_column(name1,color,force);
1562                                        if(name1[0]!=name2[0] || name1[1]!=name2[1]) {
1563                                                paint_column(name1,color,force);
1564                                                tempHour = name1[0];
1565                                                tempMinute = name1[1];
1566                                                while(tempHour<name2[0]) {
1567                                                        if(tempHour==name1[0] && tempMinute!=0)
1568                                                                temp_start = tempMinute/30;
1569                                                        else
1570                                                                temp_start = 0;
1571                                                        for(i=temp_start;i<60/30;i++) {
1572                                                                temp_column = new Array();
1573                                                                temp_column[0] = tempHour;
1574                                                                temp_column[1] = i*30;
1575                                                                paint_column(temp_column,color,force);
1576                                                        }
1577                                                        tempHour++;
1578                                                }
1579                                                for(i=0;i<name2[1];i+=30) {
1580                                                        temp_column = new Array();
1581                                                        temp_column[0] = name2[0];
1582                                                        temp_column[1] = i;
1583                                                        paint_column(temp_column,color,force);
1584                                                }
1585                                        }
1586                                }
1587
1588                                function is_lower(array1,array2) {
1589                                        if(array1[0]<array2[0])
1590                                                return true;
1591                                        else if(array1[0]>array2[0])
1592                                                return false;
1593                                        else {
1594                                                if(array1[1]<array2[1])
1595                                                        return true;
1596                                                else
1597                                                        return false;
1598                                        }
1599                                }
1600                        </script></head><body>
1601                        ";
1602
1603                        $str.= "<table border=\'1\' bgcolor=\"#FFFFFF\" width=\"100%\" height=\"100%\"><tr><td>";
1604
1605
1606                        if(!is_array($param))
1607                        {
1608                                $this->index();
1609                        }
1610
1611                        $date = $param['date'];
1612                        $starttime = $param['starttime'];
1613                        $endtime = $param['endtime'];
1614                        $participants = $param['participants'];
1615                        foreach($participants as $part => $nul)
1616                        {
1617                                $participants[$part] = $GLOBALS['phpgw']->common->grab_owner_name($part);
1618                                // Much better for processor  :)
1619                                $participants_id[]  .= $part;
1620                        }
1621                        uasort($participants,'strnatcasecmp');  // sort them after their fullname
1622
1623                        if(!isset($this->bo->prefs['calendar']['interval']))
1624                        {
1625                                $this->bo->prefs['calendar']['interval'] = 15;
1626                                $GLOBALS['phpgw']->preferences->add('calendar','interval',15);
1627                                $GLOBALS['phpgw']->preferences->save_repository();
1628                        }
1629                        $increment = $this->bo->prefs['calendar']['interval'];
1630                        $interval = (int)(60 / $increment);
1631
1632                        $pix = $GLOBALS['phpgw']->common->image('calendar','pix');
1633
1634                        $str .= '<center>'.lang($GLOBALS['phpgw']->common->show_date($date['raw'],'l'))
1635                                . ', '.$this->bo->long_date($date).'<br>'
1636                                . '<table width="85%" border="0" cellspacing="0" cellpadding="0" cols="'.((10 * $interval) + 1).'">'
1637                                . '<tr><td height="1" colspan="'.((11 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>'
1638                                . '<tr><td width="15%"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.lang('Participant').'</font></td>';
1639                        for($i=8;$i<19;$i++)
1640                        {
1641                                for($j=0;$j<$interval;$j++)
1642                                {
1643                                        $k = ($j == 0 ? sprintf('%02d',$i).'<br>':'').sprintf('%02d',$j*$increment);
1644
1645                                        $str .= '<td align="left" bgcolor="'.$this->theme['bg_color'].'" onclick="set_time('.$i.','.($j*$increment).')" style="cursor:hand;cursor:pointer">
1646                                                        <font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$this->theme['font'].'" size="-2">' . $k."&nbsp;</font></td>\n";
1647                                }
1648                        }
1649                        $str .= '</tr>'
1650                                . '<tr><td height="1" colspan="'.((11 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>';
1651                        if(!$endtime)
1652                        {
1653                                $endtime = $starttime;
1654                        }
1655                        $owner = $this->bo->owner;
1656                        foreach($participants as $part => $fullname)
1657                        {
1658                                $str .= '<tr align="center">'
1659                                        . '<td width="15%" align="left"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.$fullname.'</font></td>';
1660
1661                                $this->bo->cached_events = Array();
1662                                $this->bo->so->owner = $part;
1663                                $this->bo->so->open_box($part);
1664                                $this->bo->store_to_cache(
1665                                        Array(
1666                                                'syear' => $date['year'],
1667                                                'smonth'=> $date['month'],
1668                                                'sday'  => $date['day'],
1669                                                'eyear' => 0,
1670                                                'emonth'=> 0,
1671                                                'eday'  => $date['day'] + 1
1672                                        )
1673                                );
1674
1675                                if(!$this->bo->cached_events[$date['full']])
1676                                {
1677                                        for($j=8;$j<19;$j++)
1678                                        {
1679                                                for($k=0;$k<$interval;$k++)
1680                                                {
1681//                                                      $helper_name = $k*
1682                                                        $str .= '<td name="'.$j.'-'.($k*$increment).'" height="1" align="left" bgcolor="'.$this->theme['bg_color'].'" color="#999999">&nbsp;</td>';
1683                                                }
1684                                                $str .= "\n";
1685                                        }
1686                                }
1687                                else
1688                                {
1689                                        $time_slice = $this->bo->prepare_matrix($interval,$increment,$part,$date['full']);
1690                                        for($h=8;$h<19;$h++)
1691                                        {
1692                                                $hour = $h * 10000;
1693                                                for($m=0;$m<$interval;$m++)
1694                                                {
1695                                                        $index = ($hour + (($m * $increment) * 100));
1696                                                        switch($time_slice[$index]['marker'])
1697                                                        {
1698                                                                case '&nbsp':
1699                                                                        $time_slice[$index]['color'] = $this->theme['bg_color'];
1700                                                                        //$extra = '';
1701                                                                        break;
1702                                                                case '-':
1703                                                                        $time_slice[$index]['color'] = $this->theme['bg11'];
1704                                                                        $link = $this->page('view','&cal_id='.$time_slice[$index]['id'].'&date='.$date['full']);
1705                                                                        //$extra =' title="'.$time_slice[$index]['description'].'" onClick="location.href=\''.$link.'\';" style="cursor:pointer; cursor:hand;"';
1706                                                                        break;
1707                                                        }
1708                                                        $str .= '<td name="'.$h.'-'.($m*$increment).'" bgcolor="'.$time_slice[$index]['color'].'" color="#999999"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.$time_slice[$index]['marker'].'</font></td>';
1709                                                }
1710                                                $str .= "\n";
1711                        }
1712                        }
1713                                $str .= '</tr>'
1714                                        . '<tr><td height="1" colspan="'.((11 * $interval) + 1).'" bgcolor="#999999"><img src="'.$pix.'"></td></tr>';
1715                }
1716                        $this->bo->owner = $owner;
1717                        $this->bo->so->owner = $owner;
1718                        $this->bo->so->open_box($owner);
1719                        $str.= "</table></center> \n </td></tr>
1720                        <tr><td onclick=\"parent.document.getElementById('disponibility').style.display='none'\" style='cursor:hand;cursor:pointer' align='center'>Fechar mapa</td></tr>
1721                        </table></body>";
1722                        return $str;
1723                }
1724
1725                function day()
1726                {
1727                        $this->bo->read_holidays();
1728
1729                        $next = $GLOBALS['phpgw']->datetime->makegmttime(0,0,0,$this->bo->month,$this->bo->day + 1,$this->bo->year);
1730                        $prev = $GLOBALS['phpgw']->datetime->makegmttime(0,0,0,$this->bo->month,$this->bo->day - 1,$this->bo->year);
1731
1732                        if (!$this->bo->printer_friendly || ($this->bo->printer_friendly && @$this->bo->prefs['calendar']['display_minicals']))
1733                        {
1734                                $minical = $this->mini_calendar(
1735                                        Array(
1736                                                'day'   => $this->bo->day,
1737                                                'month' => $this->bo->month,
1738                                                'year'  => $this->bo->year,
1739                                                'link'  => 'day'
1740                                        )
1741                                );
1742                        }
1743                        else
1744                        {
1745
1746                                //NDEE: printer-friendly (what?)
1747                                $minical = '';
1748                        }
1749
1750                        if (!$this->bo->printer_friendly)
1751                        {
1752                                $printer = '';
1753                                $prev_day_link = '<a href="'.$this->page('day','&date='.$prev['full']).'">&lt;&lt;</a>';
1754                                $next_day_link = '<a href="'.$this->page('day','&date='.$next['full']).'">&gt;&gt;</a>';
1755                                $param = '&date='.sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day).'&friendly=1';
1756                                $print = '<a href="'.$this->page('day'.$param)."\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window.status = '".lang('Generate printer-friendly version')."'\">[".lang('Printer Friendly').']</a>';
1757                        }
1758                        else
1759                        {
1760
1761                                //NDEE: printer-friendly (daily-view)
1762                                $GLOBALS['phpgw_info']['flags']['nofooter'] = True;
1763                                $printer = '<body bgcolor="'.$this->theme['bg_color'].'">';
1764                                $print =        '';
1765                        }
1766
1767                        $now    = $GLOBALS['phpgw']->datetime->makegmttime(0, 0, 0, $this->bo->month, $this->bo->day, $this->bo->year);
1768                        $now['raw'] += $GLOBALS['phpgw']->datetime->tz_offset;
1769
1770                        $p = $GLOBALS['phpgw']->template;
1771                        $p->set_file(
1772                                Array(
1773                                        'day_t' => 'day.tpl'
1774                                )
1775                        );
1776                        $p->set_block('day_t','day','day');
1777                        $p->set_block('day_t','day_event','day_event');
1778
1779                        $todos = $this->get_todos($todo_label);
1780                        $var = Array(
1781                                'printer_friendly'      => $printer,
1782                                'bg_text'                       => $this->theme['bg_text'],
1783                                'daily_events'          => $this->print_day(
1784                                        Array(
1785                                                'year'  => $this->bo->year,
1786                                                'month' => $this->bo->month,
1787                                                'day'   => $this->bo->day
1788                                        )
1789                                ),
1790                                'small_calendar'        => $minical,
1791                                'date'                          => $this->bo->long_date($now),
1792                                'username'                      => $GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner),
1793                                'prev_day_link'         => $prev_day_link,
1794                                'next_day_link'         => $next_day_link,
1795                                'print'                         => $print,
1796                                'lang_todos'            => $todo_label,
1797                                'todos'                         => $this->bo->printer_friendly ? $todos :
1798
1799                                        //NDEE: todo's layout
1800                                        "<div style=\"overflow: auto; max-height: 200px\">\n$todos</div>\n"
1801                        );
1802
1803                        $p->set_var($var);
1804                        $p->parse('day_events','day_event');
1805                        print $this->printer_friendly($p->fp('out','day'),lang('Dayview'));
1806                        $GLOBALS['phpgw']->common->phpgw_footer();
1807                }
1808
1809                function get_todos(&$todo_label)
1810                {
1811                        $todos_from_hook = $GLOBALS['phpgw']->hooks->process(array(
1812                                'location'  => 'calendar_include_todos',
1813                                'year'      => $this->bo->year,
1814                                'month'     => $this->bo->month,
1815                                'day'       => $this->bo->day,
1816                                'owner'     => $this->bo->owner // num. id of the user, not necessary current user
1817                        ));
1818
1819                        if(is_array($todo_label))
1820                        {
1821                                list($label,$showall)=$todo_label;
1822                        }
1823                        else
1824                        {
1825                                $label=$todo_label;
1826                                $showall=true;
1827                        }
1828                        $maxshow = (int)$GLOBALS['phpgw_info']['user']['preferences']['infolog']['mainscreen_maxshow'];
1829                        if($maxshow<=0)
1830                        {
1831                                $maxshow=10;
1832                        }
1833                        //print_debug("get_todos(): label=$label; showall=$showall; max=$maxshow");
1834
1835                        $content = $todo_label = '';
1836                        if (is_array($todos_from_hook) && count($todos_from_hook))
1837                        {
1838                                $todo_label = !empty($label)?$label:lang("open ToDo's:");
1839
1840                                foreach($todos_from_hook as $todos)
1841                                {
1842                                        $i = 0;
1843                                        if (is_array($todos) && count($todos))
1844                                        {
1845                                                foreach($todos as $todo)
1846                                                {
1847                                                        if(!$showall && ($i++>$maxshow))
1848                                                        {
1849                                                                break;
1850                                                        }
1851                                                        $icons = '';
1852                                                        foreach($todo['icons'] as $name => $app)
1853                                                        {
1854                                                                $icons .= ($icons?' ':'').$GLOBALS['phpgw']->html->image($app,$name,lang($name),'border="0" width="15" height="15"');
1855                                                        }
1856                                                        $class = $class == 'row_on' ? 'row_off' : 'row_on';
1857
1858//NDEE <tr starts here
1859                                                        $content .= " <tr id=\"debug\" class=\"$class\">\n  <td valign=\"top\" width=\"15%\"nowrap>".
1860                                                                ($this->bo->printer_friendly?$icons:$GLOBALS['phpgw']->html->a_href($icons,$todo['view'])).
1861                                                                "</td>\n  <td>".($this->bo->printer_friendly?$todo['title']:
1862                                                                $GLOBALS['phpgw']->html->a_href($todo['title'],$todo['view']))."</td>\n </tr>\n";
1863                                                }
1864                                        }
1865                                }
1866                        }
1867                        if (!empty($content))
1868                        {
1869                                return "<table border=\"0\" width=\"100%\">\n$content</table>\n";
1870                        }
1871                        return False;
1872                }
1873
1874                function edit_status()
1875                {
1876                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
1877                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
1878                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
1879                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
1880                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Change Status');
1881                        $GLOBALS['phpgw']->common->phpgw_header();
1882
1883                        $event = $this->bo->read_entry($_GET['cal_id']);
1884
1885                        reset($event['participants']);
1886
1887                        if(!$event['participants'][$this->bo->owner])
1888                        {
1889                                echo '<center>'.lang('The user %1 is not participating in this event!',$GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner)).'</center>';
1890                                return;
1891                        }
1892
1893                        if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
1894                        {
1895                                $this->no_edit();
1896                                return;
1897                        }
1898
1899                        $freetime = $GLOBALS['phpgw']->datetime->localdates(mktime(0,0,0,$event['start']['month'],$event['start']['mday'],$event['start']['year']) - $GLOBALS['phpgw']->datetime->tz_offset);
1900                        echo $this->timematrix(
1901                                Array(
1902                                        'date'          => $freetime,
1903                                        'starttime'     => $this->bo->splittime('000000',False),
1904                                        'endtime'       => 0,
1905                                        'participants'  => $event['participants']
1906                                )
1907                        ).'<br>';
1908
1909                        $event = $this->bo->read_entry($_GET['cal_id']);
1910                        $this->view_event($event);
1911                        $GLOBALS['phpgw']->template->pfp('phpgw_body','view_event');
1912
1913                        echo $this->get_response($event['id']);
1914                }
1915               
1916                function confirm_action($duplicated_action)
1917                {
1918                                if($_GET['response'] == 1)
1919                                {
1920                                        if(!$duplicated_action)
1921                                                $notify_message = lang('The commitment was accepted successfully!');
1922                                        else
1923                                                $notify_message = lang('This commitment has already been accepted!');
1924                                }       
1925                                else
1926                                {                                       
1927                                        if(!$duplicated_action)                                         
1928                                                $notify_message = lang('The commitment was rejected successfully!');
1929                                        else
1930                                                $notify_message = lang('This commitment has already been rejected!');
1931                                }
1932                               
1933                                $body1 = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
1934                                $body1->set_file(Array('calendar' => 'confirm.tpl'));
1935                                $body1->set_block('calendar','list');
1936                                $var = Array( 'notify_message'  => $notify_message);
1937                                $body1->set_var($var);
1938                                $tmpbody1 = $body1->pfp('out','list');
1939                }
1940               
1941                function confirm_conflict($user_id,$event,$overlapping_events)
1942                {
1943                        if(!$overlapping_events){                                       
1944                                $notify_message = lang('This event conflicts with your other event.');
1945       
1946                                $action_ignore = $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 3, 'response' => 1,'user_id' => $user_id, 'ignore_conflict' => 1));
1947                                $action_reject = $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 0, 'response' => 0));
1948       
1949                                $body1 = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
1950                                $body1->set_file(Array('calendar' => 'conflict.tpl'));
1951                                $body1->set_block('calendar','list');
1952                                $var = Array( 'notify_message'  => $notify_message,
1953                                                        'action_url' => $action_url,
1954                                                        'ignore_conflict' => 'Ignorar Conflito',
1955                                                        'reject_event' => 'Rejeitar Evento',
1956                                                        'action_reject' => $action_reject,
1957                                                        'action_ignore' => $action_ignore);
1958                                $body1->set_var($var);
1959                                $tmpbody1 = $body1->pfp('out','list');
1960                        }
1961                        else
1962                        {                               
1963                                $month = $event['start']['month'];
1964                                $mday = $event['start']['mday'];
1965                                $year = $event['start']['year'];
1966       
1967                                $start = mktime($event['start']['hour'],$event['start']['min'],$event['start']['sec'],$month,$mday,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
1968                                $end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
1969       
1970                                $overlap = '';
1971                                for($i=0;$i<count($overlapping_events);$i++)
1972                                {
1973                                        $overlapped_event = $this->bo->read_entry($overlapping_events[$i],True);
1974                                        foreach($overlapped_event['participants'] as $id => $status)
1975                                        {
1976                                                $conflict = isset($event['participants'][$user_id]);
1977                                                $overlap .= '<li>'.($conflict?'<b>':'').
1978                                                        $GLOBALS['phpgw']->common->grab_owner_name($id).
1979                                                        ($conflict?'</b> - '.lang('Scheduling conflict'):'')."</li>";
1980                                        }
1981                                 if ($this->bo->prefs['calendar']['hide_event_conflict'])
1982                                         $overlap .= '<ul><font size="1"><span>'.
1983                                                 $this->normDec($overlapped_event['start']['hour']).":".
1984                                                 $this->normDec($overlapped_event['start']['min'])."-".
1985                                                 $this->normDec($overlapped_event['end']['hour']).":".
1986                                                 $this->normDec($overlapped_event['end']['min']).
1987                                                 '<br><b>'.lang('title').": ".lang("Hidden").
1988                                                 '</b><br>'.lang('description').": ".lang("Hidden").'<br></span></ul><br>';
1989                                 else
1990                                         $overlap .= '<ul>'.$this->link_to_entry($overlapped_event,$month,$mday,$year)."</ul><br>";     
1991                                }
1992       
1993                                unset($GLOBALS['phpgw_info']['flags']['noheader']);
1994                                unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
1995                                $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
1996                                $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
1997                                $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Scheduling Conflict');
1998                                $GLOBALS['phpgw']->common->phpgw_header();
1999       
2000                                $p = $GLOBALS['phpgw']->template;
2001                                $p->set_file(
2002                                        Array(
2003                                                'overlap'       => 'overlap.tpl',
2004                                                'form_button'   => 'form_button_script.tpl'
2005                                        )
2006                                );
2007       
2008                                $var = Array(
2009                                        'color'         => $this->theme['bg_text'],
2010                                        'overlap_title' => lang('Scheduling Conflict'),
2011                                        'overlap_text'  => lang('Your suggested time of <B> %1 - %2 </B> conflicts with the following existing calendar entries:',$GLOBALS['phpgw']->common->show_date($start),$GLOBALS['phpgw']->common->show_date($end)),
2012                                        'overlap_list'  => $overlap
2013                                );
2014                                $p->set_var($var);
2015       
2016                                $date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->mday);
2017                                $var = Array(
2018                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 3, 'user_id' => $user_id, 'ignore_conflict' => 1)),
2019                                        'action_text_button'    => lang('Ignore Conflict'),
2020                                        'action_confirm_button' => '',
2021                                        'action_extra_field'    => '',
2022                                        'button_id'             => 'ignore_button'
2023                                );                             
2024                                $action_reject = $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 0, 'response' => 0));
2025       
2026                                $this->output_template_array($p,'resubmit_button','form_button',$var);
2027       
2028                                $var = Array(
2029                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 0)),
2030                                        'action_text_button'    => lang('Reject'),
2031                                        'action_confirm_button' => '',
2032                                        'action_extra_field'    => '',
2033                                        'button_id'             => 'redit_button'
2034                                );
2035                                $this->output_template_array($p,'reedit_button','form_button',$var);
2036                                $p->pparse('out','overlap');
2037                        }
2038                }
2039               
2040                function set_action()
2041                {
2042                        if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
2043                        {
2044                                $this->no_edit();
2045                                return;
2046                        }
2047                       
2048                        $overlapping_events = false;
2049                        $event = $this->bo->read_entry((int)$_GET['cal_id']);
2050                        if((!$_GET['response'] == 0 && !$_GET['ignore_conflict'] == 1) ||
2051                                (!isset($_GET['response']) && $_GET['action'] == 3 && !$_GET['ignore_conflict'] == 1))
2052                        {
2053                                if($event['id'])
2054                                {
2055                                        $event_ids[] = $event['id'];
2056                                }
2057                                if($event['reference'])
2058                                {
2059                                        $event_ids[] = $event['reference'];
2060                                }
2061                               
2062                                $event['participants'] = Array($_SESSION['phpgw_info']['expressomail']['user']['account_id'] => $event['participants'][$_SESSION['phpgw_info']['expressomail']['user']['account_id']]);
2063
2064                                $overlapping_events = $this->bo->overlap(
2065                                        $this->bo->maketime($event['start']),
2066                                        $this->bo->maketime($event['end']),
2067                                        $event['participants'],
2068                                        $event['owner'],
2069                                        $event_ids
2070                                );
2071                        }
2072
2073                        if(isset($_GET['response']))
2074                        {
2075                                if($overlapping_events)
2076                                {
2077                                        $this->confirm_conflict($_GET['user_id'],$event);
2078                                }else
2079                                {
2080                                        $confirm_status = $this->bo->set_status((int)$_GET['cal_id'],(int)$_GET['action']);
2081                                        $this->confirm_action($confirm_status);
2082                                        $GLOBALS['phpgw']->common->phpgw_exit(False);
2083                                }
2084                        }else
2085                        {
2086                                if($overlapping_events)
2087                                {                                       
2088                                        $this->confirm_conflict($_GET['user_id'],$event,$overlapping_events);
2089                                }else
2090                                {
2091                                $confirm_status = $this->bo->set_status((int)$_GET['cal_id'],(int)$_GET['action']);
2092                                        if ($this->bo->return_to)
2093                                        {
2094                                                Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to));
2095                                        }
2096                                        else
2097                                        {
2098                                                Header('Location: '.$this->page('',''));
2099                                        }
2100                                        $GLOBALS['phpgw']->common->phpgw_exit();
2101                                }
2102                        }
2103                       
2104                       
2105                }
2106                function planner()
2107                {
2108                        if(floor(phpversion()) < 4)
2109                        {
2110                                return;
2111                        }
2112                        $home = strstr($_SERVER['PHP_SELF'],'home') !== False;
2113                        // generate header and set global/member variables
2114                        //
2115                        $this->planner_prepare($home);
2116
2117                        // process events within selected interval
2118                        //
2119                        $this->planner_process_interval();
2120
2121                        // generate the planner view
2122                        //
2123                        if (!$home)
2124                        {
2125                                echo '<p>'.$this->planner_print_rows();
2126                        }
2127                        else
2128                        {
2129                                return $this->planner_print_rows();
2130                        }
2131                }
2132
2133                function set_planner_group_members()
2134                {
2135                        $type = $GLOBALS['phpgw']->accounts->get_type($this->bo->owner);
2136
2137                        if ($type == 'g') // display schedule of all group members
2138                        {
2139                                $members = array();
2140                                $ids = $GLOBALS['phpgw']->acl->get_ids_for_location($this->bo->owner, 1, 'phpgw_group');
2141                                while (list(,$id) = each($ids))
2142                                {
2143                                        if ($this->bo->check_perms(PHPGW_ACL_READ,0,$id))
2144                                        {
2145                                                $members[$GLOBALS['phpgw']->common->grab_owner_name($id)] = $id;
2146                                        }
2147                                }
2148                                ksort($members);
2149                                $this->planner_group_members = $members;
2150                        }
2151                        else
2152                        {
2153                                $this->planner_group_members = array(
2154                                        $GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner) => $this->bo->owner
2155                                );
2156                        }
2157                }
2158
2159                /**
2160                 * planner_prepare - prepare the planner view
2161                 *
2162                 * - sets global environment variables
2163                 * - initializes class member variables used in multiple planner related functions
2164                 * - generates header lines for the planner view (month, calendar week, days)
2165                 */
2166                function planner_prepare($no_header = False)
2167                {
2168                        // set some globals
2169                        //
2170                        if (!$no_header)
2171                        {
2172                                unset($GLOBALS['phpgw_info']['flags']['noheader']);
2173                                unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2174                                if ($this->always_app_header) $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Group Planner');
2175                                $GLOBALS['phpgw']->common->phpgw_header();
2176                        }
2177
2178                        // intervals_per_day can be configured in preferences now :-)
2179                        //
2180                        if (! $this->bo->prefs['calendar']['planner_intervals_per_day'])
2181                        {
2182                                $GLOBALS['phpgw']->preferences->add('calendar','planner_intervals_per_day',3);
2183                                $GLOBALS['phpgw']->preferences->save_repository();
2184                                $this->bo->prefs['calendar']['planner_intervals_per_day'] = 3;
2185                        }
2186                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2187                        $this->bo->save_sessiondata();  // need to save $this->bo->save_owner
2188
2189                        // set title for table and rows of planner view
2190                        //
2191                        if ($this->bo->sortby == 'category')
2192                        {
2193                                $title = lang('Category');
2194                        }
2195                        else
2196                        {
2197                                $title = lang('User');
2198
2199                                $this->set_planner_group_members();
2200                        }
2201
2202                        // create/initialize variables directly used for HTML code generation
2203                        //
2204                        $this->planner_header = array();
2205                        $this->planner_rows   = array();
2206
2207                        // generate header lines with days and associated months
2208                        //
2209                        $hdr = &$this->planner_header;
2210                        $hdr[0]['0']  = $title;
2211                        $hdr[0]['.0'] = 'rowspan="3"';
2212
2213                        $this->planner_days = 0; // reset
2214
2215                        $m = $this->bo->month;
2216                        $y = $this->bo->year;
2217                        $this->bo->read_holidays($y);
2218                        for ($i=1; $i<=$this->bo->num_months; $i++,$m++)
2219                        {
2220                                if ($m == 13)
2221                                {
2222                                        $m = 1; $y++; // "wrap-around" into new year
2223                                        $this->bo->read_holidays($y);
2224                                }
2225                                $days = $GLOBALS['phpgw']->datetime->days_in_month($m,$y);
2226
2227                                $d     = mktime(0,0,0,$m,1,$y);
2228                                $month = lang(date('F', $d)).strftime(' %Y', $d);
2229                                $color = $this->theme[$m % 2 || $this->bo->num_months == 1 ? 'th_bg' : 'row_on'];
2230                                $cols  = $days * $intervals_per_day;
2231
2232                                $hdr[0]['.'.$i] = 'bgcolor="'.$color.'" colspan="'.$cols.'" align="center"';
2233                                $prev_month = sprintf('%04d%02d01',$y-($m==1),$m > 1?$m-1:12);
2234                                $next_month = sprintf('%04d%02d01',$y+($m==12),$m < 12?$m+1:1);
2235                                $prev_link = $GLOBALS['phpgw']->link('/index.php',"menuaction=calendar.uicalendar.planner&date=$prev_month");
2236                                $next_link = $GLOBALS['phpgw']->link('/index.php',"menuaction=calendar.uicalendar.planner&date=$next_month");
2237                                $hdr[0][$i] = "<b><a href=\"$prev_link\">&lt;&lt;</a> &nbsp $month &nbsp <a href=\"$next_link\">&gt;&gt;</a></b>";
2238
2239                                $add_owner = array();   // if no add-rights on the showed cal use own cal
2240                                if (!$this->bo->save_owner && !$this->bo->check_perms(PHPGW_ACL_ADD) ||
2241                                        !$this->bo->check_perms(PHPGW_ACL_ADD,0,$this->bo->save_owner))
2242                                {
2243                                        $add_owner = array(
2244                                                'owner' => $GLOBALS['phpgw_info']['user']['account_id']
2245                                        );
2246                                }
2247                                for ($d=1; $d<=$days; $d++)
2248                                {
2249                                        $dayname = substr(lang(date('D',mktime(0,0,0,$m,$d,$y))),0,2);
2250                                        $index = $d + $this->planner_days;
2251
2252                                        $hdr[2]['.'.$index] = 'colspan="'.$intervals_per_day.'" align="center"';
2253
2254                                        // highlight today, saturday, sunday and holidays
2255                                        //
2256                                        $color = $this->theme['row_off'];
2257                                        $dow = $GLOBALS['phpgw']->datetime->day_of_week($y,$m,$d);
2258                                        $date = sprintf("%04d%02d%02d",$y,$m,$d);
2259                                        if ($date == date('Ymd'))
2260                                        {
2261                                                $color = $GLOBALS['phpgw_info']['theme']['cal_today'];
2262                                        }
2263                                        elseif ($this->bo->cached_holidays[$date])
2264                                        {
2265                                                $color = $this->bo->holiday_color;
2266                                                $hdr[2]['.'.$index] .= ' title="'.$this->bo->cached_holidays[$date][0]['name'].'"';
2267                                        }
2268                                        elseif ($dow == 0 || $dow == 6)
2269                                        {
2270                                                $color = $this->bo->theme['th_bg'];
2271                                        }
2272
2273                                        $hdr[2]['.'.$index] .= " bgcolor=\"$color\"";
2274
2275                                        $hdr[2][$index] = '<a href="'.$this->html->link('/index.php',
2276                                                                array(
2277                                                                        'menuaction' => 'calendar.uicalendar.add',
2278                                                                        'date' => $date
2279                                                                ) + $add_owner
2280                                                        ).'">'.$dayname.'<br>'.$d.'</a>';
2281                                }
2282                                $this->planner_days += $days;
2283                        }
2284
2285                        // create/initialize member variables describing the time interval to be displayed
2286                        //
2287                        $this->planner_end_month = $m - 1;
2288                        $this->planner_end_year  = $y;
2289                        $this->planner_days_in_end_month = $GLOBALS['phpgw']->datetime->days_in_month($this->planner_end_month,$this->planner_end_year);
2290                        $this->planner_firstday = (int)(date('Ymd',mktime(0,0,0,$this->bo->month,1,$this->bo->year)));
2291                        $this->planner_lastday  = (int)(date('Ymd',mktime(0,0,0,$this->planner_end_month,$this->planner_days_in_end_month,$this->planner_end_year)));
2292
2293                        // generate line with calendar weeks in observed interval
2294                        //
2295                        $d      = mktime(0,0,0,$this->bo->month,1,$this->bo->year);
2296                        $w      = date('W', $d);
2297                        if ($w == 'W')  // php < 4.1
2298                        {
2299                                $w = 1 + (int)(date('z',$d) / 7);       // a bit simplistic
2300                        }
2301                        $offset = (7-date('w', $d)+1)%7;
2302                        $offset = $offset == 0 ? 7 : $offset;
2303                        $color = $this->theme[$w % 2 ? 'th_bg' : 'row_on'];
2304
2305                        $hdr[1]['.'.$w] = 'bgcolor="'.$color.'" colspan="'.$intervals_per_day * $offset.'" align="left"';
2306                        $hdr[1][$w] = '';
2307                        if ($offset >= 3)
2308                        {
2309
2310//NDEE: style! (groupplanner)
2311                                $hdr[1][$w] .= '<font size="-2"> '.lang('week').' '.$w.' </font>';
2312                        }
2313                        $days_left = $this->planner_days - $offset;
2314
2315                        $colspan = 7 * $intervals_per_day;
2316                        while ($days_left > 0)
2317                        {
2318                                $colspan = ($days_left < 7) ? $days_left*$intervals_per_day : $colspan;
2319                                $d += 604800; // 7 days whith 24 hours (1h == 3600 seconds) each
2320                                $w = date('W', $d);
2321                                if ($w == 'W')  // php < 4.1
2322                                {
2323                                        $w = 1 + (int)(date('z',$d) / 7);       // a bit simplistic
2324                                }
2325                                $w += (isset($hdr[1][$w]))?1:0; // bug in "date('W')" ?
2326
2327                                $color = $this->theme[$w % 2 ? 'th_bg' : 'row_on'];
2328                                $hdr[1]['.'.$w] = 'bgcolor="'.$color.'" colspan="'.$colspan.'" align="left"';
2329                                $hdr[1][$w] = '';
2330                                if ($days_left >= 3)
2331                                {
2332
2333//NDEE: style! (groupplanner)
2334                                        $hdr[1][$w] .= '<font size="-2"> '.lang('week').' '.$w.' </font>';
2335                                }
2336
2337                                $days_left -= 7;
2338                        }
2339                        return $hdr;
2340                }
2341
2342                /**
2343                 * planner_update_row - update a row of the planner view
2344                 *
2345                 * parameters are:
2346                 *   - index (e.g. user id, category id, ...) of the row
2347                 *   - name/title of the row (e.g. user name, category name)
2348                 *   - the event to be integrated
2349                 *   - list of categories associated with the event
2350                 *   - first and last cell of the row
2351                 */
2352                function planner_update_row($index,$name,$event,$cat,$start_cell,$end_cell)
2353                {
2354                        $rows              = &$this->planner_rows;
2355                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2356                        $is_private        = !$this->bo->check_perms(PHPGW_ACL_READ,$event);
2357
2358                        $view = $this->html->link('/index.php',
2359                                array(
2360                                        'menuaction' => 'calendar.uicalendar.view',
2361                                        'cal_id' => $event['id'],
2362                                        'date' => date('Ymd',$this->bo->maketime($event['start']))
2363                                )
2364                        );
2365
2366                        // check how many lines are needed for this "row" (currently: user or category)
2367                        $i = 0;
2368                        do {
2369                                ++$i;
2370
2371                                $k = $index.'_'.$i;
2372                                $ka = '.nr_'.$k;
2373
2374                                if (!isset($rows[$k]))
2375                                {
2376                                        if ($i > 1)                             // further line - no name
2377                                        {
2378                                                $rows[$k] = array();
2379                                                $rows[$index.'_1']['._name'] = 'rowspan="'.$i.'"';
2380                                        }
2381                                        else
2382                                        {
2383                                                $rows[$k]['_name'] = $name;
2384                                        }
2385                                        $rows[$ka] = 0;
2386                                }
2387                                $rows[$index.'_1']['._name'] .= ' nowrap'; // title must be one row
2388
2389                                $row = &$rows[$k];
2390                                $akt_cell = &$rows[$ka];
2391                        } while ($akt_cell > $start_cell);
2392
2393                        $id = $event['id'].'-'.date('Ymd',$this->bo->maketime($event['start']));
2394                        if ($akt_cell < $start_cell)
2395                        {
2396                                $row[$id.'_1'] = '&nbsp;';
2397                                $row['.'.$id.'_1'] = 'colspan="'.($start_cell-$akt_cell).'"';
2398                        }
2399                        $opt = &$row['.'.$id.'_2'];
2400                        $cel = &$row[$id.'_2'];
2401
2402                        // if possible, display information about event within cells representing it
2403                        //
2404                        if ($start_cell < $end_cell)
2405                        {
2406                                $colspan = $end_cell - $start_cell;
2407                                $opt .= "colspan=".(1 + $colspan);
2408
2409                                if (!$is_private)
2410                                {
2411                                        $max_chars = (int)(3*$colspan/$intervals_per_day-2);
2412
2413                                        $min_chars = 3; // minimum for max_chars to display -> this should be configurable
2414                                        if ($max_chars >= $min_chars)
2415                                        {
2416                                                $len_title = strlen($event['title']);
2417
2418                                                if ($len_title <= $max_chars)
2419                                                {
2420                                                        $title = $event['title'];
2421                                                        $max_chars -= $len_title + 3; // 3 chars for separator: " - "
2422                                                        $len_descr = strlen($event['description']);
2423
2424                                                        if ($len_descr > 0 && $len_descr <= $max_chars)
2425                                                        {
2426                                                                $event['print_description'] = 'yes';
2427                                                        }
2428                                                }
2429                                                else
2430                                                {
2431                                                        $has_amp = strpos($event['title'],'&amp;');
2432                                                       
2433//NDEE: event title gets cut here                                                       
2434                                                        $title = substr($event['title'], 0 , $max_chars-1+($has_amp!==False&&$has_amp<$max_chars?4:0)).'...';
2435                                                }
2436                                                $event['print_title'] = 'yes';
2437                                        }
2438                                }
2439                        }
2440
2441                        if ($bgcolor=$cat['color'])
2442                        {
2443                                $opt .= ' bgcolor="'.$bgcolor.'"';
2444                        }
2445                        if (!$is_private)
2446                        {
2447                                $opt .= ' title="'.lang('Title').": ".$event['title'];
2448                                if ($event['description'])
2449                                {
2450                                        $opt .= "\n".lang('Description').": ".$event['description'];
2451                                }
2452                        }
2453                        else
2454                        {
2455                                $opt .= ' title="'.lang('You do not have permission to read this record!');
2456                        }
2457
2458                        $start = $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset);
2459                        $end = $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset);
2460                        $opt .= "\n".lang('Start Date/Time').": ".$start."\n".lang('End Date/Time').": ".$end;
2461
2462                        if ($event['location'] && !$is_private)
2463                        {
2464                                $opt .= " \n".lang('Location').": ".$event['location'];
2465                        }
2466
2467                        if (!$is_private)
2468                        {
2469                                $opt .= '" onClick="location=\''.$view.'\'"';
2470                                $cel = '<a href="'.$view.'">';
2471                        }
2472                        else
2473                        {
2474                                $opt .= '"';
2475                                $cel = '';
2476                        }
2477                        $opt .= ' class="planner-cell"';
2478
2479                        if ($event['priority'] == 3)
2480                        {
2481                                $cel .= $this->html->image('calendar','mini-calendar-bar.gif','','border="0"');
2482                        }
2483                        if ($event['recur_type'])
2484                        {
2485                                $cel .= $this->html->image('calendar','recur.gif','','border="0"');
2486                        }
2487                        $cel .= $this->html->image('calendar',count($event['participants'])>1?'multi_3.gif':'single.gif',$this->planner_participants($event['participants']),'border="0"');
2488                        $cel .= '</a>';
2489
2490                        if (isset($event['print_title']) && $event['print_title'] == 'yes')
2491                        {
2492
2493//NDEE: style! where?
2494                                $cel .= '<font size="-2"> '.$title.' </font>';
2495                        }
2496                        if (isset($event['print_description']) && $event['print_description'] == 'yes')
2497                        {
2498
2499//NDEE: style! where ?
2500                                $cel .= '<font size="-2"> - '.$event['description'].' </font>';
2501                        }
2502
2503                        $akt_cell = $end_cell + 1;
2504
2505                        return $rows;
2506                }
2507
2508                function planner_process_event($event)
2509                {
2510                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2511                        $interval = $this->planner_intervals[$intervals_per_day];
2512                        $last_cell = $intervals_per_day * $this->planner_days - 1;
2513
2514                        $rows = &$this->planner_rows;
2515
2516                        // caluculate start and end of event
2517                        //
2518                        $event_start = (int)(date('Ymd',mktime(
2519                                0,0,0,
2520                                $event['start']['month'],
2521                                $event['start']['mday'],
2522                                $event['start']['year']
2523                        )));
2524                        $event_end   = (int)(date('Ymd',mktime(
2525                                0,0,0,
2526                                $event['end']['month'],
2527                                $event['end']['mday'],
2528                                $event['end']['year']
2529                        )));
2530
2531                        // calculate first cell of event within observed interval
2532                        //
2533                        if ($event_start >= $this->planner_firstday)
2534                        {
2535                                $days_between = $GLOBALS['phpgw']->datetime->days_between($this->bo->month,1,$this->bo->year,$event['start']['month'],$event['start']['mday'],$event['start']['year']);
2536
2537                                $start_cell = $intervals_per_day * $days_between + $interval[$event['start']['hour']];
2538                        }
2539                        else
2540                        {
2541                                $start_cell = 0;
2542                        }
2543
2544                        // calculate last cell of event within observed interval
2545                        //
2546                        if ($event_end <= $this->planner_lastday)
2547                        {
2548                                $days_between = $GLOBALS['phpgw']->datetime->days_between($this->bo->month,1,$this->bo->year,$event['end']['month'],$event['end']['mday'],$event['end']['year']);
2549                                $end_cell = $intervals_per_day * $days_between + $interval[$event['end']['hour']];
2550                                if ($end_cell == $start_cell && $end_cell < $last_cell)
2551                                {
2552                                        $end_cell++;    // min. width 1 interval
2553                                }
2554                        }
2555                        else
2556                        {
2557                                $end_cell = $last_cell;
2558                        }
2559                        // get the categories associated with event
2560                        //
2561                        if ($c = $event['category'])
2562                        {
2563                                list($cat)   = $this->planner_category($event['category']);
2564                                if ($cat['parent'])
2565                                {
2566                                        list($pcat) = $this->planner_category($c = $cat['parent']);
2567                                }
2568                                else
2569                                {
2570                                        $pcat = $cat;
2571                                }
2572                        }
2573                        else
2574                        {
2575                                $cat = $pcat = array( 'name' => lang('none'));
2576                        }
2577
2578                        // add the event to it`s associated row(s)
2579                        //
2580                        if ($this->bo->sortby == 'category')
2581                        {
2582                                // event needs to show up in it`s category`s row
2583                                //
2584                                $this->planner_update_row($c,$pcat['name'],$event,$cat,$start_cell,$end_cell);
2585                        }
2586                        elseif ($this->bo->sortby == 'user')
2587                        {
2588                                // event needs to show up in rows of all participants that are also owners
2589                                //
2590                                reset($this->planner_group_members);
2591                                while(list($user_name,$id) = each($this->planner_group_members))
2592                                {
2593                                        $status = $event['participants'][$id];
2594
2595                                        if (isset($status) && $status != 'R')
2596                                        {
2597                                                $this->planner_update_row($user_name,$user_name,$event,$cat,$start_cell,$end_cell);
2598                                        }
2599                                }
2600                        }
2601                }
2602
2603                function planner_pad_rows()
2604                {
2605                        $rows = &$this->planner_rows;
2606
2607                        if ($this->bo->sortby == 'user')
2608                        {
2609                                // add empty rows for users that do not participante in any event
2610                                //
2611                                reset($this->planner_group_members);
2612                                while(list($user_name,$id) = each($this->planner_group_members))
2613                                {
2614                                        $k  = $user_name.'_1';
2615                                        $ka = '.nr_'.$k;
2616
2617                                        if (!isset($rows[$k]))
2618                                        {
2619                                                $rows[$k]['_name'] = $user_name;
2620                                                $rows[$k]['._name'] .= ' nowrap';
2621                                                $rows[$ka] = 0;
2622                                        }
2623                                }
2624                        }
2625
2626                        // fill the remaining cols
2627                        //
2628                        $last_cell = $this->bo->prefs['calendar']['planner_intervals_per_day'] * $this->planner_days - 1;
2629
2630                        ksort($rows);
2631                        while (list($k,$r) = each($rows))
2632                        {
2633                                if (is_array($r))
2634                                {
2635                                        $rows['.'.$k] = 'bgcolor="'.$GLOBALS['phpgw']->nextmatchs->alternate_row_color().'"';
2636                                        $row = &$rows[$k];
2637                                        $akt_cell = &$rows['.nr_'.$k];
2638                                        if ($akt_cell < $last_cell)
2639                                        {
2640                                                $row['3'] = '&nbsp';
2641                                                $row['.3'] = 'colspan="'.(1+$last_cell-$akt_cell).'"';
2642                                        }
2643                                }
2644                        }
2645                }
2646
2647                function planner_print_rows()
2648                {
2649                        $bgcolor = 'bgcolor="'.$this->theme['th_bg'].'"';
2650                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2651
2652                        if ($this->debug)
2653                        {
2654                                _debug_array($this->planner_rows);
2655                                reset($this->planner_rows);
2656                        }
2657                        return $this->html->table(
2658                                array(
2659                                        '_hdr0' => $this->planner_header[0],
2660                                        '._hdr0' => $bgcolor,
2661                                        '_hdr1' => $this->planner_header[1],
2662                                        '._hdr1' => $bgcolor,
2663                                        '_hdr2' => $this->planner_header[2],
2664                                        '._hdr2' => $bgcolor
2665                                )+$this->planner_rows,
2666                                'width="100%" cols="'.(1+$this->planner_days_in_end_month*$intervals_per_day).'"');
2667                }
2668
2669                function planner_process_interval()
2670                {
2671                        // generate duplicate free list of events within observed interval
2672                        //
2673                        $this->bo->store_to_cache(
2674                                Array(
2675                                        'syear' => $this->bo->year,
2676                                        'smonth'        => $this->bo->month,
2677                                        'sday'  => 1,
2678                                        'eyear' => $this->planner_end_year,
2679                                        'emonth'        => $this->planner_end_month,
2680                                        'eday'  => $this->planner_days_in_end_month
2681                                )
2682                        );
2683                        $this->bo->remove_doubles_in_cache($this->planner_firstday,$this->planner_lastday);
2684
2685                        // process all events within observed interval
2686                        //
2687                        for($v=$this->planner_firstday;$v<=$this->planner_lastday;$v++)
2688                        {
2689                                $daily = $this->bo->cached_events[$v];
2690
2691                                print_debug('For Date',$v);
2692                                print_debug('Count of items',count($daily));
2693
2694                                // process all events on day $v
2695                                //
2696                                if (is_array($daily)) foreach($daily as $event)
2697                                {
2698                                        if ($event['recur_type'])       // calculate start- + end-datetime for recuring events
2699                                        {
2700                                                $this->bo->set_recur_date($event,$v);
2701                                        }
2702                                        if (!$this->bo->rejected_no_show($event))
2703                                        {
2704                                                $this->planner_process_event($event);
2705                                        }
2706                                }
2707                        }
2708                        $this->planner_pad_rows();
2709                }
2710
2711                function matrixselect()
2712                {
2713                        $datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
2714
2715                        $sb = CreateObject('phpgwapi.sbox');
2716
2717                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
2718                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2719                        if ($this->always_app_header) $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Matrixview');
2720                        $GLOBALS['phpgw']->common->phpgw_header();
2721
2722                        $p = &$GLOBALS['phpgw']->template;
2723                        $p->set_file(
2724                                Array(
2725                                        'mq'            => 'matrix_query.tpl',
2726                                        'form_button'   => 'form_button_script.tpl'
2727                                )
2728                        );
2729                        $p->set_block('mq','matrix_query','matrix_query');
2730                        $p->set_block('mq','list','list');
2731
2732                        $p->set_var(array(
2733                                'title'                 => lang('Daily Matrix View'),
2734                                'th_bg'                 => $this->theme['th_bg'],
2735                                'action_url'    => $this->page('viewmatrix')
2736                        ));
2737
2738// Date
2739                        $var[] = Array(
2740                                'field' =>      lang('Date'),
2741                                'data'  =>      $GLOBALS['phpgw']->common->dateformatorder(
2742                                        $sb->getYears('year',(int)$GLOBALS['phpgw']->common->show_date($datetime,'Y'),(int)$GLOBALS['phpgw']->common->show_date($datetime,'Y')),
2743                                        $sb->getMonthText('month',(int)$GLOBALS['phpgw']->common->show_date($datetime,'n')),
2744                                        $sb->getDays('day',(int)$GLOBALS['phpgw']->common->show_date($datetime,'d'))
2745                                )
2746                        );
2747
2748// View type
2749                        $var[] = Array(
2750                                'field' =>      lang('View'),
2751                                'data'  =>      '<select name="matrixtype">'."\n"
2752                                        . '<option value="free/busy" selected>'.lang('free/busy').'</option>'."\n"
2753                                        . '<option value="weekly">'.lang('Weekly').'</option>'."\n"
2754                                        . '</select>'."\n"
2755                        );
2756
2757// Participants
2758                        $accounts = $GLOBALS['phpgw']->acl->get_ids_for_location('run',1,'calendar');
2759                        $users = Array();
2760                        for($i=0;$i<count($accounts);$i++)
2761                        {
2762                                $user = $accounts[$i];
2763                                if(!isset($users[$user]))
2764                                {
2765                                        $users[$user] = $GLOBALS['phpgw']->common->grab_owner_name($user);
2766                                        if($GLOBALS['phpgw']->accounts->get_type($user) == 'g')
2767                                        {
2768                                                $group_members = $GLOBALS['phpgw']->acl->get_ids_for_location($user,1,'phpgw_group');
2769                                                if($group_members != False)
2770                                                {
2771                                                        for($j=0;$j<count($group_members);$j++)
2772                                                        {
2773                                                                if(!isset($users[$group_members[$j]]))
2774                                                                {
2775                                                                        $users[$group_members[$j]] = $GLOBALS['phpgw']->common->grab_owner_name($group_members[$j]);
2776                                                                }
2777                                                        }
2778                                                }
2779                                        }
2780                                }
2781                        }
2782
2783                        $num_users = count($users);
2784
2785                        if ($num_users > 50)
2786                        {
2787                                $size = 15;
2788                        }
2789                        elseif ($num_users > 5)
2790                        {
2791                                $size = 5;
2792                        }
2793                        else
2794                        {
2795                                $size = $num_users;
2796                        }
2797                        $str = '';
2798                        @asort($users);
2799                        @reset($users);
2800                        while ($user = each($users))
2801                        {
2802                                if(($GLOBALS['phpgw']->accounts->exists($user[0]) && $this->bo->check_perms(PHPGW_ACL_READ,0,$user[0])) || $GLOBALS['phpgw']->accounts->get_type($user[0]) == 'g')
2803                                {
2804                                        $str .= '    <option value="'.$user[0].'">('.$GLOBALS['phpgw']->accounts->get_type($user[0]).') '.$user[1].'</option>'."\n";
2805                                }
2806                        }
2807                        $var[] = Array(
2808                                'field' =>      lang('Participants'),
2809                                'data'  =>      "\n".'   <select name="participants[]" multiple size="'.$size.'">'."\n".$str.'   </select>'."\n"
2810                        );
2811
2812                        for($i=0;$i<count($var);$i++)
2813                        {
2814                                $this->output_template_array($p,'rows','list',$var[$i]);
2815                        }
2816
2817                        $vars = Array(
2818                                'submit_button'         => lang('View'),
2819                                'action_url_button'     => $this->bo->return_to ? $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to) : $this->page(''),
2820                                'action_text_button'    => lang('Cancel'),
2821                                'action_confirm_button' => '',
2822                                'action_extra_field'    => ''
2823                        );
2824
2825                        $p->set_var($vars);
2826                        $p->parse('cancel_button','form_button');
2827                        $p->pparse('out','matrix_query');
2828                }
2829
2830                function viewmatrix()
2831                {
2832                        if ($_POST['cancel'])
2833                        {
2834                                $this->index();
2835                        }
2836                        $participants = $_POST['participants'];
2837                        $parts = Array();
2838                        $acct = CreateObject('phpgwapi.accounts',$this->bo->owner);
2839
2840                        if (is_array($participants))
2841                        {
2842                                foreach($participants as $participant)
2843                                {
2844                                        switch ($GLOBALS['phpgw']->accounts->get_type($participant))
2845                                        {
2846                                                case 'g':
2847                                                        if ($members = $acct->member((int)$participant))
2848                                                        {
2849                                                                foreach($members as $member)
2850                                                                {
2851                                                                        if($this->bo->check_perms(PHPGW_ACL_READ,0,$member['account_id']))
2852                                                                        {
2853                                                                                $parts[$member['account_id']] = True;
2854                                                                        }
2855                                                                }
2856                                                        }
2857                                                        break;
2858                                                case 'u':
2859                                                        if($this->bo->check_perms(PHPGW_ACL_READ,0,$participant))
2860                                                        {
2861                                                                $parts[$participant] = 1;
2862                                                        }
2863                                                        break;
2864                                        }
2865                                }
2866                                unset($acct);
2867                        }
2868                        $participants = array_keys($parts);     // get id's as values and a numeric index
2869
2870                        // Defined - into session - who participates
2871                        $GLOBALS['phpgw']->session->appsession("participants", NULL, implode(";", $participants));
2872
2873                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
2874                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2875                        if ($this->always_app_header) $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Matrixview');
2876                        $GLOBALS['phpgw']->common->phpgw_header();
2877
2878                        switch($_POST['matrixtype'])
2879                        {
2880                                case 'free/busy':
2881                                        $freetime = $GLOBALS['phpgw']->datetime->gmtdate(mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year));
2882                                        echo '<br>'.$this->timematrix(
2883                                                Array(
2884                                                        'date'          => $freetime,
2885                                                        'starttime'     => $this->bo->splittime('000000',False),
2886                                                        'endtime'       => 0,
2887                                                        'participants'  => $parts
2888                                                )
2889                                        );
2890                                        break;
2891                                case 'weekly':
2892                                        echo '<br>'.$this->display_weekly(
2893                                                Array(
2894                                                        'date'          => sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day),
2895                                                        'showyear'      => true,
2896                                                        'owners'        => $participants
2897                                                )
2898                                        );
2899                                        break;
2900                        }
2901                        echo "\n<br>\n".'<form action="'.$this->page('viewmatrix').'" method="post" name="matrixform">'."\n";
2902                        echo ' <table cellpadding="5"><tr><td>'."\n";
2903                        echo '  <input type="hidden" name="year" value="'.$this->bo->year.'">'."\n";
2904                        echo '  <input type="hidden" name="month" value="'.$this->bo->month.'">'."\n";
2905                        echo '  <input type="hidden" name="day" value="'.$this->bo->day.'">'."\n";
2906                        echo '  <input type="hidden" name="matrixtype" value="'.$_POST['matrixtype'].'">'."\n";
2907                        foreach($participants as $part)
2908                        {
2909                                echo '  <input type="hidden" name="participants[]" value="'.$part.'">'."\n";
2910                        }
2911                        echo '  <input type="submit" name="refresh" value="'.lang('Refresh').'">'."\n";
2912                        echo ' </td><td>'."\n";
2913                        echo '  <input type="submit" name="cancel" value="'.lang('Cancel').'">'."\n";
2914                        echo ' </td></tr></table>'."\n";
2915                        echo '</form>'."\n";
2916                }
2917
2918                function search()
2919                {
2920                        if (empty($_POST['keywords']))
2921                        {
2922                                // If we reach this, it is because they didn't search for anything
2923                                // or they used one of the selectboxes (year, month, week) in the search-result
2924                                // attempt to send them back to where they came from.
2925
2926                                $vars['menuaction'] = isset($_POST['from']) && $_POST['from'] != 'calendar.uicalendar.search' ?
2927                                        $_POST['from'] : 'calendar.uicalendar.index';
2928
2929                                foreach(array('date','year','month','day') as $field)
2930                                {
2931                                        if (isset($_POST[$field]))
2932                                        {
2933                                                $vars[$field] = $_POST[$field];
2934                                        }
2935                                }
2936                                $GLOBALS['phpgw']->redirect_link('/index.php',$vars);
2937                        }
2938
2939                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
2940                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2941                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Search Results');
2942                        $GLOBALS['phpgw']->common->phpgw_header();
2943
2944                        $error = '';
2945
2946                        $matches = 0;
2947
2948                        // There is currently a problem searching in with repeated events.
2949                        // It spits back out the date it was entered.  I would like to to say that
2950                        // it is a repeated event.
2951
2952                        // This has been solved by the little icon indicator for recurring events.
2953
2954                        $event_ids = $this->bo->search_keywords($_POST['keywords']);
2955                        foreach($event_ids as $key => $id)
2956                        {
2957                                $event = $this->bo->read_entry($id);
2958
2959                                if(!$this->bo->check_perms(PHPGW_ACL_READ,$event))
2960                                {
2961                                        continue;
2962                                }
2963
2964                                $datetime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
2965
2966                                $info[strval($event['id'])] = array(
2967                                        'tr_color'      => $GLOBALS['phpgw']->nextmatchs->alternate_row_color(),
2968                                        'date'          => $GLOBALS['phpgw']->common->show_date($datetime),
2969                                        'link'          => $this->link_to_entry($event,$event['start']['month'],$event['start']['mday'],$event['start']['year'])
2970                                );
2971
2972                        }
2973                        $matches = count($event_ids);
2974
2975                        if ($matches == 1)
2976                        {
2977                                $quantity = lang('1 match found').'.';
2978                        }
2979                        elseif ($matches > 0)
2980                        {
2981                                $quantity = lang('%1 matches found',$matches).'.';
2982                        }
2983                        else
2984                        {
2985                                echo '<b>'.lang('Error').':</b>'.lang('no matches found');
2986                                return;
2987                        }
2988
2989                        $p = $GLOBALS['phpgw']->template;
2990                        $p->set_file(
2991                                Array(
2992                                        'search_form'   => 'search.tpl'
2993                                )
2994                        );
2995                        $p->set_block('search_form','search','search');
2996                        $p->set_block('search_form','search_list_header','search_list_header');
2997                        $p->set_block('search_form','search_list','search_list');
2998                        $p->set_block('search_form','search_list_footer','search_list_footer');
2999
3000                        $var = Array(
3001                                'th_bg'         => $this->theme['th_bg'],
3002                                'search_text'   => lang('Search Results'),
3003                                'quantity'      => $quantity
3004                        );
3005                        $p->set_var($var);
3006
3007                        if($matches > 0)
3008                        {
3009                                $p->parse('rows','search_list_header',True);
3010                        }
3011                        foreach($info as $id => $data)
3012                        {
3013                                $p->set_var($data);
3014                                $p->parse('rows','search_list',True);
3015                        }
3016
3017                        if($matches > 0)
3018                        {
3019                                $p->parse('rows','search_list_footer',True);
3020                        }
3021
3022                        $p->pparse('out','search');
3023                }
3024
3025                /* Private functions */
3026                function _debug_sqsof()
3027                {
3028                        $data = array(
3029                                'filter'     => $this->bo->filter,
3030                                'cat_id'     => $this->bo->cat_id,
3031                                'owner'      => $this->bo->owner,
3032                                'year'       => $this->bo->year,
3033                                'month'      => $this->bo->month,
3034                                'day'        => $this->bo->day,
3035                                'sortby'     => $this->bo->sortby,
3036                                'num_months' => $this->bo->num_months
3037                        );
3038                        Return _debug_array($data,False);
3039                }
3040
3041                function output_template_array(&$p,$row,$list,$var)
3042                {
3043                        if (!isset($var['hidden_vars']))
3044                        {
3045                                $var['hidden_vars'] = '';
3046                        }
3047                        if (!isset($var['tr_color']))
3048                        {
3049                                $var['tr_color'] = $GLOBALS['phpgw']->nextmatchs->alternate_row_color();
3050                        }
3051                        $p->set_var($var);
3052                        $p->parse($row,$list,True);
3053                }
3054
3055                function page($_page='',$params='')
3056                {
3057                        if($_page == '')
3058                        {
3059                                $page_ = explode('.',$this->bo->prefs['calendar']['defaultcalendar']);
3060                                $_page = $page_[0];
3061
3062                                if ($_page=='planner_cat' || $_page=='planner_user')
3063                                {
3064                                        $_page = 'planner';
3065                                }
3066                                elseif ($_page=='index' || ($_page != 'day' && $_page != 'week' && $_page != 'month' && $_page != 'year' && $_page != 'planner'))
3067                                {
3068                                        $_page = 'month';
3069                                        $GLOBALS['phpgw']->preferences->add('calendar','defaultcalendar','month');
3070                                        $GLOBALS['phpgw']->preferences->save_repository();
3071                                }
3072                        }
3073                        if($GLOBALS['phpgw_info']['flags']['currentapp'] == 'home' ||
3074                                strstr($GLOBALS['phpgw_info']['flags']['currentapp'],'mail'))   // email, felamimail, ...
3075                        {
3076                                $page_app = 'calendar';
3077                        }
3078                        else
3079                        {
3080                                $page_app = $GLOBALS['phpgw_info']['flags']['currentapp'];
3081                        }
3082                        if (is_array($params))
3083                        {
3084                                $params['menuaction'] = $page_app.'.ui'.$page_app.'.'.$_page;
3085                        }
3086                        else
3087                        {
3088                                $params = 'menuaction='.$page_app.'.ui'.$page_app.'.'.$_page.$params;
3089                        }
3090                        return $GLOBALS['phpgw']->link('/index.php',$params);
3091                }
3092
3093                function header()
3094                {
3095                        $cols = 8;
3096                        if($this->bo->check_perms(PHPGW_ACL_PRIVATE) == True)
3097                        {
3098                                $cols++;
3099                        }
3100
3101                        $tpl = $GLOBALS['phpgw']->template;
3102                        $tpl->set_unknowns('remove');
3103
3104                        if (!file_exists($file = $this->template_dir.'/header.inc.php'))
3105                        {
3106                                $file = PHPGW_SERVER_ROOT . '/calendar/templates/default/header.inc.php';
3107                        }
3108                       
3109                        include($file);
3110                        $refer = explode('.',$GLOBALS['HTTP_GET_VARS']['menuaction']);
3111                        if($refer[2] != 'view') {
3112                        $header = $tpl->fp('out','head');
3113                        unset($tpl);
3114                        echo $header;
3115                }
3116                        unset($tpl);
3117                }
3118
3119                function footer()
3120                {
3121                        $menuaction = $_GET['menuaction'];
3122                        list(,,$method) = explode('.',$menuaction);
3123
3124                        if (@$this->bo->printer_friendly)
3125                        {
3126                                return;
3127                        }
3128
3129                        $p = $GLOBALS['phpgw']->template;
3130
3131                        $p->set_file(
3132                                Array(
3133                                        'footer'        => 'footer.tpl',
3134                                        'form_button'   => 'form_button_script.tpl'
3135                                )
3136                        );
3137                        $p->set_block('footer','footer_table','footer_table');
3138                        $p->set_block('footer','footer_row','footer_row');
3139                        $p->set_block('footer','blank_row','blank_row');
3140                        $p->set_block('footer','num_dias','num_dias');
3141
3142                        $m = $this->bo->month;
3143                        $y = $this->bo->year;
3144
3145                        $hoje = date('Ymd',$GLOBALS['phpgw']->datetime->gmtnow);
3146                        $mes_hoje = (int)substr($hoje,4,2);
3147                        $mes_footer = (int)substr($_POST['date'],4,2);
3148                        if($_GET['sday'])
3149                        {
3150                                if($_GET['month'] == $mes_hoje)
3151                                {
3152                                        $day = $this->bo->day;
3153                                }
3154                                else
3155                                {
3156                                        $day = $_GET['sday'];
3157                                }
3158                        }
3159                        else
3160                        {
3161                                $day = $this->bo->day;
3162                                $dia_ini = $day;
3163                        }
3164                        if($mes_footer == $mes_hoje)
3165                        {
3166                                $dia_ini = (int)substr($hoje,6,2);
3167                                $day = $dia_ini;
3168                        }
3169                        /********************************************************************************************/
3170                        /* Bloco adicionado para receber o dia a partir do qual a versao para impressao sera gerada */
3171                        $str_ini = '';
3172                        for ($i = 1; $i <= ($GLOBALS['phpgw']->datetime->days_in_month($m, $y)); $i++)
3173                        {
3174                                $str_ini .= '<option value="'.$i.'"'.($i == $day?' selected':'').'>'.$i.'</option>'."\n";
3175                        }
3176                        $str_qtd = '<option value="'.''.'"'.($i == $_POST['qtd_dias']?' selected':'').'>'.''.'</option>'."\n";
3177                        for ($i = 1; $i <= 45; $i++)
3178                        {
3179                                $str_qtd .= '<option value="'.$i.'"'.($i == $_POST['qtd_dias']?' selected':'').'>'.$i.'</option>'."\n";
3180                        }
3181                        $display = '';
3182                        $display_view = '';
3183                        if ( ($menuaction == 'calendar.uicalendar.week') || ($menuaction == 'calendar.uicalendar.day') )
3184                        {
3185                                $display = 'none';
3186                        }
3187                        else if( ($menuaction == 'calendar.uicalendar.view') )
3188                        {
3189                                $display = 'none';
3190                                $display_view = 'none';
3191                        }
3192                        $var = Array(
3193                                'acao'                  => $this->page($method,''),
3194                                'formname'              => 'SelectDay',
3195                                'formonchange'          => 'document.SelectDay.submit()',
3196                                'day_ini_label'         => lang('print starting in'),
3197                                'num_dias_label'        => lang('quantity of days'),
3198                                'tip'                   => lang('empty prints from the day chosen below to the end of the current month'),
3199                                'day_ini_name'          => 'day',
3200                                'num_dias_name'         => 'qtd_dias',
3201                                'row_ini'               => $str_ini,
3202                                'row_qtd'               => $str_qtd,
3203                                'display'               => $display,
3204                                'display_view'          => $display_view,
3205                                'go'                    => lang('Go!')
3206                                );
3207                        $this->output_template_array($p,'table_row','num_dias',$var);
3208                       
3209                        /********************************************************************************************/
3210
3211                        $thisdate = date('Ymd',mktime(0,0,0,$m,1,$y));
3212                        $y--;
3213
3214                        $str = '';
3215                        for ($i = 0; $i < 20; $i++)
3216                        {
3217                                $m++;
3218                                if ($m > 12)
3219                                {
3220                                        $m = 1;
3221                                        $y++;
3222                                }
3223                                $d = mktime(0,0,0,$m,1,$y);
3224                                $d_ymd = date('Ymd',$d);
3225                                $str .= '<option value="'.$d_ymd.'"'.($d_ymd == $thisdate?' selected':'').'>'.lang(date('F', $d)).strftime(' %Y', $d).'</option>'."\n";
3226                        }
3227
3228                        $var = Array(
3229                                'action_url'    => $this->page($method,''),
3230                                'form_name'     => 'SelectMonth',
3231                                'label'         => lang('Month'),
3232                                'form_label'    => 'date',
3233                                'form_onchange' => 'document.SelectMonth.submit()',
3234                                'row'           => $str,
3235                                'dia_ini'       => $dia_ini,
3236                                'go'            => lang('Go!')
3237                        );
3238                        $this->output_template_array($p,'table_row','footer_row',$var);
3239
3240                        if($menuaction == 'calendar.uicalendar.week')
3241                        {
3242                                unset($thisdate);
3243                                $thisdate = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
3244                                $sun = $GLOBALS['phpgw']->datetime->get_weekday_start($this->bo->year,$this->bo->month,$this->bo->day) - $GLOBALS['phpgw']->datetime->tz_offset;
3245
3246                                $str = '';
3247                                for ($i = -7; $i <= 7; $i++)
3248                                {
3249                                        $begin = $sun + (7*24*60*60 * $i) + 12*60*60;   // we use midday, that changes in daylight-saveing does not effect us
3250                                        $end = $begin + 6*24*60*60;
3251//                                      echo "<br>$i: ".date('d.m.Y H:i',$begin).' - '.date('d.m.Y H:i',$end);
3252                    $str .= '<option value="' . $GLOBALS['phpgw']->common->show_date($begin,'Ymd') . '"'.($begin <= $thisdate+12*60*60 && $end >= $thisdate+12*60*60 ? ' selected':'').'>'                   
3253                                                . $GLOBALS['phpgw']->common->show_date($begin,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']) . ' - '
3254                        . $GLOBALS['phpgw']->common->show_date($end,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'])
3255                        . '</option>' . "\n";                       
3256                                }
3257
3258                                $var = Array(
3259                                        'action_url'    => $this->page($method,''),
3260                                        'form_name'     => 'SelectWeek',
3261                                        'label'         => lang('Week'),
3262                                        'form_label'    => 'date',
3263                                        'form_onchange' => 'document.SelectWeek.submit()',
3264                                        'row'           => $str,
3265                                        'go'            => lang('Go!')
3266                                );
3267
3268                                $this->output_template_array($p,'table_row','footer_row',$var);
3269                        }
3270
3271                        $str = '';
3272                        for ($i = ($this->bo->year - 3); $i < ($this->bo->year + 3); $i++)
3273                        {
3274                                $str .= '<option value="'.$i.'"'.($i == $this->bo->year?' selected':'').'>'.$i.'</option>'."\n";
3275                        }
3276
3277                        $var = Array(
3278                                'action_url'    => $this->page($method,''),
3279                                'form_name'     => 'SelectYear',
3280                                'label'         => lang('Year'),
3281                                'form_label'    => 'year',
3282                                'form_onchange' => 'document.SelectYear.submit()',
3283                                'row'           => $str,
3284                                'go'            => lang('Go!')
3285                        );
3286                        $this->output_template_array($p,'table_row','footer_row',$var);
3287
3288                        if($menuaction == 'calendar.uicalendar.planner')
3289                        {
3290                                $str = '';
3291                                $date_str = '';
3292
3293                                if(isset($_GET['date']) && $_GET['date'])
3294                                {
3295                                        $date_str .= '    <input type="hidden" name="date" value="'.$_GET['date'].'">'."\n";
3296                                }
3297                                $date_str .= '    <input type="hidden" name="month" value="'.$this->bo->month.'">'."\n";
3298                                $date_str .= '    <input type="hidden" name="day" value="'.$this->bo->day.'">'."\n";
3299                                $date_str .= '    <input type="hidden" name="year" value="'.$this->bo->year.'">'."\n";
3300
3301                                for($i=1; $i<=6; $i++)
3302                                {
3303                                        $str .= '<option value="'.$i.'"'.($i == $this->bo->num_months?' selected':'').'>'.$i.'</option>'."\n";
3304                                }
3305
3306                                $var = Array(
3307                                        'action_url'    => $this->page($method,''),
3308                                        'form_name'     => 'SelectNumberOfMonths',
3309                                        'label'         => lang('Number of Months'),
3310                                        'hidden_vars' => $date_str,
3311                                        'form_label'    => 'num_months',
3312                                        'form_onchange' => 'document.SelectNumberOfMonths.submit()',
3313                                        'action_extra_field'    => $date_str,
3314                                        'row'           => $str,
3315                                        'go'            => lang('Go!')
3316                                );
3317                                $this->output_template_array($p,'table_row','footer_row',$var);
3318                        }
3319
3320                        $var = Array(
3321                                'submit_button'         => lang('Submit'),
3322                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uiicalendar.import'),
3323                                'action_text_button'    => lang('Import'),
3324                                'action_confirm_button' => '',
3325                                'action_extra_field'    => ''
3326                        );
3327                        $this->output_template_array($p,'b_row','form_button',$var);
3328                       
3329                        $var = Array(
3330                                'submit_button'         => lang('Submit'),
3331                                'action_url'    => $this->page($method,''),
3332                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.export_all'),
3333                                'action_text_button'    => lang('Export all'),
3334                                'action_confirm_button' => '',
3335                                'action_extra_field'    => ''
3336                        );
3337                        $this->output_template_array($p,'b_row2','form_button',$var);
3338                                       
3339                        $p->parse('table_row','blank_row',True);
3340
3341                        $p->pparse('out','footer_table');
3342                        unset($p);
3343                }
3344
3345                function css()
3346                {
3347                        $GLOBALS['phpgw']->browser->browser();
3348                        if($GLOBALS['phpgw']->browser->get_agent() == 'MOZILLA')
3349                        {
3350                                $time_width = ((int)($this->bo->prefs['common']['time_format']) == 12?12:8);
3351                        }
3352                        else
3353                        {
3354                                $time_width = ((int)($this->bo->prefs['common']['time_format']) == 12?10:7);
3355                        }
3356
3357// moved to app.css in templates/default for future separation of code and style [NDEE 10.03.04]
3358/*
3359                         return 'A.minicalendar { color: #000000; font-size: 72%; font-family: '.$this->theme['font'].' }'."\n"
3360                                . '  A.bminicalendar { color: #336699; font: italic bold x-small '.$this->theme['font'].' }'."\n"
3361                                . '  A.minicalendargrey { color: #999999; font-size: 8px; font-family: '.$this->theme['font'].' }'."\n"
3362                                . '  A.bminicalendargrey { color: #336699; font-style: italic; font-size:8px; font-family '.$this->theme['font'].' }'."\n"
3363                                . '  A.minicalhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #000000; font: x-small '.$this->theme['font'].' }'."\n"
3364                                . '  A.bminicalhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #336699; font: italic bold x-small '.$this->theme['font'].' }'."\n"
3365                                . '  A.minicalgreyhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #999999; font: x-small '.$this->theme['font'].' }'."\n"
3366                                . '  A.bminicalgreyhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #999999; font: italic bold x-small '.$this->theme['font'].' }'."\n"
3367                                . '  .event-on { background: '.$this->theme['row_on'].'; color: '.$this->theme['bg_text'].'; font: 100% '.$this->theme['font'].'; vertical-align: middle }'."\n"
3368                                . '  .event-off { background: '.$this->theme['row_off'].'; color: '.$this->theme['bg_text'].'; font: 100% '.$this->theme['font'].'; vertical-align: middle }'."\n"
3369                                . '  .event-holiday { background: '.$this->theme['bg04'].'; color: '.$this->theme['bg_text'].'; font: 100% '.$this->theme['font'].'; vertical-align: middle }'."\n"
3370                                . '  .time { background: '.$this->theme['th_bg'].'; color: '.$this->theme['bg_text'].'; font: bold 100% '.$this->theme['font'].'; width: '.$time_width.'%; vertical-align: middle; text-align: right; }'."\n"
3371                                . '  .tablecell { width: 80px; height: 80px }'."\n"
3372                                . '  .planner-cell { cursor:pointer; cursor:hand; border: thin solid black; }';
3373*/
3374                }
3375
3376                function no_edit()
3377                {
3378                        if(!isset($GLOBALS['phpgw_info']['flags']['noheader']))
3379                        {
3380                                unset($GLOBALS['phpgw_info']['flags']['noheader']);
3381                                unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
3382                                $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
3383                                $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
3384                                $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Permission denied');
3385                                $GLOBALS['phpgw']->common->phpgw_header();
3386                        }
3387                        echo '<center>You do not have permission to edit this appointment!</center>';
3388                        return;
3389                }
3390
3391                function link_to_entry($event,$month,$day,$year)
3392                {
3393                        $str = '';
3394                        $is_private = !$event['public'] && !$this->bo->check_perms(PHPGW_ACL_READ,$event);
3395                        $viewable = !$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_READ,$event);
3396
3397                        $starttime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
3398                        $endtime = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
3399                        $rawdate = mktime(0,0,0,$month,$day,$year);
3400                        $rawdate_offset = $rawdate - $GLOBALS['phpgw']->datetime->tz_offset;
3401                        $nextday = mktime(0,0,0,$month,$day + 1,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
3402                        if ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') && $starttime == $endtime)
3403                        {
3404                                $time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3405                        }
3406                        elseif ($starttime <= $rawdate_offset && $endtime >= $nextday - 60)
3407                        {
3408                                $time = '[ '.lang('All Day').' ]';
3409                        }
3410                        elseif ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') || $starttime != $endtime)
3411                        {
3412                                if($starttime < $rawdate_offset && $event['recur_type'] == MCAL_RECUR_NONE)
3413                                {
3414                                        $start_time = $GLOBALS['phpgw']->common->show_date($rawdate_offset,$this->bo->users_timeformat);
3415                                }
3416                                else
3417                                {
3418                                        $start_time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3419                                }
3420
3421                                if($endtime >= ($rawdate_offset + 86400))
3422                                {
3423                                        $end_time = $GLOBALS['phpgw']->common->show_date(mktime(23,59,59,$month,$day,$year) - $GLOBALS['phpgw']->datetime->tz_offset,$this->bo->users_timeformat);
3424                                }
3425                                else
3426                                {
3427                                        $end_time = $GLOBALS['phpgw']->common->show_date($endtime,$this->bo->users_timeformat);
3428                                }
3429                                $time = $start_time.'-'.$end_time;
3430                        }
3431                        else
3432                        {
3433                                $time = '';
3434                        }
3435                       
3436                        $texttitle = $texttime = $textdesc = $textlocation = $textstatus = '';
3437
3438                       
3439                       
3440                        if(!$is_private)
3441                        {
3442                                //$text .= $this->bo->display_status($event['users_status']);
3443                               
3444                                // split text for better display by templates, also see $texttime $texttitle $textdesc $textlocation   
3445                                $textstatus=$this->bo->display_status($event['users_status']);
3446                               
3447                        }
3448
3449                        /*
3450                        $text = '<nobr>&nbsp;'.$time.'&nbsp;</nobr> '.$this->bo->get_short_field($event,$is_private,'title').$text.
3451                                (!$is_private && $event['description'] ? ': <i>'.$this->bo->get_short_field($event,$is_private,'description').'</i>':'').
3452                                $GLOBALS['phpgw']->browser->br;
3453                        */
3454                       
3455                        $texttime=$time;
3456                        $texttitle=$this->bo->get_short_field($event,$is_private,'title');
3457
3458                        $account_name = $_POST['user'] ?
3459                                                        $_POST['user'] :
3460                                                        ($_GET['account_name'] ?
3461                                                         $_GET['account_name'] : '');
3462
3463                        $accounts = CreateObject('phpgwapi.accounts');
3464                        $accountId = $accounts->name2id($account_name);
3465
3466                        $prefs = CreateObject('phpgwapi.preferences', $accountId);
3467                        $account_prefs = $prefs->read();
3468
3469                        $titleView = $account_prefs['calendar']['title_view'];
3470                        if($titleView == "1"){
3471                                $textdesc = '';
3472                        }else{
3473                        $textdesc=(!$is_private && $event['description'] ? $this->bo->get_short_field($event,$is_private,'description'):'');
3474                        $textdesc=nl2br($textdesc);
3475                        }
3476
3477                        // added $textlocation but this must be activated in the actual pict_link.tpl file of the used template set
3478                        $textlocation=$this->bo->get_short_field($event,$is_private,'location');
3479
3480                        if ($viewable)
3481                        {
3482                                $date = sprintf('%04d%02d%02d',$year,$month,$day);
3483                                $this->link_tpl->set_var('link_link',$this->page('view','&cal_id='.$event['id'].'&date='.$date));
3484                                $this->link_tpl->set_var('lang_view',lang('View this entry'));
3485                                $this->link_tpl->set_var('desc', $textdesc);
3486                                $this->link_tpl->set_var('location', $textlocation);
3487                                $this->link_tpl->parse('picture','link_open',True);
3488                        }
3489                        if (!$is_private)
3490                        {
3491                                if($event['priority'] == 3)
3492                                {
3493                                        $picture[] = Array(
3494                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','high'),
3495                                                'width' => 16,
3496                                                'height'=> 16,
3497                                                'title' => lang('high priority')
3498                                        );
3499                                }
3500                                if($event['recur_type'] == MCAL_RECUR_NONE)
3501                                {
3502                                        $picture[] = Array(
3503                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','circle'),
3504                                                'width' => 9,
3505                                                'height'=> 9,
3506                                                'title' => lang('single event')
3507                                        );
3508                                }
3509                                else
3510                                {
3511                                        $picture[] = Array(
3512                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','recur'),
3513                                                'width' => 12,
3514                                                'height'=> 12,
3515                                                'title' => lang('recurring event')
3516                                        );
3517                                }
3518                        }
3519                        $participants = $this->planner_participants($event['participants']);
3520                        if(count($event['participants']) > 1)
3521                        {
3522                                $picture[] = Array(
3523                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','multi_3'),
3524                                        'width' => 14,
3525                                        'height'=> 14,
3526                                        'title' => $participants
3527                                );
3528                        }
3529                        else
3530                        {
3531                                $picture[] = Array(
3532                                        'pict'  =>  $GLOBALS['phpgw']->common->image('calendar','single'),
3533                                        'width' => 14,
3534                                        'height'=> 14,
3535                                        'title' => $participants
3536                                );
3537                        }
3538                        if($event['public'] == 0)
3539                        {
3540                                $picture[] = Array(
3541                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','private'),
3542                                        'width' => 13,
3543                                        'height'=> 13,
3544                                        'title' => lang('private')
3545                                );
3546                        }
3547                        if(@isset($event['alarm']) && count($event['alarm']) >= 1 && !$is_private)
3548                        {
3549                                // if the alarm is to go off the day before the event
3550                                // the icon does not show up because of 'alarm_today'
3551                                // - TOM
3552                                if($this->bo->alarm_today($event,$rawdate_offset,$starttime))
3553                                {
3554                                        $picture[] = Array(
3555                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','alarm'),
3556                                                'width' => 13,
3557                                                'height'=> 13,
3558                                                'title' => lang('alarm')
3559                                        );
3560                                }
3561                        }
3562
3563                        $description = $this->bo->get_short_field($event,$is_private,'description');
3564                        for($i=0;$i<count($picture);$i++)
3565                        {
3566                                $var = Array(
3567                                        'pic_image' => $picture[$i]['pict'],
3568                                        'width'     => $picture[$i]['width'],
3569                                        'height'    => $picture[$i]['height'],
3570                                        'title'     => $picture[$i]['title']
3571                                );
3572                                $this->output_template_array($this->link_tpl,'picture','pict',$var);
3573                        }
3574                        if ($texttitle)
3575                        {
3576                                $var = Array(
3577                        //              'text' => $text,
3578                                        'time'=> $texttime,
3579                                        'title'=> $texttitle,
3580                                        'users_status'=>$textstatus,
3581                                        'desc'=> $textdesc,
3582                                        'location'=> "<br><b>Local:</b> ".$textlocation
3583                                );
3584                                $this->output_template_array($this->link_tpl,'picture','link_text',$var);
3585                        }
3586
3587                        if ($viewable)
3588                        {
3589                                $this->link_tpl->parse('picture','link_close',True);
3590                        }
3591                        $str = $this->link_tpl->fp('out','link_pict');
3592                        $this->link_tpl->set_var('picture','');
3593                        $this->link_tpl->set_var('out','');
3594//                      unset($p);
3595                        return $str;
3596                }
3597
3598/*****************************************************************************************/
3599/*Funcao foi duplicada e alterada para tratar os eventos de agendamento (exibicao do mes) para impressao;
3600utiliza o template event_link.tpl*/
3601
3602                function link_to_month_entry($event,$month,$day,$year)
3603                {
3604                        $str = '';
3605                        $is_private = !$event['public'] && !$this->bo->check_perms(PHPGW_ACL_READ,$event);
3606                        $viewable = !$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_READ,$event);
3607
3608                        $starttime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
3609                        $endtime = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
3610                        $rawdate = mktime(0,0,0,$month,$day,$year);
3611                        $rawdate_offset = $rawdate - $GLOBALS['phpgw']->datetime->tz_offset;
3612                        $nextday = mktime(0,0,0,$month,$day + 1,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
3613                        if ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') && $starttime == $endtime)
3614                        {
3615                                $time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3616                        }
3617                        elseif ($starttime <= $rawdate_offset && $endtime >= $nextday - 60)
3618                        {
3619                                $time = '[ '.lang('All Day').' ]';
3620                        }
3621                        elseif ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') || $starttime != $endtime)
3622                        {
3623                                if($starttime < $rawdate_offset && $event['recur_type'] == MCAL_RECUR_NONE)
3624                                {
3625                                        $start_time = $GLOBALS['phpgw']->common->show_date($rawdate_offset,$this->bo->users_timeformat);
3626                                }
3627                                else
3628                                {
3629                                        $start_time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3630                                }
3631
3632                                if($endtime >= ($rawdate_offset + 86400))
3633                                {
3634                                        $end_time = $GLOBALS['phpgw']->common->show_date(mktime(23,59,59,$month,$day,$year) - $GLOBALS['phpgw']->datetime->tz_offset,$this->bo->users_timeformat);
3635                                }
3636                                else
3637                                {
3638                                        $end_time = $GLOBALS['phpgw']->common->show_date($endtime,$this->bo->users_timeformat);
3639                                }
3640                                $time = $start_time.' - '.$end_time;
3641                        }
3642                        else
3643                        {
3644                                $time = '';
3645                        }
3646                       
3647                        $texttitle = $texttime = $textdesc = $textlocation = $textstatus = '';
3648
3649                       
3650                       
3651                        if(!$is_private)
3652                        {
3653                                //$text .= $this->bo->display_status($event['users_status']);
3654                               
3655                                // split text for better display by templates, also see $texttime $texttitle $textdesc $textlocation   
3656                                $textstatus=$this->bo->display_status($event['users_status']);
3657                               
3658                        }
3659
3660                        $text = '<nobr>&nbsp;'.$time.'&nbsp;</nobr> '.$this->bo->get_short_field($event,$is_private,'title').$text.
3661                       
3662                        $texttime=$time;
3663                        $texttitle=$this->bo->get_short_field($event,$is_private,'title');
3664                        $textdesc=(!$is_private && $event['description'] ? $this->bo->get_short_field($event,$is_private,'description'):'');
3665                        // added $textlocation but this must be activated in the actual pict_link.tpl file of the used template set
3666                        $textlocation=$this->bo->get_short_field($event,$is_private,'location');
3667
3668                        if ($viewable)
3669                        {
3670                                $date = sprintf('%04d%02d%02d',$year,$month,$day);
3671                                $this->event_tpl->set_var('link_link',$this->page('view','&cal_id='.$event['id'].'&date='.$date));
3672                                $this->event_tpl->set_var('lang_view',lang('View this entry'));
3673                                $this->event_tpl->set_var('desc', $textdesc);
3674                                $this->event_tpl->set_var('location', $textlocation);
3675                                $this->event_tpl->parse('picture','link_event_open',True);
3676                        }
3677                        if (!$is_private)
3678                        {
3679                                if($event['priority'] == 3)
3680                                {
3681                                        $picture[] = Array(
3682                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','high'),
3683                                                'width' => 16,
3684                                                'height'=> 16,
3685                                                'title' => lang('high priority')
3686                                        );
3687                                }
3688                                if($event['recur_type'] == MCAL_RECUR_NONE)
3689                                {
3690                                        $picture[] = Array(
3691                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','circle'),
3692                                                'width' => 9,
3693                                                'height'=> 9,
3694                                                'title' => lang('single event')
3695                                        );
3696                                }
3697                                else
3698                                {
3699                                        $picture[] = Array(
3700                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','recur'),
3701                                                'width' => 12,
3702                                                'height'=> 12,
3703                                                'title' => lang('recurring event')
3704                                        );
3705                                }
3706                        }
3707                        $participants = $this->planner_participants($event['participants']);
3708                        if(count($event['participants']) > 1)
3709                        {
3710                                $picture[] = Array(
3711                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','multi_3'),
3712                                        'width' => 14,
3713                                        'height'=> 14,
3714                                        'title' => $participants
3715                                );
3716                        }
3717                        else
3718                        {
3719                                $picture[] = Array(
3720                                        'pict'  =>  $GLOBALS['phpgw']->common->image('calendar','single'),
3721                                        'width' => 14,
3722                                        'height'=> 14,
3723                                        'title' => $participants
3724                                );
3725                        }
3726                        if($event['public'] == 0)
3727                        {
3728                                $picture[] = Array(
3729                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','private'),
3730                                        'width' => 13,
3731                                        'height'=> 13,
3732                                        'title' => lang('private')
3733                                );
3734                        }
3735                        if(@isset($event['alarm']) && count($event['alarm']) >= 1 && !$is_private)
3736                        {
3737                                // if the alarm is to go off the day before the event
3738                                // the icon does not show up because of 'alarm_today'
3739                                // - TOM
3740                                if($this->bo->alarm_today($event,$rawdate_offset,$starttime))
3741                                {
3742                                        $picture[] = Array(
3743                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','alarm'),
3744                                                'width' => 13,
3745                                                'height'=> 13,
3746                                                'title' => lang('alarm')
3747                                        );
3748                                }
3749                        }
3750
3751                        $description = $this->bo->get_short_field($event,$is_private,'description');
3752                        for($i=0;$i<count($picture);$i++)
3753                        {
3754                                $var = Array(
3755                                        'pic_image' => $picture[$i]['pict'],
3756                                        'width'     => $picture[$i]['width'],
3757                                        'height'    => $picture[$i]['height'],
3758                                        'title'     => $picture[$i]['title']
3759                                );
3760                                $this->output_template_array($this->event_tpl,'picture','event_pict',$var);
3761                        }
3762                        if ($texttitle)
3763                        {
3764                                $var = Array(
3765                        //              'text' => $text,
3766                                        'time'=> $texttime,
3767                                        'title'=> $texttitle,
3768                                        'users_status'=>$textstatus,
3769                                        'desc'=> $textdesc,
3770                                        'location'=> "<br><b>Local:</b> ".$textlocation
3771                                );
3772                                $this->output_template_array($this->event_tpl,'picture','link_event_text',$var);
3773                        }
3774
3775                        if ($viewable)
3776                        {
3777                                $this->event_tpl->parse('picture','link_event_close',True);
3778                        }
3779                        $str = $this->event_tpl->fp('out','link_event_pict');
3780                        $this->event_tpl->set_var('picture','');
3781                        $this->event_tpl->set_var('out','');
3782//                      unset($p);
3783                        return $str;
3784                }
3785
3786/*****************************************************************************************/
3787                function normDec($num)
3788                {
3789                        if ($num > 9)
3790                                return $num;
3791                        else
3792                                return "0".$num;
3793                }
3794                function overlap($params)
3795                {
3796                        if(!is_array($params))
3797                        {
3798                        }
3799                        else
3800                        {
3801                                $overlapping_events = $params['o_events'];
3802                                $event = $params['this_event'];
3803                        }
3804
3805                        $month = $event['start']['month'];
3806                        $mday = $event['start']['mday'];
3807                        $year = $event['start']['year'];
3808
3809                        $start = mktime($event['start']['hour'],$event['start']['min'],$event['start']['sec'],$month,$mday,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
3810                        $end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
3811
3812                        $overlap = '';
3813                        for($i=0;$i<count($overlapping_events);$i++)
3814                        {
3815                                $overlapped_event = $this->bo->read_entry($overlapping_events[$i],True);
3816                                foreach($overlapped_event['participants'] as $id => $status)
3817                                {
3818                                        $conflict = isset($event['participants'][$id]);
3819                                        $overlap .= '<li>'.($conflict?'<b>':'').
3820                                                $GLOBALS['phpgw']->common->grab_owner_name($id).
3821                                                ($conflict?'</b> - '.lang('Scheduling conflict'):'')."</li>";
3822                                }
3823                         if ($this->bo->prefs['calendar']['hide_event_conflict'])
3824                                 $overlap .= '<ul><font size="1"><span>'.
3825                                         $this->normDec($overlapped_event['start']['hour']).":".
3826                                         $this->normDec($overlapped_event['start']['min'])."-".
3827                                         $this->normDec($overlapped_event['end']['hour']).":".
3828                                         $this->normDec($overlapped_event['end']['min']).
3829                                         '<br><b>'.lang('title').": ".lang("Hidden").
3830                                         '</b><br>'.lang('description').": ".lang("Hidden").'<br></span></ul><br>';
3831                         else
3832                                 $overlap .= '<ul>'.$this->link_to_entry($overlapped_event,$month,$mday,$year)."</ul><br>";     
3833                        }
3834
3835                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
3836                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
3837                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
3838                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
3839                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Scheduling Conflict');
3840                        $GLOBALS['phpgw']->common->phpgw_header();
3841
3842                        $p = $GLOBALS['phpgw']->template;
3843                        $p->set_file(
3844                                Array(
3845                                        'overlap'       => 'overlap.tpl',
3846                                        'form_button'   => 'form_button_script.tpl'
3847                                )
3848                        );
3849
3850                        $var = Array(
3851                                'color'         => $this->theme['bg_text'],
3852                                'overlap_title' => lang('Scheduling Conflict'),
3853                                'overlap_text'  => lang('Your suggested time of <B> %1 - %2 </B> conflicts with the following existing calendar entries:',$GLOBALS['phpgw']->common->show_date($start),$GLOBALS['phpgw']->common->show_date($end)),
3854                                'overlap_list'  => $overlap
3855                        );
3856                        $p->set_var($var);
3857
3858                        $date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->mday);
3859                        $var = Array(
3860                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.bocalendar.update','readsess'=>1)),
3861                                'action_text_button'    => lang('Ignore Conflict'),
3862                                'action_confirm_button' => '',
3863                                'action_extra_field'    => '',
3864                                'button_id'             => 'ignore_button'
3865                        );
3866                        $this->output_template_array($p,'resubmit_button','form_button',$var);
3867
3868                        $var = Array(
3869                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.edit','readsess'=>1,'date'=>$date)),
3870                                'action_text_button'    => lang('Re-Edit Event'),
3871                                'action_confirm_button' => '',
3872                                'action_extra_field'    => '',
3873                                'button_id'             => 'redit_button'
3874                        );
3875                        $this->output_template_array($p,'reedit_button','form_button',$var);
3876                        $p->pparse('out','overlap');
3877                }
3878
3879                function planner_participants($parts)
3880                {
3881                        static $id2lid;
3882
3883                        $names = '';
3884                        while (list($id,$status) = each($parts))
3885                        {
3886                                $status = substr($this->bo->get_long_status($status),0,1);
3887
3888                                if (!isset($id2lid[$id]))
3889                                {
3890                                        $id2lid[$id] = $GLOBALS['phpgw']->common->grab_owner_name($id);
3891                                }
3892                                if (strlen($names))
3893                                {
3894                                        $names .= ",\n";
3895                                }
3896                                $names .= $id2lid[$id]." ($status)";
3897                        }
3898                        if($this->debug)
3899                        {
3900                                echo '<!-- Inside participants() : '.$names.' -->'."\n";
3901                        }
3902                        return $names;
3903                }
3904
3905                function planner_category($ids)
3906                {
3907                        static $cats;
3908                        if(!is_array($ids))
3909                        {
3910                                if (strpos($ids,','))
3911                                {
3912                                        $id_array = explode(',',$ids);
3913                                }
3914                                else
3915                                {
3916                                        $id_array[0] = $ids;
3917                                }
3918                        }
3919                        @reset($id_array);
3920                        $ret_val = Array();
3921                        while(list($index,$id) = each($id_array))
3922                        {
3923                                if (!isset($cats[$id]))
3924                                {
3925                                        $cat_arr = $this->cat->return_single( $id );
3926                                        $cats[$id] = $cat_arr[0];
3927                                        $cats[$id]['color'] = strstr($cats[$id]['description'],'#');
3928                                }
3929                                $ret_val[] = $cats[$id];
3930                        }
3931                        return $ret_val;
3932                }
3933
3934                function week_header($month,$year,$display_name = False)
3935                {
3936                        $this->weekstarttime = $GLOBALS['phpgw']->datetime->get_weekday_start($year,$month,1);
3937
3938                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
3939                        $p->set_unknowns('remove');
3940                        $p->set_file(
3941                                Array (
3942                                        'month_header' => 'month_header.tpl'
3943                                )
3944                        );
3945                        $p->set_block('month_header','monthly_header','monthly_header');
3946                        $p->set_block('month_header','column_title','column_title');
3947
3948                        $var = Array(
3949                                'bgcolor'       => $this->theme['th_bg'],
3950                                'font_color'    => $this->theme['th_text']
3951                        );
3952                        if($this->bo->printer_friendly && @$this->bo->prefs['calendar']['print_black_white'])
3953                        {
3954                                $var = Array(
3955                                        'bgcolor'       => '',
3956                                        'font_color'    => ''
3957                                );
3958                        }
3959                        $p->set_var($var);
3960
3961                        $p->set_var('col_width','14');
3962                        if($display_name == True)
3963                        {
3964                                $p->set_var('col_title',lang('name'));
3965                                $p->parse('column_header','column_title',True);
3966                                $p->set_var('col_width','12');
3967                        }
3968
3969                        for($i=0;$i<7;$i++)
3970                        {
3971                                $p->set_var('col_title',lang($GLOBALS['phpgw']->datetime->days[$i]));
3972                                $p->parse('column_header','column_title',True);
3973                        }
3974                        return $p->fp('out','monthly_header');
3975                }
3976
3977                function display_week($startdate,$weekly,$cellcolor,$display_name = False,$owner=0,$monthstart=0,$monthend=0)
3978                {
3979                        if($owner == 0)
3980                        {
3981                                $owner = $GLOBALS['phpgw_info']['user']['account_id'];
3982                        }
3983
3984                        $temp_owner = $this->bo->owner;
3985
3986                        $str = '';
3987                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
3988                        $p->set_unknowns('keep');
3989
3990                        $p->set_file(
3991                                Array(
3992                                        'month_header'  => 'month_header.tpl',
3993                                        'month_day'     => 'month_day.tpl'
3994                                )
3995                        );
3996                        $p->set_block('month_header','monthly_header','monthly_header');
3997                        $p->set_block('month_header','month_column','month_column');
3998                        $p->set_block('month_day','month_daily','month_daily');
3999                        $p->set_block('month_day','day_event','day_event');
4000                        $p->set_block('month_day','event','event');
4001
4002                        $p->set_var('extra','');
4003                        $p->set_var('col_width','14');
4004                        if($display_name)
4005                        {
4006                                $p->set_var('column_data',$GLOBALS['phpgw']->common->grab_owner_name($owner));
4007                                $p->parse('column_header','month_column',True);
4008                                $p->set_var('col_width','12');
4009                        }
4010                        $today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
4011                        $daily = $this->set_week_array($startdate - $GLOBALS['phpgw']->datetime->tz_offset,$cellcolor,$weekly);
4012                        foreach($daily as $date => $day_params)
4013                        {
4014                                $year  = (int)substr($date,0,4);
4015                                $month = (int)substr($date,4,2);
4016                                $day   = (int)substr($date,6,2);
4017                                $var   = Array(
4018                                        'column_data' => '',
4019                                        'extra' => ''
4020                                );
4021                                $p->set_var($var);
4022                                if ($weekly || ($date >= $monthstart && $date <= $monthend))
4023                                {
4024                                        if ($day_params['new_event'])
4025                                        {
4026                                                $new_event_link = ' <a href="'.$this->page('add','&date='.$date).'">'
4027                                                        . '<img src="'.$GLOBALS['phpgw']->common->image('calendar','new3').'" width="10" height="10" title="'.lang('New Entry').'" border="0" align="center">'
4028                                                        . '</a>';
4029                                                $day_number = '<a href="'.$this->page('day','&date='.$date).'">'.$day.'</a>';
4030                                        }
4031                                        else
4032                                        {
4033                                                $new_event_link = '';
4034                                                $day_number = $day;
4035                                        }
4036
4037                                        $var = Array(
4038                                                'extra'         => $day_params['extra'],
4039                                                'new_event_link'=> $new_event_link,
4040                                                'day_number'    => $day_number
4041                                        );
4042                                        if($day_params['week'])
4043                                        {
4044
4045//NDEE: style! m_w_table in month_day.tpl
4046// week-hilite
4047                                                //$var['new_event_link'] .= '<font size="-2"> &nbsp; '.
4048                                                $var['new_event_link'] .= ' &nbsp; '.
4049                                                        (!$this->bo->printer_friendly?'<a href="'.$this->page('week','&date='.$date).'"><span id="calendar_weekinfo" class="calendar_weekinfo">' .$day_params['week'].'</span></a>' : '<span id="calendar_weekinfo" class="calendar_weekinfo">'.$day_params['week'].'</span>');
4050                                        }
4051
4052                                        $p->set_var($var);
4053
4054                                        if(@$day_params['holidays'])
4055                                        {
4056                                                foreach($day_params['holidays'] as $key => $value)
4057                                                {
4058                                                        $var = Array(
4059                                                                'day_events' => '<font face="'.$this->theme['font'].'" size="-1">'.$value.'</font>'.$GLOBALS['phpgw']->browser->br
4060                                                        );
4061                                                        $this->output_template_array($p,'daily_events','event',$var);
4062                                                }
4063                                        }
4064
4065                                        if($day_params['appts'])
4066                                        {
4067                                                $var = Array(
4068                                                        'week_day_font_size'    => '2',
4069                                                        'events'                => ''
4070                                                );
4071                                                $p->set_var($var);
4072                                                $events = $this->bo->cached_events[$date];
4073                                                foreach($events as $event)
4074                                                {
4075                                                        if ($this->bo->rejected_no_show($event))
4076                                                        {
4077                                                                continue;       // user does not want to see rejected events
4078                                                        }
4079                                                        $p->set_var('day_events',$this->link_to_entry($event,$month,$day,$year));
4080                                                        $p->parse('events','event',True);
4081                                                        $p->set_var('day_events','');
4082                                                }
4083                                        }
4084                                        $p->parse('daily_events','day_event',True);
4085                                        $p->parse('column_data','month_daily',True);
4086                                        $p->set_var('daily_events','');
4087                                        $p->set_var('events','');
4088/*                                      if($day_params['week'])
4089                                        {
4090                                                $var = Array(
4091                                                        'week_day_font_size'    => '-2',
4092                                                        'events'                => (!$this->bo->printer_friendly?'<a href="'.$this->page('week','&date='.$date).'">' .$day_params['week'].'</a>':$day_params['week'])
4093                                                );
4094                                                $this->output_template_array($p,'column_data','day_event',$var);
4095                                                $p->set_var('events','');
4096                                        } */
4097                                }
4098                                $p->parse('column_header','month_column',True);
4099                                $p->set_var('column_data','');
4100                        }
4101                        $this->bo->owner = $temp_owner;
4102                        return $p->fp('out','monthly_header');
4103                }
4104
4105/***************************************************************************************/
4106/*As funcoes abaixo
4107        month_week_header()
4108        month_display_week()
4109        display_month_print()
4110        month_day_of_week() - esta foi criada mas parte do codigo e de outra funcao da API (day_of_week());
4111
4112  foram duplicadas e modificadas para atender aas modificacoes do layout de impressao mensal da agenda de eventos;
4113  TODO: otimizar o codigo
4114
4115  Rommel Cysne
4116*/
4117
4118                function month_week_header($month,$year,$display_name = False)
4119                {
4120                        $this->weekstarttime = $GLOBALS['phpgw']->datetime->get_weekday_start($year,$month,1);
4121                        $p->set_unknowns('remove');
4122                }
4123
4124
4125                function month_day_of_week($year,$month,$day)
4126                {
4127                        $dia = Array(
4128                                0 => 'Domingo',
4129                                1 => 'Segunda',
4130                                2 => 'Ter&ccedil;a',
4131                                3 => 'Quarta',
4132                                4 => 'Quinta',
4133                                5 => 'Sexta',
4134                                6 => 'S&aacute;bado'
4135                        );
4136
4137                        if($month > 2)
4138                        {
4139                                $month -= 2;
4140                        }
4141                                else
4142                        {
4143                                $month += 10;
4144                                $year--;
4145                        }
4146                        $day = (floor((13 * $month - 1) / 5) + $day + ($year % 100) + floor(($year % 100) / 4) + floor(($year / 100) / 4) - 2 * floor($year / 100) + 77);
4147
4148                        $month_day = ($day - 7 * floor($day / 7)); //retorna o numero do dia da semana (Ex: domingo eh dia 0, terca eh 2);
4149                        $weekday = $dia[$month_day]; //retorna o nome do dia da semana de acordo com seu numero;
4150
4151                        return ($weekday);
4152
4153                }
4154
4155                function month_display_week($startdate,$weekly,$cellcolor,$display_name = False,$owner=0,$monthstart=0,$monthend=0)
4156                {
4157                        if($owner == 0)
4158                        {
4159                                $owner = $GLOBALS['phpgw_info']['user']['account_id'];
4160                        }
4161
4162                        $temp_owner = $this->bo->owner;
4163
4164                        $str = '';
4165                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4166                        $p->set_unknowns('keep');
4167
4168                        $p->set_file(
4169                                Array(
4170                                        'month_header'  => 'month_header_print.tpl',
4171                                        'month_day'     => 'month_day_print.tpl'
4172                                )
4173                        );
4174                        $p->set_block('month_header','monthly_header','monthly_header');
4175                        $p->set_block('month_header','month_column','month_column');
4176                        $p->set_block('month_day','month_daily','month_daily');
4177                        $p->set_block('month_day','day_event','day_event');
4178                        $p->set_block('month_day','event','event');
4179
4180                        $p->set_var('extra','');
4181                        $p->set_var('col_width','14');
4182                       
4183                        $today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
4184                        $daily = $this->set_week_array($startdate - $GLOBALS['phpgw']->datetime->tz_offset,$cellcolor,$weekly);
4185
4186                        foreach($daily as $date => $day_params)
4187                        {
4188                                $year  = (int)substr($date,0,4);
4189                                $month = (int)substr($date,4,2);
4190                                $day   = (int)substr($date,6,2);
4191                                $var   = Array(
4192                                        'column_data' => '',
4193                                        'extra' => ''
4194                                );
4195                                $p->set_var($var);
4196                                if ($weekly || ($date >= $monthstart && $date <= $monthend))
4197                                {
4198                                        $new_event_link = '';
4199                                        $day_num = $day;
4200                                        $dia_semana = $this->month_day_of_week($year,$month,$day_num);
4201                                        $id_aux = mktime(0,0,0,$month,$day,$year);
4202                                        $month_identifier = substr(lang(strftime("%B",$id_aux)),0,3);
4203                                        $day_number = $month_identifier . " - " . $dia_semana . ",  " . $day_num;
4204
4205                                        $var = Array(
4206                                                'extra'         => $day_params['extra'],
4207                                                'new_event_link'=> $new_event_link,
4208                                                'day_number'    => $day_number
4209                                        );
4210
4211                                        $p->set_var($var);
4212
4213                                        if($day_params['appts'])
4214                                        {
4215                                                $var = Array(
4216                                                        'week_day_font_size'    => '2',
4217                                                        'events'                => ''
4218                                                );
4219                                                $p->set_var($var);
4220                                                $events = $this->bo->cached_events[$date];
4221                                                foreach($events as $event)
4222                                                {
4223                                                        if ($this->bo->rejected_no_show($event))
4224                                                        {
4225                                                                continue;       // user does not want to see rejected events
4226                                                        }
4227                                                        $p->set_var('day_events',$this->link_to_month_entry($event,$month,$day,$year));
4228                                                        $p->parse('events','event',True);
4229                                                        $p->set_var('day_events','');
4230                                                }
4231                                        }
4232                                        $p->parse('daily_events','day_event',True);
4233                                        $p->parse('column_data','month_daily',True);
4234                                        $p->set_var('daily_events','');
4235                                        $p->set_var('events','');
4236                                }
4237                                $p->parse('column_header','month_column',True);
4238                                $p->set_var('column_data','');
4239                        }
4240                        $this->bo->owner = $temp_owner;
4241                        return $p->fp('out','monthly_header');
4242
4243                }
4244
4245                function display_month_print($month,$year,$showyear,$owner=0)
4246                {
4247                        if($this->debug)
4248                        {
4249                                echo '<!-- datetime:gmtdate = '.$GLOBALS['phpgw']->datetime->cv_gmtdate.' -->'."\n";
4250                        }
4251
4252/*                      $this->bo->store_to_cache(
4253                                Array(
4254                                        'syear' => $year,
4255                                        'smonth'=> $month,
4256                                        'sday'  => 1
4257                                )
4258                        );
4259*/
4260                        $day_ini = $_GET['day_ini'];// dia do inicio da impressao; o padrao e o dia atual;
4261                        $num_dias = $_GET['num_dias'];// quantidade de dias a partir do dia inicial;
4262
4263                        $monthstart = (int)(date('Ymd',mktime(0,0,0,$month    ,1,$year)));
4264//                      $monthend   = (int)(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
4265
4266                        if($num_dias != 0)
4267                        {
4268                                //se a qtde de dias for informada, a data final para impressao considera a soma $day_ini+$num_dias;
4269                                $monthend   = (int)(date('Ymd',mktime(0,0,0,$month,$day_ini+$num_dias,$year)));
4270                        }
4271                        else
4272                        {
4273                                //se a qtde de dias nao for informada, a data final para impressao vai ate o fim do mes corrente;
4274                                $monthend   = (int)(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
4275                        }
4276                       
4277                        if($day_ini != 0)
4278                        {
4279                                //o dia de inicio para impressao passa a ser o informado em $day_ini do mes corrente;
4280                                $start = mktime(0,0,0,$month,$day_ini,$year);
4281                        }
4282                        else
4283                        {
4284                                //se nao for informado o dia para inicio da impressao, esta comeca no dia 1 do mes corrente;
4285                                $start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, 1);
4286                        }
4287                        //$start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, 15);
4288                        $start_d = (int)(date('Ymd',$start));//variavel auxiliar que recebe a data inicial de impressao no formato 'Ymd';
4289                        $saux = (int)(substr($start_d,4,2));//variavel auxiliar que recebe o mes do inicio da impressao;
4290                        $eaux = (int)(substr($monthend,4,2)) + 1;//variavel auxiliar que recebe o mes do fim da impressao;
4291                        //A funcao store_to_cache devolve todos os eventos existentes de determinado usuario em um periodo de tempo
4292                        //especifico. Originalmente, na impressao mensal, esse periodo de tempo era o mes corrente exibido na tela.
4293                        //A mudanca consiste no fato de que uma nova variavel ($saux) e enviada com o mes de inicio do periodo
4294                        //atraves do indice 'smonth' e uma segunda variavel ($eaux) envia o mes final do periodo de tempo atraves
4295                        //do indice 'emonth'. Vide mais comentarios sobre esses valores em class.bocalendar.inc.php,
4296                        //function store_to_cache($params);
4297                        $this->bo->store_to_cache(
4298                        Array(
4299                                'syear' => $year,//ano atual
4300                                'smonth'=> $saux,//mes inicial
4301                                'emonth'=> $eaux,//mes final
4302                                'sday'  => 1
4303                        ));
4304
4305                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4306                        $p->set_unknowns('keep');
4307
4308                        $p->set_file(
4309                                Array(
4310                                        'week' => 'month_day_print.tpl'
4311                                )
4312                        );
4313                        $p->set_block('week','m_w_table','m_w_table');
4314                        $p->set_block('week','event','event');
4315
4316                        $var = Array(
4317                                'cols'      => 1,
4318                                'day_events'=> '' //$this->month_week_header($month,$year,False)
4319                        );
4320//                      $this->output_template_array($p,'row','event',$var);
4321
4322                        $cellcolor = $this->theme['row_on'];
4323
4324                        for($i = (int)($start + $GLOBALS['phpgw']->datetime->tz_offset);(int)(date('Ymd',$i)) <= $monthend;$i += 604800)
4325                        {
4326                                $cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
4327                                $var = Array(
4328                                        'day_events' => $this->month_display_week($i,False,$cellcolor,False,$owner,$monthstart,$monthend)
4329                                );
4330                                $this->output_template_array($p,'row','event',$var);
4331                        }
4332                        return $p->fp('out','m_w_table');
4333                }
4334
4335
4336/***************************************************************************************/
4337
4338                function display_month($month,$year,$showyear,$owner=0)
4339                {
4340                        if($this->debug)
4341                        {
4342                                echo '<!-- datetime:gmtdate = '.$GLOBALS['phpgw']->datetime->cv_gmtdate.' -->'."\n";
4343                        }
4344
4345                        $this->bo->store_to_cache(
4346                                Array(
4347                                        'syear' => $year,
4348                                        'smonth'=> $month,
4349                                        'sday'  => 1
4350                                )
4351                        );
4352
4353                        $monthstart = (int)(date('Ymd',mktime(0,0,0,$month    ,1,$year)));
4354                        $monthend   = (int)(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
4355
4356                        $start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, 1);
4357
4358                        if($this->debug)
4359                        {
4360                                echo '<!-- display_month:monthstart = '.$monthstart.' -->'."\n";
4361                                echo '<!-- display_month:start = '.date('Ymd H:i:s',$start).' -->'."\n";
4362                        }
4363
4364                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4365                        $p->set_unknowns('keep');
4366
4367                        $p->set_file(
4368                                Array(
4369                                        'week' => 'month_day.tpl'
4370                                )
4371                        );
4372                        $p->set_block('week','m_w_table','m_w_table');
4373                        $p->set_block('week','event','event');
4374
4375                        $var = Array(
4376                                'cols'      => 1,
4377                                'day_events'=> $this->week_header($month,$year,False)
4378                        );
4379                        $this->output_template_array($p,'row','event',$var);
4380
4381                        $cellcolor = $this->theme['row_on'];
4382
4383                        for($i = (int)($start + $GLOBALS['phpgw']->datetime->tz_offset);(int)(date('Ymd',$i)) <= $monthend;$i += 604800)
4384                        {
4385                                $cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
4386                                $var = Array(
4387                                        'day_events' => $this->display_week($i,False,$cellcolor,False,$owner,$monthstart,$monthend)
4388                                );
4389                                $this->output_template_array($p,'row','event',$var);
4390                        }
4391                        return $p->fp('out','m_w_table');
4392                }
4393
4394                function display_weekly($params)
4395                {
4396                        if(!is_array($params))
4397                        {
4398                                $this->index();
4399                        }
4400
4401                        $year = substr($params['date'],0,4);
4402                        $month = substr($params['date'],4,2);
4403                        $day = substr($params['date'],6,2);
4404                        $showyear = $params['showyear'];
4405                        $owners = $params['owners'];
4406
4407                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4408                        $p->set_unknowns('keep');
4409
4410                        $p->set_file(
4411                                Array(
4412                                        'week'  => 'month_day.tpl'
4413                                )
4414                        );
4415                        $p->set_block('week','m_w_table','m_w_table');
4416                        $p->set_block('week','event','event');
4417
4418                        $start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, $day) + $GLOBALS['phpgw']->datetime->tz_offset;
4419
4420                        $cellcolor = $this->theme['row_off'];
4421
4422                        $true_printer_friendly = $this->bo->printer_friendly;
4423
4424                        if(is_array($owners))
4425                        {
4426                                $display_name = True;
4427                                $counter = count($owners);
4428                                $owners_array = $owners;
4429                                $cols = 8;
4430                        }
4431                        else
4432                        {
4433                                $display_name = False;
4434                                $counter = 1;
4435                                $owners_array[0] = $owners;
4436                                $cols = 7;
4437                        }
4438                        $var = Array(
4439                                'cols'         => $cols,
4440                                'day_events'   => $this->week_header($month,$year,$display_name)
4441                        );
4442                        $this->output_template_array($p,'row','event',$var);
4443
4444                        $tstart = $start - $GLOBALS['phpgw']->datetime->tz_offset;
4445                        $tstop = $tstart + 604800;
4446                        $original_owner = $this->bo->so->owner;
4447                        for($i=0;$i<$counter;$i++)
4448                        {
4449                                $this->bo->so->owner = $owners_array[$i];
4450                                $this->bo->so->open_box($owners_array[$i]);
4451                                $this->bo->store_to_cache(
4452                                        Array(
4453                                                'syear'  => date('Y',$tstart),
4454                                                'smonth' => date('m',$tstart),
4455                                                'sday'   => date('d',$tstart),
4456                                                'eyear'  => date('Y',$tstop),
4457                                                'emonth' => date('m',$tstop),
4458                                                'eday'   => date('d',$tstop)
4459                                        )
4460                                );
4461                                $p->set_var('day_events',$this->display_week($start,True,$cellcolor,$display_name,$owners_array[$i]));
4462                                $p->parse('row','event',True);
4463                        }
4464                        $this->bo->so->owner = $original_owner;
4465                        $this->bo->printer_friendly = $true_printer_friendly;
4466                        return $p->fp('out','m_w_table');
4467                }
4468
4469                function view_event($event,$alarms=False)
4470                {
4471                        if((!$event['participants'][$this->bo->owner] && !$this->bo->check_perms(PHPGW_ACL_READ,$event)))
4472                        {
4473                                return False;
4474                        }
4475
4476                        $p = &$GLOBALS['phpgw']->template;
4477
4478                        $p->set_file(
4479                                Array(
4480                                        'view'  => 'view.tpl'
4481                                )
4482                        );
4483                        $p->set_block('view','view_event','view_event');
4484                        $p->set_block('view','list','list');
4485                        $p->set_block('view','hr','hr');
4486
4487                        $vars = $this->bo->event2array($event);
4488
4489                        $vars['title']['tr_color'] = $this->theme['th_bg'];
4490
4491                        foreach($vars['participants']['data'] as $user => $str)
4492                        {
4493                        if ($this->bo->check_perms(PHPGW_ACL_EDIT,0,$user) && ereg('^(.*) \((.*)\)$',$str,$parts))
4494                                {
4495                                        $vars['participants']['data'][$user] = $parts[1].' (<a href="'.$this->page('edit_status','&cal_id='.$event['id'].'&owner='.$user).'">'.$parts[2].'</a>)';
4496                                        $vars['participants']['data'][$user].='&nbsp;(<a href=\'index.php?menuaction=calendar.uicalendar.screen_delegate_event&id_event='.$event['id'].'&delegator='.$user.'&date='.$_REQUEST["date"].'&eventArray='.$event.'\'>'.lang("Delegate event").'</a>)';
4497//system('echo "event: '.$event['start'].'" >>/tmp/controle');
4498                                }
4499                        }
4500                        $vars['participants']['data'] = implode("<br>\n",$vars['participants']['data']);
4501                        foreach($vars as $var)
4502                        {
4503                                if (strlen($var['data']))
4504                                {
4505                                        $this->output_template_array($p,'row','list',$var);
4506                                }
4507                        }
4508
4509                        if($alarms && count($event['alarm']))
4510                        {
4511                                $p->set_var('th_bg',$this->theme['th_bg']);
4512                                $p->set_var('hr_text',lang('Alarms'));
4513                                $p->parse('row','hr',True);
4514                                foreach($event['alarm'] as $key => $alarm)
4515                                {
4516                                        if (($this->bo->so->owner == $alarm['owner']) || ($this->bo->so->cal->event['owner'] == $this->bo->so->owner)) // Show only alert from user who is requesting or alert owner
4517                                        {       
4518                                                $icon = '<img src="'.$GLOBALS['phpgw']->common->image('calendar',($alarm['enabled']?'enabled':'disabled')).'" width="13" height="13">';
4519                                                $var = Array(                                   
4520                                                        'field' => $icon.$GLOBALS['phpgw']->common->show_date($alarm['time']),
4521                                                        'data'  => lang('Email Notification for %1',$GLOBALS['phpgw']->common->grab_owner_name($alarm['owner']))
4522                                                );
4523                                                $this->output_template_array($p,'row','list',$var);
4524                                        }
4525                                }
4526                        }
4527                        return True;
4528                }
4529
4530                function nm_on_off()
4531                {
4532                        if($GLOBALS['phpgw']->nextmatchs->alternate_row_color() == $this->theme['row_on'])
4533                        {
4534                                return '_on';
4535                        }
4536                        return '_off';
4537                }
4538
4539                function slot_num($time,$set_day_start=0,$set_day_end=0)
4540                {
4541                        static $day_start, $day_end, $interval=0;
4542
4543                        if ($set_day_start) $day_start = $set_day_start;
4544                        if ($set_day_end)   $day_end   = $set_day_end;
4545                        if (!$interval)     $interval  = 60*$this->bo->prefs['calendar']['interval'];
4546
4547                        if ($time > $day_end)
4548                        {
4549                                $time = $day_end;
4550                        }
4551                        $slot = (int)(($time - $day_start) / $interval);
4552
4553                        return $slot < 0 ? 0 : 1+$slot;
4554                }
4555
4556                function print_day($params)
4557                {
4558                        if(!is_array($params))
4559                        {
4560                                $this->index();
4561                        }
4562
4563                        print_debug('in print_day()');
4564
4565                        $this->bo->store_to_cache(
4566                                Array(
4567                                        'syear'  => $params['year'],
4568                                        'smonth' => $params['month'],
4569                                        'sday'   => $params['day'],
4570                                        'eyear'  => $params['year'],
4571                                        'emonth' => $params['month'],
4572                                        'eday'   => $params['day']
4573                                )
4574                        );
4575
4576                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4577                        $p->set_unknowns('keep');
4578
4579                        $tpl = 'day_cal.tpl';
4580                        if((int)($GLOBALS['phpgw_info']['user']['preferences']['calendar']['mainscreen_showevents'])==2 &&
4581                                $GLOBALS['phpgw_info']['flags']['currentapp'] == 'home')
4582                        {
4583                                $tpl = 'day_list.tpl';
4584                        }
4585                        $templates = Array(
4586                                'day_cal'   => $tpl
4587                        );
4588
4589                        $p->set_file($templates);
4590                        $p->set_block('day_cal','day','day');
4591                        $p->set_block('day_cal','day_row','day_row');
4592                        $p->set_block('day_cal','day_event_on','day_event_on');
4593                        $p->set_block('day_cal','day_event_off','day_event_off');
4594                        $p->set_block('day_cal','day_event_holiday','day_event_holiday');
4595                        $p->set_block('day_cal','day_time','day_time');
4596
4597                        $date_to_eval = sprintf("%04d%02d%02d",$params['year'],$params['month'],$params['day']);
4598
4599                        $day_start = mktime((int)($this->bo->prefs['calendar']['workdaystarts']),0,0,$params['month'],$params['day'],$params['year']);
4600                        $day_end = mktime((int)($this->bo->prefs['calendar']['workdayends']),0,1,$params['month'],$params['day'],$params['year']);
4601                        $daily = $this->set_week_array($GLOBALS['phpgw']->datetime->get_weekday_start($params['year'],$params['month'],$params['day']),$this->theme['row_on'],True);
4602                        print_debug('Date to Eval',$date_to_eval);
4603                        $events_to_show = array();
4604                        if($daily[$date_to_eval]['appts'])
4605                        {
4606                                $events = $this->bo->cached_events[$date_to_eval];
4607                                print_debug('Date',$date_to_eval);
4608                                print_debug('Count',count($events));
4609                                foreach($events as $event)
4610                                {
4611                                        if ($this->bo->rejected_no_show($event))
4612                                        {
4613                                                continue;       // user does not want to see rejected events
4614                                        }
4615                                        if ($event['recur_type'])       // calculate start- + end-datetime for recuring events
4616                                        {
4617                                                $this->bo->set_recur_date($event,$date_to_eval);
4618                                        }
4619                                        $events_to_show[] = array(
4620                                                'starttime' => $this->bo->maketime($event['start']),
4621                                                'endtime'   => $this->bo->maketime($event['end']),
4622                                                'content'   => $this->link_to_entry($event,$params['month'],$params['day'],$params['year'])
4623                                        );
4624                                }
4625                        }
4626                        //echo "events_to_show=<pre>"; print_r($events_to_show); echo "</pre>\n";
4627                        $other = $GLOBALS['phpgw']->hooks->process(array(
4628                                'location'  => 'calendar_include_events',
4629                                'year'      => $params['year'],
4630                                'month'     => $params['month'],
4631                                'day'       => $params['day'],
4632                                'owner'     => $this->bo->owner // num. id of the user, not necessary current user
4633                        ));
4634
4635                        if (is_array($other))
4636                        {
4637                                foreach($other as $evts)
4638                                {
4639                                        if (is_array($evts))
4640                                        {
4641                                                $events_to_show = array_merge($events_to_show,$evts);
4642                                        }
4643                                }
4644                                usort($events_to_show,create_function('$a,$b','return $a[\'starttime\']-$b[\'starttime\'];'));
4645                                //echo "events_to_show=<pre>"; print_r($events_to_show); echo "</pre>\n";
4646                        }
4647
4648                        if (count($events_to_show))
4649                        {
4650                                $last_slot_end = -1;
4651                                foreach($events_to_show as $event)
4652                                {
4653                                        $slot = $this->slot_num($event['starttime'],$day_start,$day_end);
4654                                        $slot_end = isset($event['endtime']) ? $this->slot_num($event['endtime']-1) : $slot;    // -1 to not occupy eg. the 18.00 slot for a 17-18h date
4655
4656                                        if ($slot <= $last_slot_end)
4657                                        {
4658                                                $slot = $last_slot;
4659                                                $slot_end = max($last_slot_end,$slot_end);
4660                                        }
4661                                        $rows[$slot] .= $event['content'];
4662
4663                                        print_debug('slot',$slot);
4664                                        print_debug('row',$rows[$slot]);
4665
4666                                        $row_span[$slot] = 1 + $slot_end - $slot;
4667
4668                                        $last_slot = $slot;
4669                                        $last_slot_end = $slot_end;
4670                                        print_debug('Time',$GLOBALS['phpgw']->common->show_date($this->bo->maketime($events[$i]['start']) - $GLOBALS['phpgw']->datetime->tz_offset).' - '.$GLOBALS['phpgw']->common->show_date($this->bo->maketime($events[$i]['end']) - $GLOBALS['phpgw']->datetime->tz_offset));
4671                                        print_debug('Slot',$slot);
4672                                }
4673                                //echo "rows=<pre>"; print_r($rows); echo "<br>row_span="; print_r($row_span); echo "</pre>\n";
4674                        }
4675                        $holiday_names = $daily[$date_to_eval]['holidays'];
4676                        if(!$holiday_names)
4677                        {
4678                                $row_to_print = $this->nm_on_off();
4679                        }
4680                        else
4681                        {
4682                                $row_to_print = '_holiday';
4683                                foreach($holiday_names as $name)
4684                                {
4685                                        $rows[0] = '<center>'.$name.'</center>' . $rows[0];
4686                                }
4687                        }
4688                        $last_slot = $this->slot_num($day_end,$day_start,$day_end);
4689                        $rowspan = 0;
4690                        for ($slot = 0; $slot <= $last_slot; ++$slot)
4691                        {
4692                                $p->set_var('extras','');
4693                                if ($rowspan > 1)
4694                                {
4695                                        $p->set_var('event','');
4696                                        $rowspan--;
4697                                }
4698                                elseif (!isset($rows[$slot]))
4699                                {
4700                                        $p->set_var('event','&nbsp;');
4701                                        $row_to_print = $this->nm_on_off();
4702                                        $p->parse('event','day_event'.$row_to_print);
4703                                }
4704                                else
4705                                {
4706                                        $rowspan = (int)$row_span[$slot];
4707                                        if ($rowspan > 1)
4708                                        {
4709                                                $p->set_var('extras',' rowspan="'.$rowspan.'"');
4710                                        }
4711                                        $p->set_var('event',$rows[$slot]);
4712                                        $row_to_print = $this->nm_on_off();
4713                                        $p->parse('event','day_event'.$row_to_print);
4714                                }
4715                                $open_link = $close_link = '';
4716                                $time = '&nbsp;';
4717
4718                                if (0 < $slot && $slot < $last_slot)    // normal time-slot not before or after day_start/end
4719                                {
4720                                        $time = $day_start + ($slot-1) * 60 * $this->bo->prefs['calendar']['interval'];
4721                                        $hour = date('H',$time);
4722                                        $min  = date('i',$time);
4723                                        $time = $GLOBALS['phpgw']->common->formattime($hour,$min);
4724
4725                                        if(!$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_ADD))
4726                                        {
4727                                                $open_link = ' <a href="'.$this->page('add',"&date=$date_to_eval&hour=$hour&minute=$min").'">';
4728                                                $close_link = '</a> ';
4729                                        }
4730                                }
4731                                $p->set_var(Array(
4732                                        'open_link'  => $open_link,
4733                                        'time'       => $time,
4734                                        'close_link' => $close_link,
4735                                        'tr_color'   => ''      // dummy to stop output_template_array to set it
4736                                ));
4737                                $p->parse('time','day_time');
4738
4739                                $p->parse('row','day_row',True);
4740                        }
4741                        return $p->fp('out','day');
4742                }       // end function
4743
4744                function timematrix($param)
4745                {
4746                        if(!is_array($param))
4747                        {
4748                                $this->index();
4749                        }
4750
4751                        $date = $param['date'];
4752                        $starttime = $param['starttime'];
4753                        $endtime = $param['endtime'];
4754                        $participants = $param['participants'];
4755                        foreach($participants as $part => $nul)
4756                        {
4757                                $participants[$part] = $GLOBALS['phpgw']->common->grab_owner_name($part);
4758                                // Much better for processor  :)
4759                                $participants_id[]  .= $part;
4760                        }
4761                        uasort($participants,'strnatcasecmp');  // sort them after their fullname
4762
4763                        if(!isset($this->bo->prefs['calendar']['interval']))
4764                        {
4765                                $this->bo->prefs['calendar']['interval'] = 15;
4766                                $GLOBALS['phpgw']->preferences->add('calendar','interval',15);
4767                                $GLOBALS['phpgw']->preferences->save_repository();
4768                        }
4769                        $increment = $this->bo->prefs['calendar']['interval'];
4770                        $interval = (int)(60 / $increment);
4771
4772                        $pix = $GLOBALS['phpgw']->common->image('calendar','pix');
4773
4774                        $str = '<center>'.lang($GLOBALS['phpgw']->common->show_date($date['raw'],'l'))
4775                                . ', '.$this->bo->long_date($date).'<br>'
4776                                . '<table width="85%" border="0" cellspacing="0" cellpadding="0" cols="'.((24 * $interval) + 1).'">'
4777                                . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>'
4778                                . '<tr><td width="15%"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.lang('Participant').'</font></td>';
4779                        for($i=0;$i<24;$i++)
4780                        {
4781                                for($j=0;$j<$interval;$j++)
4782                                {
4783                                        $k = ($j == 0 ? sprintf('%02d',$i).'<br>':'').sprintf('%02d',$j*$increment);
4784
4785                                        $str .= '<td align="left" bgcolor="'.$this->theme['bg_color'].'"><font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'
4786                                                . '<a href="'.$this->page('add','&date='.$date['full'].'&hour='.$i.'&minute='.($increment * $j))."\" onMouseOver=\"window.status='".$i.':'.(($increment * $j)<=9?'0':'').($increment * $j)."'; return true;\">"
4787                                                . $k."</a>&nbsp;</font></td>\n";
4788                                }
4789                        }
4790                        $str .= '</tr>'
4791                                . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>';
4792                        if(!$endtime)
4793                        {
4794                                $endtime = $starttime;
4795                        }
4796                        $owner = $this->bo->owner;
4797                        foreach($participants as $part => $fullname)
4798                        {
4799                                $str .= '<tr align="center">'
4800                                        . '<td width="15%" align="left"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.$fullname.'</font></td>';
4801
4802                                $this->bo->cached_events = Array();
4803                                $this->bo->so->owner = $part;
4804                                $this->bo->so->open_box($part);
4805                                $this->bo->store_to_cache(
4806                                        Array(
4807                                                'syear' => $date['year'],
4808                                                'smonth'=> $date['month'],
4809                                                'sday'  => $date['day'],
4810                                                'eyear' => 0,
4811                                                'emonth'=> 0,
4812                                                'eday'  => $date['day'] + 1
4813                                        )
4814                                );
4815
4816                                if(!$this->bo->cached_events[$date['full']])
4817                                {
4818                                        for($j=0;$j<24;$j++)
4819                                        {
4820                                                for($k=0;$k<$interval;$k++)
4821                                                {
4822                                                        $str .= '<td height="1" align="left" bgcolor="'.$this->theme['bg_color'].'" color="#999999">&nbsp;</td>';
4823                                                }
4824                                                $str .= "\n";
4825                                        }
4826                                }
4827                                else
4828                                {
4829                                        $time_slice = $this->bo->prepare_matrix($interval,$increment,$part,$date['full']);
4830                                        for($h=0;$h<24;$h++)
4831                                        {
4832                                                $hour = $h * 10000;
4833                                                for($m=0;$m<$interval;$m++)
4834                                                {
4835                                                        $index = ($hour + (($m * $increment) * 100));
4836                                                        switch($time_slice[$index]['marker'])
4837                                                        {
4838                                                                case '&nbsp':
4839                                                                        $time_slice[$index]['color'] = $this->theme['bg_color'];
4840                                                                        $extra = '';
4841                                                                        break;
4842                                                                case '-':
4843                                                                        $time_slice[$index]['color'] = $this->theme['bg01'];
4844                                                                        $link = $this->page('view','&cal_id='.$time_slice[$index]['id'].'&date='.$date['full']);
4845                                                                        $extra =' title="'.$time_slice[$index]['description'].'" onClick="location.href=\''.$link.'\';" style="cursor:pointer; cursor:hand;"';
4846                                                                        break;
4847                                                        }
4848                                                        $str .= '<td bgcolor="'.$time_slice[$index]['color'].'" color="#999999"'.$extra.'><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.$time_slice[$index]['marker'].'</font></td>';
4849                                                }
4850                                                $str .= "\n";
4851                                        }
4852                                }
4853                                $str .= '</tr>'
4854                                        . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="#999999"><img src="'.$pix.'"></td></tr>';
4855                        }
4856                        $this->bo->owner = $owner;
4857                        $this->bo->so->owner = $owner;
4858                        $this->bo->so->open_box($owner);
4859                        return $str.'</table></center>'."\n";
4860                }
4861
4862                function get_response($cal_id)
4863                {
4864                        $p = &$GLOBALS['phpgw']->template;
4865                        $p->set_file(
4866                                Array(
4867                                        'form_button'   => 'form_button_script.tpl'
4868                                )
4869                        );
4870
4871                        $ev = $this->bo->get_cached_event();
4872                        $response_choices = Array(
4873                                ACCEPTED        => lang('Accept'),
4874                                REJECTED        => lang('Reject'),
4875                                TENTATIVE       => lang('Tentative')                           
4876                        );
4877                        $str = '';
4878                        while(list($param,$text) = each($response_choices))
4879                        {
4880                                $var = Array(
4881                                        'action_url_button'     => $this->page('set_action','&cal_id='.$cal_id.'&action='.$param),
4882                                        'action_text_button'    => '  '.$text.'  ',
4883                                        'action_confirm_button' => '',
4884                                        'action_extra_field'    => ''
4885                                );
4886                                $p->set_var($var);
4887                                $str .= '<td>'.$p->fp('out','form_button').'</td>'."\n";
4888                        }
4889                        if ($this->bo->return_to)
4890                        {
4891                                $var = Array(
4892                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to),
4893                                        'action_text_button'    => lang('cancel'),
4894                                        'action_confirm_button' => '',
4895                                        'action_extra_field'    => ''
4896                                );
4897                                $p->set_var($var);
4898                                $str .= '<td>'.$p->fp('out','form_button').'</td>'."\n";
4899                        }
4900                        $str = '<td><b>'.$GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner).":</b></td>\n".$str;
4901
4902                        return '<table width="100%"><tr align="center">'."\n".$str.'</tr></table>'."\n";
4903                }
4904
4905                function accounts_popup()
4906                {
4907                        $GLOBALS['phpgw']->accounts->accounts_popup('calendar');
4908                       
4909                }
4910
4911                function edit_form($param)
4912                {
4913                        if(!is_array($param))
4914                        {
4915                                $this->index();
4916                        }
4917                       
4918                        if(isset($param['event']))
4919                        {
4920                                $event = $param['event'];
4921                        }
4922                       
4923                        $hourformat = substr($this->bo->users_timeformat,0,1);
4924                       
4925                        // $sb = CreateObject('phpgwapi.sbox');
4926                        $sb = CreateObject('phpgwapi.sbox2');
4927                        $jscal = CreateObject('phpgwapi.jscalendar');   // before phpgw_header() !!!
4928                       
4929                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
4930                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
4931                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
4932                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
4933                        $GLOBALS['phpgw_info']['flags']['app_header'] = $event['id'] ? lang('Editing event') : lang('Adding event');
4934                        if ($param['plain'] != "True"){
4935                                $GLOBALS['phpgw']->common->phpgw_header();
4936                        }
4937                        else{
4938                                $GLOBALS['phpgw_info']['theme']['row_on'] = "F8F8F8";
4939                                $GLOBALS['phpgw_info']['theme']['row_off'] = "F8F8F8";
4940                        }
4941
4942                        $p = &$GLOBALS['phpgw']->template;
4943                        $p->set_file(
4944                                Array(
4945                                        'edit'          => 'edit.tpl',
4946                                        'form_button'   => 'form_button_script.tpl'
4947                                )
4948                        );
4949                        $p->set_block('edit','edit_entry','edit_entry');
4950                        $p->set_block('edit','list','list');
4951                        $p->set_block('edit','hr','hr');
4952                       
4953                        $vars = Array(
4954                                'font'                  => $this->theme['font'],
4955                                'bg_color'              => $this->theme['bg_text'],
4956                                'action_url'            => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.bocalendar.update')),
4957                                'accounts_link'         => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.accounts_popup'),
4958                                'common_hidden' => '<input type="hidden" name="cal[id]" value="'.$event['id'].'">'."\n"
4959                                        . '<input type="hidden" name="cal[owner]" value="'.$event['owner'].'">'."\n"
4960                                        . '<input type="hidden" name="cal[uid]" value="'.$event['uid'].'">'."\n"
4961                                        . ($_GET['cal_id'] && $event['id'] == 0?'<input type="hidden" name="cal[reference]" value="'.$_GET['cal_id'].'">'."\n":
4962                                        (@isset($event['reference'])?'<input type="hidden" name="cal[reference]" value="'.$event['reference'].'">'."\n":''))
4963                                        . (@isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) && $GLOBALS['phpgw_info']['server']['deny_user_grants_access']?
4964                                        '<input type="hidden" name="participants[]" value="'.$this->bo->owner.'">'."\n":''),
4965                                'errormsg'              => ($param['cd']?$GLOBALS['phpgw']->common->check_code($param['cd']):'')
4966                        );
4967                       
4968                        $p->set_var($vars);
4969
4970// Brief Description
4971                        $var['title'] = Array(
4972                                'tr_color' => $this->theme['th_bg'],
4973                                'field' => lang('Title'),
4974                                'data'  => '<input name="cal[title]" size="45" maxlength="80" value="'.$event['title'].'">'
4975                        );
4976
4977// Full Description
4978                        $var['description'] = Array(
4979                                'field' => lang('Full Description'),
4980                                'data'  => '<textarea name="cal[description]" rows="5" cols="40" wrap="virtual" maxlength="2048">'.$event['description'].'</textarea>'
4981                        );
4982
4983// Display Categories
4984                        if(strpos($event['category'],','))
4985                        {
4986                                $temp_cats = explode(',',$event['category']);
4987                                @reset($temp_cats);
4988                                while(list($key,$value) = each($temp_cats))
4989                                {
4990                                        $check_cats[] = (int)$value;
4991                                }
4992                        }
4993                        elseif($event['category'])
4994                        {
4995                                $check_cats[] = (int)$event['category'];
4996                        }
4997                        else
4998                        {
4999                                $check_cats[] = 0;
5000                        }
5001                        $var['category'] = Array(
5002                                'field' => lang('Category'),
5003                                'data'  => '<select name="categories[]" onchange="javascript:updateTitleField(this)" multiple size="5">'.$this->cat->formated_list('select','all',$check_cats,True).'</select>'
5004                        );
5005
5006// Location
5007                        $var['location'] = Array(
5008                                'field' => lang('Location'),
5009                                'data'  => '<input name="cal[location]" size="45" maxlength="255" value="'.$event['location'].'">'
5010                        );
5011
5012// Date
5013
5014                        $start = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
5015                        $var['startdate'] = Array(
5016                                'field' => lang('Start Date'),
5017/*
5018                                'data'  => $GLOBALS['phpgw']->common->dateformatorder(
5019                                   $sb->getYears('start[year]',(int)$GLOBALS['phpgw']->common->show_date($start,'Y')),
5020                                   $sb->getMonthText('start[month]',(int)$GLOBALS['phpgw']->common->show_date($start,'n')),
5021                                   $sb->getDays('start[mday]',(int)$GLOBALS['phpgw']->common->show_date($start,'d'))
5022                                )
5023*/
5024                                'data' => $jscal->input('start[str]',$start)
5025                        );
5026
5027// Time
5028                        if ($this->bo->prefs['common']['timeformat'] == '12')
5029                        {
5030                                $str .= '<input type="radio" name="start[ampm]" value="am"'.($event['start']['hour'] >= 12?'':' checked').'>am'."\n"
5031                                        . '<input type="radio" name="start[ampm]" value="pm"'.($event['start']['hour'] >= 12?' checked':'').'>pm'."\n";
5032                        }
5033                        $var['starttime'] = Array(
5034                                'field' => lang('Start Time'),
5035                                'data'  => '<input name="start[hour]" id="start_hour" size="2" VALUE="'.$GLOBALS['phpgw']->common->show_date($start,$hourformat).'" maxlength="2">:<input name="start[min]" id="start_minute" size="2" value="'.$GLOBALS['phpgw']->common->show_date($start,'i').'" maxlength="2">'."\n".$str
5036                        );
5037
5038// End Date
5039                        $end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
5040                        $var['enddate'] = Array(
5041                                'field' => lang('End Date'),
5042/*
5043                                'data'  => $GLOBALS['phpgw']->common->dateformatorder(
5044                                   $sb->getYears('end[year]',(int)$GLOBALS['phpgw']->common->show_date($end,'Y')),
5045                                   $sb->getMonthText('end[month]',(int)$GLOBALS['phpgw']->common->show_date($end,'n')),
5046                                   $sb->getDays('end[mday]',(int)$GLOBALS['phpgw']->common->show_date($end,'d'))
5047                                )
5048*/
5049                                'data' => $jscal->input('end[str]',$end)
5050                        );
5051
5052// End Time
5053                        if ($this->bo->prefs['common']['timeformat'] == '12')
5054                        {
5055                                $str = '<input type="radio" name="end[ampm]" value="am"'.($event['end']['hour'] >= 12?'':' checked').'>am'."\n"
5056                                        . '<input type="radio" name="end[ampm]" value="pm"'.($event['end']['hour'] >= 12?' checked':'').'>pm'."\n";
5057                        }
5058                        $var['endtime'] = Array(
5059                                'field' => lang('End Time'),
5060                                'data'  => '<input name="end[hour]" id="end_hour" size="2" VALUE="'.$GLOBALS['phpgw']->common->show_date($end,$hourformat).'" maxlength="2">:<input name="end[min]" id="end_minute" size="2" value="'.$GLOBALS['phpgw']->common->show_date($end,'i').'" maxlength="2">'."\n".$str
5061                        );
5062
5063// Priority
5064                        $var['priority'] = Array(
5065                                'field' => lang('Priority'),
5066                                'data'  => $sb->getPriority('cal[priority]',$event['priority'])
5067                        );
5068
5069                        // Access
5070                        $var['access'] = Array(
5071                        'field' => lang('Type'),
5072                        'data'  => '<select onchange="javascript:changeViewMode(this.value);" id="cal[type]" name="cal[type]" '.($event['type'] == 'H'?'DISABLED':'').'><option value="normal" '.(($event['public'] && $event['type'] == 'E')?'SELECTED':'').' >'.lang('Normal').'</option><option value="private" '.((!$event['public'] && $event['type'] == 'E')?'SELECTED':'').' >'. lang('Restrict').'</option><option value="privateHiddenFields" '.($event['type']=='P'?'SELECTED':'').' >'. lang('Private').'</option><option value="hourAppointment" '.($event['type'] == 'H'?'SELECTED':'').' >'.lang('Hours Appointment').'</option></select>'
5073                        ); //event['public']
5074
5075                        // Participants
5076                        if(!isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) || !$GLOBALS['phpgw_info']['server']['deny_user_grants_access'])
5077                        {
5078                                switch($GLOBALS['phpgw_info']['user']['preferences']['common']['account_selection'])
5079                                {
5080                                        case 'popup':
5081                                                while (is_array($event['participants']) && list($id) = each($event['participants']))
5082                                                {
5083                                                        if($id != (int)$event['owner'])
5084                                                        {
5085                                                                $str .= '<option value="' . $id.$event['participants'][$id] . '"'.($event['participants'][$id]?' selected':'').'>('.$GLOBALS['phpgw']->accounts->get_type($id)
5086                                                                                .') ' . $GLOBALS['phpgw']->common->grab_owner_name($id) . '</option>' . "\n";
5087                                                        }
5088                                                }
5089                                                $var['participants'] = array
5090                                                (
5091                                                        'field' => '<input type="button" value="' . lang('Participants') . '" onClick="accounts_popup();">' . "\n"
5092                                                                        . '<input type="hidden" name="accountid" value="' . $accountid . '">',
5093                                                        'data'  => "\n".'   <select name="participants[]" multiple size="7">' . "\n" . $str . '</select>'
5094                                                );
5095                                                break;
5096                                        default:
5097                                                foreach($event['participants'] as $id => $participant)
5098                                                {
5099                                                        if (($id != $event['owner']) && ($id != ""))
5100                                                        {
5101                                                                $GLOBALS['phpgw']->accounts->get_account_name($id, $lid, $fname, $lname);
5102                                                                $cn = $fname.' '.$lname;                                                       
5103                                                                $option = '    <option  value="' . $id.$participant . '">'.$cn.'</option>'."\n";
5104                                                                $str .= $option;
5105                                                        }                                                               
5106                                                }
5107                                                $str = utf8_decode($str);
5108                                                $footer_ext_participantes =     '<br>&nbsp;&nbsp;'.lang("The email addresses must be separated by ','");                                               
5109                                               
5110                                                $var['participants'] = array
5111                                                (
5112                                                        'field' => lang('Participants'),                                                       
5113                                                        'data'  => "
5114                                                                        <table width='100%' border='0'>
5115                                                                                <tr>
5116                                                                                        <td width='30%'>                                                                               
5117                                                                                                <center>Participantes</center>                                                                                         
5118                                                                                        </td>
5119                                                                                        <td width='8%' >&nbsp;</td>
5120                                                                                        <td width='40%'>&nbsp;</td>
5121                                                                                </tr>                                                                                                                                           
5122                                                                                <tr>           
5123                                                                                        <td width='30%'>                                                                                       
5124                                                                                                <center><select id='user_list' name='participants[]' style='width: 220px' multiple size='7'>".$str."</select></center>                                                                         
5125                                                                                        </td>                           
5126                                                                                        <td width='8%'>
5127                                                                                        <center>
5128                                                                                                <table width='100%' border='0'>                                                                 
5129                                                                                                        <tr height='5'><td>&nbsp;</td></tr>                                                                     
5130                                                                                                        <tr><td align='center'>                                                                 
5131                                                                                                                <button type='button' onClick='javascript:openListUsers(340,533, "
5132                                                                                                                .$event['owner'].
5133                                                                                                                ")'><img src='calendar/templates/".$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set']."/images/add.png' style='vertical-align: middle;' >&nbsp;Adicionar</button>
5134                                                                                                                </td>
5135                                                                                                        </tr>                                                   
5136                                                                                                        <tr height='5'><td>&nbsp;</td></tr>
5137                                                                                                        <tr><td  align='center'>
5138                                                                                                                <button type='button' onClick='javascript:rem()'><img src='calendar/templates/".$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set']."/images/rem.png' style='vertical-align: middle;' >&nbsp;Remover</button>
5139                                                                                                                </td>
5140                                                                                                        </tr>
5141                                                                                                </table>
5142                                                                                        </center>
5143                                                                                        </td>
5144                                                                                        <td width='40%'>&nbsp;</td>
5145                                                                                </tr>
5146                                                                                </table>
5147                                                                                <script src='calendar/js/edit.js' type='text/javascript'></script>
5148                                                                        "
5149                                                );
5150                                                // if ExpressoMail 1.2 has been installed and enabled, show the plugin using AJAX.
5151                                                if($GLOBALS['phpgw_info']['server']['cal_expressoMail']) {                                                     
5152                                                        $module_name = 'expressoMail'.(str_replace("1.","1_",$GLOBALS['phpgw_info']['server']['cal_expressoMail']));
5153
5154                                                        if($GLOBALS['phpgw_info']['user']['apps'][$module_name]){                                                               
5155                                                                $ldap_manager = CreateObject('contactcenter.bo_ldap_manager');
5156                                                                $_SESSION['phpgw_info']['expressomail']['user'] = $GLOBALS['phpgw_info']['user'];
5157                                                                $_SESSION['phpgw_info']['expressomail']['user']['owner'] = $event['owner'];
5158                                                                $_SESSION['phpgw_info']['expressomail']['server'] = $GLOBALS['phpgw_info']['server'];
5159                                                                $_SESSION['phpgw_info']['expressomail']['ldap_server'] = $ldap_manager ? $ldap_manager->srcs[1] : null;
5160                                                                $context = $GLOBALS['phpgw_info']['server']['ldap_context'];
5161                                                                $user_context = array();
5162                                                                foreach(explode(",",$GLOBALS['phpgw_info']['user']['account_dn']) as $i => $dn_part){
5163                                                                        if($i)
5164                                                                                $user_context[] = $dn_part;
5165                                                                }
5166                                                                // Prepara o contexto do usuario com sua OU raiz, pois ele pode pertencer a uma OU de nivel N.
5167                                                                $user_ou = explode(",",str_replace($context,"",implode(",",$user_context)));                                                           
5168                                                                $user_context = trim(strtolower($user_ou[count($user_ou) - 2].",".$context));
5169                                                                // Fim         
5170                                                                // Verifica o tipo da visualização da árvore LDAP, configurado no admin da Agenda
5171                                                                $recursive = $GLOBALS['phpgw_info']['server']['cal_type_tree_participants'] == '1' ? true : false;
5172                                                                //$combo_org = $this->get_organizations(trim(strtolower($context)),$user_context, $recursive);
5173                                                                $footer_ext_participantes = lang("Tip: To search in the <b>Global Catalog</b>, type the <b>F9</b> key, like the ExpressoMail.");
5174                                                                //Caso o minimo de caracteres para a busca nao tenha sido preenchido ele sera por padrao = 3
5175                                                                if(!$GLOBALS['phpgw_info']['server']['min_num_characters']){
5176                                                                        $GLOBALS['phpgw_info']['server']['min_num_characters'] = 0;
5177                                                                }
5178
5179                                                                if ($GLOBALS['phpgw_info']['server']['cal_type_tree_participants'] == '3'){
5180                                                                        $combo_org = '<option value='.$context.'>'.strtoupper($context).'</option>';
5181                                                                }else{
5182                                                                        $combo_org = $this->get_organizations(trim(strtolower($context)),$user_context, $recursive);
5183                                                                }
5184
5185                                                                if ($param['plain'] != "True"){
5186
5187                                                                        // Begin load array lang
5188                                                                        ob_start();
5189                                                                        //@include($module_name.'/inc/load_lang.php');
5190                                                                        $load_lang_vars = ob_get_contents();
5191                                                                        ob_end_clean();
5192                                                                        // End load array_lang
5193                                                                }
5194
5195                                                                $var['participants'] = array
5196                                                                (
5197                                                                        'field' => '
5198                                                                        <script src="calendar/templates/'.$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set'].'/js/edit.js" type="text/javascript"></script><div id=\'disponibility\' style=\'display:none;position:absolute\' bgcolor=\'#FFFFFF\'>
5199        <iframe src=\'#\' id=\'frame_disponibility\' width=\'500\' marginHeight=\'0\' marginWidth=\'0\' height=\'200px\'></iframe>
5200</div>
5201                                                                        '.lang('Participants'),
5202                                                                        'data'  => '
5203                                                                                        <input type="hidden" id="txt_loading" value="'.lang("Loading").'">' .
5204                                                                                        '<input type="hidden" id="txt_searching" value="'.lang("Searching").'">' .
5205                                                                                        '<input type="hidden" id="txt_users" value="'.lang("Users").'">' .                                                     
5206                                                                                        '<input type="hidden" id="txt_groups" value="'.lang("Groups").'">' .
5207                                                                                        '<table width="100%" border="0">'.
5208                                                                                        '<tr>'.
5209                                                                                        '<td width="25%"><br><br>'.
5210                                                                                        '<br><br>&nbsp;&nbsp;<b>'.lang("Event's participants").'</b><br>'.
5211                                                                                        '       <select id="user_list" name="participants[]" style="width: 300px" multiple size="13">'.$str.'</select>'.
5212                                                                                        '</td>'.
5213                                                                                        '<td width="30px" valign="middle" align="center">&nbsp;'.
5214                                                                                        '</td>'.
5215                                                                                        '<td valign="bottom">'.
5216                                                                                        '       '.lang("Organization").': '.
5217                                                                                        '       <select name="org_context" id="combo_org" onchange="javascript:get_available_users(\''.$module_name.'\',this.value,\''.($recursive ? "" : "search").'\',\''.$GLOBALS['phpgw_info']['server']['auto_search'].'\');">'.$combo_org.'</select>'.
5218                                                                                        '       <br>'.
5219                                                                                        '       <font color="red"><span id="cal_span_searching">&nbsp;</span></font>'.                                                                 
5220                                                                                        '       <br>'.lang("Search for").':'.
5221                                                                                        '       <input value="" id="cal_input_searchUser" size="35" autocomplete="off" onkeyup="javascript:optionFinderTimeout(this,'.$GLOBALS['phpgw_info']['server']['min_num_characters'].',\''.($recursive ? "" : "search").'\',\''.$GLOBALS['phpgw_info']['server']['auto_search'].'\')"><br>'.
5222                                                                                        '       <b>'.lang("Available users and groups").'</b><br>'.
5223                                                                                        '       <select id="user_list_in" style="width: 300px" multiple size="13"></select>'.
5224                                                                                        '</td>'.
5225                                                                                        '</tr>'.
5226                                            '<tr>'.
5227                                            '<td width="25%">'.
5228                                            '<button type="button" id="time_map" onClick="javascript:show_disponibility();">'.lang("Disponibility map").'</button>'.
5229                                            '</td>'.
5230                                            '<td width="30px" valign="middle" align="center">&nbsp;'.
5231                                                                                        '</td>'.
5232                                            '<td valign="bottom">'.
5233                                            '<button type="button" onClick="javascript:add_user();"><img src="calendar/templates/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'].'/images/add.png" style="vertical-align: middle;" >&nbsp;'.lang("Add").'</button>'.
5234                                                                                        '&nbsp;&nbsp;<button type="button" onClick="javascript:remove_user();"><img src="calendar/templates/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'].'/images/rem.png" style="vertical-align: middle;" >&nbsp;'.lang("Remove").'</button>'.
5235                                            '</td>'.
5236                                                                                        '</tr>'.
5237                                                                                        '</table>'.
5238                                                                                        '<script type="text/javascript" src="phpgwapi/js/wz_dragdrop/wz_dragdrop.js"></script>'.
5239                                                                                        '<script type="text/javascript" src="phpgwapi/js/dJSWin/dJSWin.js"></script>'.         
5240                                                                                        "<script src='calendar/js/edit_exmail.js' type='text/javascript'></script>" .
5241                                                                                        $load_lang_vars.                                                                                                                                                       
5242                                                                                        "<script src='".$module_name."/js/connector.js' type='text/javascript'></script>".
5243                                                                                        "<script type='text/javascript'>var DEFAULT_URL = '".$module_name."/controller.php?action=';</script> ".                                                                                       
5244                                                                                        "<script type='text/javascript'>" .
5245                                                                                        "var timeout_get_available_users = setTimeout('get_available_users(\"".$module_name."\",\'".$user_context."\',\'".($recursive ? "" : "search")."\',\'".$GLOBALS['phpgw_info']['server']['auto_search']."\')',1000);".
5246                                                                                        "</script> "
5247                                                                );
5248                                                        }                                               
5249                                                }                                               
5250                                               
5251                                                $var['participants']['data'] .= '<br /><a id="a_ext_participants" title="'.lang("It types below the email addresses, if you want to invite other people out" .
5252                                                        " of this system").'" name="a_ext_participants" onClick="javascript:showExParticipants(this,\''.$module_name.'\')" href="#a_ext_participants"><b>'.lang("Inform").' '.lang("external participants").'</b>&nbsp;<img align="top" ' .
5253                                                        'src="calendar/templates/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'].'/images/sent.gif"></a><table id="tbl_ext_participants" width="100%" border="0" style="display:none">'.
5254                                                        '<tr>'.
5255                                                        '<td>'.
5256                                                        '&nbsp;&nbsp;<b>'.lang("external participants").'</b>&nbsp;<img align="top" src="calendar/templates/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'].'/images/sent.gif">' .
5257                                                        '&nbsp;&nbsp;<a title="'.lang("Close").'" name="b_ext_participants" onClick="javascript:hideExParticipants(this,\''.$module_name.'\')" href="#a_ext_participants">['.lang("Close").']</a>&nbsp;'.                                                                                                               
5258                                                        '</td>'.
5259                                                        '</tr>'.
5260                                                        '<tr>'.
5261                                                        '<td>'.
5262                                                        '&nbsp;&nbsp;>> '.lang("It types below the email addresses, if you want to invite other people out of this system").':'.
5263                                                        '&nbsp;&nbsp;<br><textarea name="ex_participants" id="ex_participants" cols="70" rows="2">'.$event['ex_participants'].'</textarea><br>&nbsp;&nbsp;'.
5264                                                        $footer_ext_participantes.
5265                                                        '</tr>'.                                                       
5266                                                        '</table>';
5267                                                break;
5268                                               
5269                                }
5270                                if((($event['id'] > 0) && isset($event['participants'][$event['owner']])) || !$event['id'])
5271                                {
5272                                        $checked = ' checked';
5273                                }
5274                                else
5275                                {
5276                                        $checked = '';
5277                                }
5278                                $var['owner'] = Array(
5279                                        'field' => $GLOBALS['phpgw']->common->grab_owner_name($event['owner']).' '.lang('Participates'),
5280                                        'data'  => '<input type="checkbox" id="usuarioParticipa" name="participants[]" value="'.$event['owner'].$event['participants'][$event['owner']].'"'.$checked.'>'
5281                                );
5282                        }
5283
5284// Reminder
5285                        // The user must use "Alarm Management" to change/modify an alarm
5286                        // so only display the email reminder fields if this is a new event
5287                        // i.e. not editing an existing event
5288
5289                        if ($event['id'] == 0) {
5290                                // get defaults
5291                                $days = $this->bo->prefs['calendar']['default_email_days'];
5292                                $hours = $this->bo->prefs['calendar']['default_email_hours'];
5293                                $min = $this->bo->prefs['calendar']['default_email_min'];
5294                                if (count($event['alarm']) > 1)
5295                                {
5296                                        // this should not happen because when creating a new event
5297                                        // only 1 alarm is displayed on the screen
5298                                        // if the user wants more than 1 alarm they should
5299                                        // use "Alarm Management"
5300                                        echo '<!-- how did this happen, too many alarms -->'."\n";
5301                                }
5302                                // if there was an error pick up what the user entered
5303                                if (@isset($event['alarm']))
5304                                {
5305                                        @reset($event['alarm']);
5306                                        // just get the first one see above!!!
5307                                        list($key,$alarm) = @each($event['alarm']);
5308
5309
5310                                        //if abaixo trata o caso de um evento repetido nao ter uma data final;
5311                                        //se isto acontecer, nao havera alarmes definidos;
5312                                        //$alarm['time'] recebe $start para $days, $hours e $min ficarem iguais a 0
5313                                        if(!$alarm['time']) {
5314                                                $alarm['time'] = $start;
5315                                        }
5316
5317                                        $diff  = $start - $alarm['time'];
5318                                        $days  = (int)($diff / (24*3600));
5319                                        $hours = (int)(($diff - ($days * 24 * 3600))/3600);
5320                                        $min   = (int)(($diff - ($days * 24 * 3600) - ($hours * 3600))/60);
5321
5322                                        if(@isset($_POST['edit_type']) && $_POST['edit_type'] == 'single') {
5323                                                $days = $diff;
5324                                        }
5325                                }
5326
5327                                // days
5328                                $dout = '<select name="cal[alarmdays]">'."\n";
5329                                for($i=0;$i<32;$i++)
5330                                {
5331                                        $dout .= '<option value="'.$i.'"'.($i==$days?' selected':'').'>'.$i.'</option>'."\n";
5332                                }
5333                                $dout .= '</select>'."\n".' '.lang('days').' ';
5334                                // hours
5335                                $hout = '<select name="cal[alarmhours]">'."\n";
5336                                for($i=0;$i<25;$i++)
5337                                {
5338                                        $hout .= '<option value="'.$i.'"'.($i==$hours?' selected':'').'>'.$i.'</option>'."\n";
5339                                }
5340                                $hout .= '</select>'."\n".' '.lang('hours').' ';
5341                                // minutes
5342                                $mout = '<select name="cal[alarmminutes]">'."\n";
5343                                for($i=0;$i<61;$i++)
5344                                {
5345                                        $mout .= '<option value="'.$i.'"'.($i==$min?' selected':'').'>'.$i.'</option>'."\n";
5346                                }
5347                                $mout .= '</select>'."\n".' '.lang('minutes').' ';
5348
5349                                $var['alarm'] = Array(
5350                                        'field' => lang('Alarm'),
5351                                        'data'  => $dout.$hout.$mout.lang('before the event')
5352                                );
5353
5354                        }
5355
5356// Repeat Type
5357                        $str = '';
5358                        foreach($this->bo->rpt_type as $type => $label)
5359                        {
5360                                $str .= '<option value="'.$type.'"'.($event['recur_type']==$type?' selected':'').'>'.lang($label).'</option>';
5361                        }
5362                        $var['recure_type'] = Array(
5363                                'field' => lang('Repeat Type'),
5364                                'data'  => '<select name="cal[recur_type]">'."\n".$str.'</select>'."\n"
5365                        );
5366
5367                        if($event['recur_enddate']['year'] != 0 && $event['recur_enddate']['month'] != 0 && $event['recur_enddate']['mday'] != 0)
5368                        {
5369                                $checked = ' checked';
5370                                $recur_end = $this->bo->maketime($event['recur_enddate']) - $GLOBALS['phpgw']->datetime->tz_offset;
5371                        }
5372                        else
5373                        {
5374                                $checked = '';
5375                                $recur_end = $this->bo->maketime($event['start']) + 86400 - $GLOBALS['phpgw']->datetime->tz_offset;
5376                        }
5377
5378                        $var['recure_enddate'] = Array(
5379                                'field' => lang('Repeat End Date'),
5380                                'data'  => '<input type="checkbox" name="cal[rpt_use_end]" value="y"'.$checked.'>'.lang('Use End Date').'  '.
5381/*
5382                                        $GLOBALS['phpgw']->common->dateformatorder(
5383                                                $sb->getYears('recur_enddate[year]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'Y')),
5384                                                $sb->getMonthText('recur_enddate[month]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'n')),
5385                                                $sb->getDays('recur_enddate[mday]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'d'))
5386                                        )
5387*/
5388                                        $jscal->input('recur_enddate[str]',$recur_end)
5389                        );
5390
5391                        $i = 0; $boxes = '';
5392                        foreach ($this->bo->rpt_day as $mask => $name)
5393                        {
5394                                $boxes .= '<input type="checkbox" name="cal[rpt_day][]" value="'.$mask.'"'.($event['recur_data'] & $mask ? ' checked' : '').'>&nbsp;'.lang($name)."\n";
5395                                if (++$i == 5) $boxes .= '<br>';
5396                        }
5397                        $var['recure_day'] = Array(
5398                                'field' => lang('Repeat Day').'<br>'.lang('(required for weekly recursivity)'),
5399                                'data'  => $boxes
5400                        );
5401
5402                        $var['recure_interval'] = Array(
5403                                'field' => lang('Interval'),
5404                                'data'  => '<input name="cal[recur_interval]" size="4" maxlength="4" value="'.$event['recur_interval'].'">'
5405                        );
5406//                      $this->output_template_array($p,'row','list',Array('data' => '<script src="simple_show_hide.js" type="text/javascript"></script>'));
5407
5408                        if (!isset($this->fields))
5409                        {
5410                                $this->custom_fields = CreateObject('calendar.bocustom_fields');
5411                                $this->fields = &$this->custom_fields->fields;
5412                                $this->stock_fields = &$this->custom_fields->stock_fields;
5413                        }
5414                        $this->output_template_array($p,'row','list',$var['access']);
5415                        unset($var['access']);
5416
5417                        $preserved = False;
5418                        foreach($this->fields as $field => $data)
5419                        {
5420                                if (!$data['disabled'])
5421                                {
5422                                        if (isset($var[$field]))
5423                                        {
5424                                                switch($field)
5425                                                {
5426                                                        case 'startdate':
5427                                                                $this->output_template_array($p,'row','list',$var['startdate']);
5428                                                                $this->output_template_array($p,'row','list',$var['starttime']);
5429                                                                break;
5430                                                        case 'enddate':
5431                                                                $this->output_template_array($p,'row','list',$var['enddate']);
5432                                                                $this->output_template_array($p,'row','list',$var['endtime']);
5433                                                                break;
5434                                                        case 'recure_type':
5435                                                                $p->set_var('tr_color',$this->theme['th_bg']);
5436                                                                $p->set_var('hr_text','<center id="rpt_label"><b>'.lang('Repeating Event Information').'</b></center>');
5437                                                                $p->parse('row','hr',True);
5438                                                                $this->output_template_array($p,'row','list',$var['recure_type']);
5439                                                                $this->output_template_array($p,'row','list',$var['recure_enddate']);
5440                                                                $this->output_template_array($p,'row','list',$var['recure_day']);
5441                                                                $this->output_template_array($p,'row','list',$var['recure_interval']);
5442                                                                break;
5443                                                        default:
5444                                                                $this->output_template_array($p,'row','list',$var[$field]);
5445                                                }
5446                                        }
5447                                        elseif (!isset($this->stock_fields[$field]))    // Custom field
5448                                        {
5449                                                $lang = lang($name = substr($field,1));
5450                                                $size = 'SIZE='.($data['shown'] ? $data['shown'] : ($data['length'] ? $data['length'] : 30)).
5451                                                        ' MAXLENGTH='.($data['length'] ? $data['length'] : 255);
5452                                                $v = array(
5453                                                        'field' => $lang == $name.'*' ? $name : $lang,
5454                                                        'data'  => '<input name="cal['.htmlspecialchars($field).']" '.$size.' value="'.$event['#'.$name].'">'
5455                                                );
5456                                                if ($data['title'])
5457                                                {
5458                                                        $v['tr_color'] = $this->theme['th_bg'];
5459                                                }
5460                                                if (!$data['length'] && $data['title'])
5461                                                {
5462                                                        $p->set_var('tr_color',$this->theme['th_bg']);
5463                                                        $p->set_var('hr_text','<center><b>'.$v['field'].'</b></center>');
5464                                                        $p->parse('row','hr',True);
5465                                                }
5466                                                else
5467                                                {
5468                                                        $this->output_template_array($p,'row','list',$v);
5469                                                }
5470                                        }
5471                                }
5472                                else    // preserve disabled fields
5473                                {
5474                                        switch ($field)
5475                                        {
5476                                                case 'owner':
5477                                                        $preserved[$field] = $event['id'] ? $event['participants'][$event['owner']] : 'A';
5478                                                        break;
5479                                                case 'recure_type':
5480                                                        foreach(array('recur_type','recur_enddate','recur_data','recur_interval') as $field)
5481                                                        {
5482                                                                $preserved[$field] = $event[$field];
5483                                                        }
5484                                                        break;
5485                                                case 'startdate':
5486                                                case 'enddate':
5487                                                        $field = substr($field,0,-4);
5488                                                default:
5489                                                        $preserved[$field] = $event[$field];
5490                                        }
5491                                }
5492                        }
5493                        unset($var);
5494                        if (is_array($preserved))
5495                        {
5496                                //echo "preserving<pre>"; print_r($preserved); echo "</pre>\n";
5497                                $p->set_var('common_hidden',$p->get_var('common_hidden').'<input type="hidden" name="preserved" value="'.htmlspecialchars(serialize($preserved)).'">'."\n");
5498                        }
5499                        $p->set_var('submit_button',lang('Save'));
5500
5501                        $delete_button = $cancel_button = '';
5502                        if ($event['id'] > 0)
5503                        {
5504                                $var = Array(
5505                                        'action_url_button'     => $this->page('delete','&cal_id='.$event['id']),
5506                                        'action_text_button'    => lang('Delete'),
5507                                        'action_confirm_button' => "onClick=\"return confirm('".lang('Are you sure want to delete this entry?\\nThis will delete this entry for all users.')."')\"",
5508                                        'action_extra_field'    => '',
5509                                        'button_id'     =>      'delete_button'
5510                                );
5511                                $p->set_var($var);
5512                                $delete_button = $p->fp('out','form_button');
5513                        }
5514                        $p->set_var('delete_button',$delete_button);
5515                        $p->set_var('alert_msg',lang('Required field (category) is empty'));
5516
5517                        if ($this->bo->return_to)
5518                        {
5519                                $var = Array(
5520                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to),
5521                                        'action_text_button'    => lang('Cancel'),
5522                                        'action_confirm_button' => '',
5523                                        'action_extra_field'    => '',
5524                                        'button_id'     =>      'cancel_button'
5525                                );
5526                                $p->set_var($var);
5527                                $cancel_button = $p->fp('out','form_button');
5528                        }
5529                        $p->set_var('cancel_button',$cancel_button);
5530                        $p->pparse('out','edit_entry');
5531                }
5532               
5533                // modify list of an event's external participants (i.e. non pgpgw users)
5534                //
5535                function modify_ext_partlist()
5536                {
5537                        $GLOBALS['phpgw_info']['flags']['noheader'] = True;
5538                        $GLOBALS['phpgw_info']['flags']['nonavbar'] = True;
5539                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
5540                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
5541
5542                        $total_contacts = 0;
5543                        $participant = array();
5544                        $control_data= array();
5545
5546                        $control_data['action'] = '';
5547                        $control_data['delete'] = array();
5548                        $control_data['part'] = array();
5549
5550                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
5551                        $p->set_file(
5552                                Array(
5553                                        'T_edit_partlist' => 'edit_partlist.tpl',
5554                                        'T_edit_partlist_blocks' => 'edit_partlist_blocks.tpl'
5555                                )
5556                        );
5557
5558                        $p->set_block('T_edit_partlist_blocks','B_alert_msg','V_alert_msg');
5559                        $p->set_block('T_edit_partlist_blocks','B_partlist','V_partlist');
5560                        $p->set_block('T_edit_partlist_blocks','B_participants_none','V_participants_none');
5561                        $p->set_block('T_edit_partlist_blocks','B_delete_btn','V_delete_btn');
5562
5563                        global $query_addr;
5564                        $sb = CreateObject('phpgwapi.sbox2');
5565                        $addy = $sb->getAddress('addr','',$query_addr);
5566
5567                        $add_ext  = $addy['doSearchFkt'];
5568                        $add_ext .= $addy['addr_title']!=lang('Address Book')?$addy['addr_title']:'';
5569                        $add_ext .= "&nbsp;".$addy['addr'].$addy['addr_nojs'];
5570
5571                        $p->set_var('text_add_name',$add_ext);
5572
5573                        if(isset($_GET['part']) && $_GET['part'])
5574                        {
5575                                $control_data['part'] = split(",", $_GET['part']);
5576                        }
5577                        else
5578                        {
5579                                $control_data['part'] = $_POST['participant'];
5580                                $control_data['action'] = $_POST['action'];
5581                                $control_data['delete'] = $_POST['delete'];
5582                        }
5583
5584                        for ($i=0; $i<count($control_data['part']); $i++)
5585                        {
5586                                $id = $control_data['part'][$i];
5587                                list($contact) = $this->read_contact($id);
5588
5589                                $participant[$id] = array();
5590                                $participant[$id]['name'] = $contact['n_given'].' '.$contact['n_family'];
5591                        }
5592
5593                        if ($control_data['action'] == lang('Delete selected contacts'))
5594                        {
5595                                for ($i=0; $i<count($control_data['delete']); $i++)
5596                                {
5597                                        $id = $control_data['delete'][$i];
5598                                        unset($participant[$id]);
5599                                }
5600                        }
5601
5602                        if ($control_data['action'] == lang('Add Contact'))
5603                        {
5604                                $id = $_POST['id_addr'];
5605                                if (isset($id) && (int)$id != 0)
5606                                {
5607                                        list($contact) = $this->read_contact($id);
5608                                        $participant[$id] = array();
5609                                        $participant[$id]['name'] = $contact['n_given'].' '.$contact['n_family'];
5610                                }
5611                        }
5612
5613                        // create list of currently selected contacts
5614                        //
5615                        while(list($id,$contact) = each($participant))
5616                        {
5617                                $p->set_var('hidden_delete_name','participant[]');
5618                                $p->set_var('hidden_delete_value',$id);
5619                                $p->set_var('ckbox_delete_name','delete[]');
5620                                $p->set_var('ckbox_delete_value',$id);
5621                                $p->set_var('ckbox_delete_participant',$contact['name']);
5622                                $p->parse('V_partlist','B_partlist',True);
5623                                $total_contacts++;
5624                        }
5625
5626                        if ($total_contacts == 0)
5627                        {
5628                                // no contacts have been selected
5629                                // => clear the delete form, remove delete button and show the none block
5630                                //
5631                                $p->set_var('V_partlist','');
5632                                $p->set_var('V_delete_btn','');
5633                                $p->set_var('text_none',lang('None'));
5634                                $p->parse('V_participants_none','B_participants_none');
5635                        }
5636                        else
5637                        {
5638                                // at least one contact has been selected
5639                                // => clear the none block, fill the delete form and add delete button
5640                                //
5641                                $p->set_var('V_participants_none','');
5642                                $p->set_var('btn_delete_name','action');
5643                                $p->set_var('btn_delete_value',lang('Delete selected contacts'));
5644                                $p->parse('V_delete_btn','B_delete_btn');
5645                        }
5646
5647                        $body_tags  = 'bgcolor="'.$GLOBALS['phpgw_info']['theme']['bg_color']
5648                                                        . '" alink="'.$GLOBALS['phpgw_info']['theme']['alink']
5649                                                        . '" link="'.$GLOBALS['phpgw_info']['theme']['link']
5650                                                        .'" vlink="'.$GLOBALS['phpgw_info']['theme']['vlink'].'"';
5651
5652                        $form_action = $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 'calendar.uicalendar.modify'));
5653
5654                        $charset = lang('charset');
5655                        $p->set_var('charset',$charset);
5656                        $p->set_var('page_title',$GLOBALS['phpgw_flags']['currentapp']
5657                                . ' - ' .lang('External Participants'));
5658                        $p->set_var('font_family',$GLOBALS['phpgw_info']['theme']['font']);
5659                        $p->set_var('body_tags',$body_tags);
5660                        $p->set_var('form_method','POST');
5661                        $p->set_var('form_action',$form_action);
5662                        $p->set_var('text_add_contact',lang('External Participants'));
5663                        $p->set_var('text_contacts_selected',lang('Selected contacts (%1)',$total_contacts));
5664                        $p->set_var('btn_add_name','action');
5665                        $p->set_var('btn_add_value',lang('Add Contact'));
5666                        $p->set_var('btn_done_name','done');
5667                        $p->set_var('btn_done_value',lang('Done'));
5668                        $p->set_var('btn_done_js','copyback()');
5669                        $p->set_var('form1_name','ext_form');
5670
5671                        $p->pfp('out','T_edit_partlist');
5672                }
5673
5674                function read_contact($id)
5675                {
5676                        $query_fields = Array(
5677                                'n_given' => 'n_given',
5678                                'n_family' => 'n_family',
5679                                'email' => 'email',
5680                                'email_home' => 'email_home'
5681                        );
5682
5683                        /*
5684                        if ($this->rights & PHPGW_ACL_READ)
5685                        {
5686                                return $this->contacts->read_single_entry($id,$fields);
5687                        }
5688                        else
5689                        {
5690                                $rtrn = array(0 => array('No access' => 'No access'));
5691                                return $rtrn;
5692                        }
5693                        */
5694
5695                        $contacts = CreateObject('phpgwapi.contacts', False);
5696                        return $contacts->read_single_entry($id,$query_fields);
5697                }
5698
5699                function build_part_list(&$users,$accounts,$owner)
5700                {
5701                        if(!is_array($accounts))
5702                        {
5703                                return;
5704                        }
5705                        foreach($accounts as $id)
5706                        {
5707                                $id = (int)$id;
5708                                if($id == $owner)
5709                                {
5710                                        continue;
5711                                }
5712                                elseif(!isset($users[$id]))
5713                                {
5714                                        if($GLOBALS['phpgw']->accounts->exists($id) == True)
5715                                        {
5716                                                $users[$id] = Array(
5717                                                        'name'  => $GLOBALS['phpgw']->common->grab_owner_name($id),
5718                                                        'type'  => $GLOBALS['phpgw']->accounts->get_type($id)
5719                                                );
5720                                        }
5721                                        if($GLOBALS['phpgw']->accounts->get_type($id) == 'g')
5722                                        {
5723                                                //$this->build_part_list($users,$GLOBALS['phpgw']->acl->get_ids_for_location($id,1,'phpgw_group'),$owner);
5724                                        }
5725                                }
5726                        }
5727                        if (!function_exists('strcmp_name'))
5728                        {
5729                                function strcmp_name($arr1,$arr2)
5730                                {
5731                                        if ($diff = strcmp($arr1['type'],$arr2['type']))
5732                                        {
5733                                                return $diff;   // groups before users
5734                                        }
5735                                        return strnatcasecmp($arr1['name'],$arr2['name']);
5736                                }
5737                        }
5738                        uasort($users,'strcmp_name');
5739                }
5740
5741                function set_week_array($startdate,$cellcolor,$weekly)
5742                {
5743                        $data = date("m");
5744                        for ($j=0,$datetime=$startdate;$j<7;$j++,$datetime += 86400)
5745                        {
5746                                $date = date('Ymd',$datetime + (60 * 60 * 2)); // +2h to be save when switching to and from dst, $datetime is alreay + TZ-Offset
5747                                print_debug('set_week_array : Date ',$date);
5748
5749                                if($events = $this->bo->cached_events[$date])
5750                                {
5751                                        print_debug('Date',$date);
5752                                        print_debug('Appointments Found',count($events));
5753
5754                                        if (!$this->bo->prefs['calendar']['show_rejected'])
5755                                        {
5756                                                $appts = False;
5757                                                foreach($events as $event)      // check for a not-rejected event
5758                                                {
5759                                                        if (!$this->bo->rejected_no_show($event))
5760                                                        {
5761                                                                $appts = True;
5762                                                                break;
5763                                                        }
5764                                                }
5765                                        }
5766                                        else
5767                                        {
5768                                                $appts = True;
5769                                        }
5770                                }
5771                                else
5772                                {
5773                                        $appts = False;
5774                                }
5775
5776                                $holidays = $this->bo->cached_holidays[$date];
5777                                if($weekly)
5778                                {
5779                                        $cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
5780                                }
5781
5782                                $day_image = '';
5783                                if($holidays)
5784                                {
5785                                        $extra = ' bgcolor="'.$this->bo->holiday_color.'"';
5786                                        $class = ($appts?'b':'').'minicalhol';
5787                                        if ($date == $this->bo->today)
5788                                        {
5789                                                $day_image = ' background="'.$GLOBALS['phpgw']->common->image('calendar','mini_day_block').'"';
5790                                        }
5791                                }
5792                                elseif ($date != $this->bo->today)
5793                                {
5794                                        $extra = ' bgcolor="'.$cellcolor.'"';
5795                                        $class = ($appts?'b':'').'minicalendar';
5796                                }
5797                                else
5798                                {
5799                                        $extra = ' bgcolor="'.$GLOBALS['phpgw_info']['theme']['cal_today'].'"';
5800                                        $class = ($appts?'b':'').'minicalendar';
5801                                        $day_image = ' background="'.$GLOBALS['phpgw']->common->image('calendar','mini_day_block').'"';
5802                                }
5803
5804                                if($this->bo->printer_friendly && @$this->bo->prefs['calendar']['print_black_white'])
5805                                {
5806                                        $extra = '';
5807                                }
5808
5809                                if(!$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_ADD))
5810                                {
5811                                        $new_event = True;
5812                                }
5813                                else
5814                                {
5815                                        $new_event = False;
5816                                }
5817                                $holiday_name = Array();
5818                                if($holidays)
5819                                {
5820                                        for($k=0;$k<count($holidays);$k++)
5821                                        {
5822                                                $holiday_name[] = $holidays[$k]['name'];
5823                                        }
5824                                }
5825                                $week = '';
5826                                if (!$j || (!$weekly && $j && substr($date,6,2) == '01'))
5827                                {
5828                                        $week = lang('week').' '.(int)((date('z',($startdate+(24*3600*4)))+7)/7);
5829                                }
5830                                $daily[$date] = Array(
5831                                        'extra'         => $extra,
5832                                        'new_event'     => $new_event,
5833                                        'holidays'      => $holiday_name,
5834                                        'appts'         => $appts,
5835                                        'week'          => $week,
5836                                        'day_image'     => $day_image,
5837                                        'class'         => $class
5838                                );
5839                        }
5840
5841                        if($this->debug)
5842                        {
5843                                _debug_array($daily);
5844                        }
5845
5846                        return $daily;
5847                }
5848               
5849                function get_organizations($context, $selected='', $recursive = false)
5850                {
5851                        $s = CreateObject('phpgwapi.sector_search_ldap');
5852                                               
5853                        return ($recursive ?
5854                                $s->get_organizations($context, $selected, false ,false) :
5855                                $s->get_sectors($selected, false, false));
5856                }               
5857        }
5858?>
Note: See TracBrowser for help on using the repository browser.