source: branches/2.2.0.1/calendar/inc/class.uicalendar.inc.php @ 3997

Revision 3997, 195.9 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1595 - Relatorio mensal da agenda adiciona um dia a mais na listagem do que o requisitado

  • 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'],$_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_params['class']=='bminicalhol' || $day_params['class']=='minicalhol'?' title="' . $day_params['holidays'][0] . '" ' :'') . ' >'.$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                        $this->bo->read_holidays($params['year']);
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 = '';
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_prev = $this->mini_calendar(
669                                        Array(
670                                                'day'   => $this->bo->day,
671                                                'month' => $this->bo->month - 1,
672                                                'year'  => $this->bo->year,
673                                                'link'  => 'day',
674                                                'butons'        => 'left',
675                                                'outside_month' => False
676                                        )
677                                );
678                                $minical_next = $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'        => 'right',
685                                                'outside_month' => False
686                                        )
687                                );
688                                $minical_this = $this->mini_calendar(
689                                        Array(
690                                                'day'   => $this->bo->day,
691                                                'month' => $this->bo->month,
692                                                'year'  => $this->bo->year,
693                                                'link'  => 'day',
694                                                'butons'        => 'none',
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="'.''.'"'.(!$_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 start day'),
3197                                'num_dias_label'        => lang('quantity of days'),
3198                                'tip'                   => lang('empty prints from the start day chosen 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                        {
3472                            $textdesc = '';
3473                        }
3474                        else
3475                        {
3476                            $textdesc = (!$is_private && $event['description'] ? $this->bo->get_short_field($event,$is_private,'description'):'');
3477                            $textdesc=nl2br($textdesc);
3478                        }
3479
3480                        // added $textlocation but this must be activated in the actual pict_link.tpl file of the used template set
3481                        $textlocation= $event['location']?"<br/><b>Local:</b> ".$this->bo->get_short_field($event,$is_private,'location'):'';
3482
3483                        if ($viewable)
3484                        {
3485                                $date = sprintf('%04d%02d%02d',$year,$month,$day);
3486                                $this->link_tpl->set_var('link_link',$this->page('view','&cal_id='.$event['id'].'&date='.$date));
3487                                $this->link_tpl->set_var('lang_view',lang('View this entry'));
3488                                $this->link_tpl->set_var('desc', $textdesc);
3489                                $this->link_tpl->set_var('location', $textlocation);
3490                                $this->link_tpl->parse('picture','link_open',True);
3491                        }
3492                        if (!$is_private)
3493                        {
3494                                if($event['priority'] == 3)
3495                                {
3496                                        $picture[] = Array(
3497                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','high'),
3498                                                'width' => 16,
3499                                                'height'=> 16,
3500                                                'title' => lang('high priority')
3501                                        );
3502                                }
3503                                if($event['recur_type'] == MCAL_RECUR_NONE)
3504                                {
3505                                        $picture[] = Array(
3506                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','circle'),
3507                                                'width' => 9,
3508                                                'height'=> 9,
3509                                                'title' => lang('single event')
3510                                        );
3511                                }
3512                                else
3513                                {
3514                                        $picture[] = Array(
3515                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','recur'),
3516                                                'width' => 12,
3517                                                'height'=> 12,
3518                                                'title' => lang('recurring event')
3519                                        );
3520                                }
3521                        }
3522                        $participants = $this->planner_participants($event['participants']);
3523                        if(count($event['participants']) > 1)
3524                        {
3525                                $picture[] = Array(
3526                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','multi_3'),
3527                                        'width' => 14,
3528                                        'height'=> 14,
3529                                        'title' => $participants
3530                                );
3531                        }
3532                        else
3533                        {
3534                                $picture[] = Array(
3535                                        'pict'  =>  $GLOBALS['phpgw']->common->image('calendar','single'),
3536                                        'width' => 14,
3537                                        'height'=> 14,
3538                                        'title' => $participants
3539                                );
3540                        }
3541                        if($event['public'] == 0)
3542                        {
3543                                $picture[] = Array(
3544                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','private'),
3545                                        'width' => 13,
3546                                        'height'=> 13,
3547                                        'title' => lang('private')
3548                                );
3549                        }
3550                        if(@isset($event['alarm']) && count($event['alarm']) >= 1 && !$is_private)
3551                        {
3552                                // if the alarm is to go off the day before the event
3553                                // the icon does not show up because of 'alarm_today'
3554                                // - TOM
3555                                if($this->bo->alarm_today($event,$rawdate_offset,$starttime))
3556                                {
3557                                        $picture[] = Array(
3558                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','alarm'),
3559                                                'width' => 13,
3560                                                'height'=> 13,
3561                                                'title' => lang('alarm')
3562                                        );
3563                                }
3564                        }
3565
3566                        if($event['attachment'] != '')
3567                                {
3568                                        $picture[] = Array(
3569                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','clip'),
3570                                                'width' => 9,
3571                                                'height'=> 9,
3572                                                'title' => lang('Notification with attachments sent.')
3573                                        );
3574                                }
3575
3576                        $description = $this->bo->get_short_field($event,$is_private,'description');
3577                        for($i=0;$i<count($picture);$i++)
3578                        {
3579                                $var = Array(
3580                                        'pic_image' => $picture[$i]['pict'],
3581                                        'width'     => $picture[$i]['width'],
3582                                        'height'    => $picture[$i]['height'],
3583                                        'title'     => $picture[$i]['title']
3584                                );
3585                                $this->output_template_array($this->link_tpl,'picture','pict',$var);
3586                        }
3587                        if ($texttitle)
3588                        {
3589                                $var = Array(
3590                        //              'text' => $text,
3591                                        'time'=> $texttime,
3592                                        'title'=> $texttitle,
3593                                        'users_status'=>$textstatus,
3594                                        'desc'=> $textdesc,
3595                                        'location'=> $textlocation
3596                                );
3597                                $this->output_template_array($this->link_tpl,'picture','link_text',$var);
3598                        }
3599
3600                        if ($viewable)
3601                        {
3602                                $this->link_tpl->parse('picture','link_close',True);
3603                        }
3604                        $str = $this->link_tpl->fp('out','link_pict');
3605                        $this->link_tpl->set_var('picture','');
3606                        $this->link_tpl->set_var('out','');
3607//                      unset($p);
3608                        return $str;
3609                }
3610
3611/*****************************************************************************************/
3612/*Funcao foi duplicada e alterada para tratar os eventos de agendamento (exibicao do mes) para impressao;
3613utiliza o template event_link.tpl*/
3614
3615                function link_to_month_entry($event,$month,$day,$year)
3616                {
3617                        $str = '';
3618                        $is_private = !$event['public'] && !$this->bo->check_perms(PHPGW_ACL_READ,$event);
3619                        $viewable = !$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_READ,$event);
3620
3621                        $starttime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
3622                        $endtime = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
3623                        $rawdate = mktime(0,0,0,$month,$day,$year);
3624                        $rawdate_offset = $rawdate - $GLOBALS['phpgw']->datetime->tz_offset;
3625                        $nextday = mktime(0,0,0,$month,$day + 1,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
3626                        if ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') && $starttime == $endtime)
3627                        {
3628                                $time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3629                        }
3630                        elseif ($starttime <= $rawdate_offset && $endtime >= $nextday - 60)
3631                        {
3632                                $time = '[ '.lang('All Day').' ]';
3633                        }
3634                        elseif ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') || $starttime != $endtime)
3635                        {
3636                                if($starttime < $rawdate_offset && $event['recur_type'] == MCAL_RECUR_NONE)
3637                                {
3638                                        $start_time = $GLOBALS['phpgw']->common->show_date($rawdate_offset,$this->bo->users_timeformat);
3639                                }
3640                                else
3641                                {
3642                                        $start_time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3643                                }
3644
3645                                if($endtime >= ($rawdate_offset + 86400))
3646                                {
3647                                        $end_time = $GLOBALS['phpgw']->common->show_date(mktime(23,59,59,$month,$day,$year) - $GLOBALS['phpgw']->datetime->tz_offset,$this->bo->users_timeformat);
3648                                }
3649                                else
3650                                {
3651                                        $end_time = $GLOBALS['phpgw']->common->show_date($endtime,$this->bo->users_timeformat);
3652                                }
3653                                $time = $start_time.' - '.$end_time;
3654                        }
3655                        else
3656                        {
3657                                $time = '';
3658                        }
3659                       
3660                        $textTitlePrint = $textTimePrint = $textDescPrint = $textLocationPrint = $textObservationsPrint = $textstatus = '';
3661
3662                        if(!$is_private)
3663                        {
3664                                // split text for better display by templates, also see $texttime $texttitle $textdesc $textlocation   
3665                                $textstatus=$this->bo->display_status($event['users_status']);
3666                               
3667                        }
3668
3669                        $account_name = $_POST['user'] ?
3670                                                        $_POST['user'] :
3671                                                        ($_GET['account_name'] ?
3672                                                         $_GET['account_name'] : '');
3673                       
3674                        $accounts = CreateObject('phpgwapi.accounts');
3675                        $accountId = $accounts->name2id($account_name);
3676
3677                        $prefs = CreateObject('phpgwapi.preferences', $accountId);
3678                        $account_prefs = $prefs->read();
3679
3680
3681                        $textTimePrint = $time;
3682                        $textTitlePrint = $is_private ? lang('Private event. You are not allowed to print it.') : ( $event['type'] == 'H' ? 'Apontamento de horas' : $this->bo->get_short_field($event,$is_private,'title' ) );
3683
3684                        $fieldsToPrint = $account_prefs['calendar']['fields_to_print'];
3685                        if($fieldsToPrint == "0")
3686                        {
3687                            $textDescPrint = '';
3688                        }
3689                        elseif($fieldsToPrint == "1")
3690                        {
3691                            $textDescPrint = (!$is_private && $event['description'] ? $this->bo->get_short_field($event,$is_private,'description'):'');
3692                        }
3693                        else
3694                        {
3695                            $textDescPrint = (!$is_private && $event['description'] ? $this->bo->get_short_field($event,$is_private,'description'):'');
3696                            $textObservationsPrint = $event['observations']?"<br /><b>Observações:</b> ".$this->bo->get_short_field($event,$is_private,'observations'):'';
3697                        }
3698
3699                        // added $textlocation but this must be activated in the actual pict_link.tpl file of the used template set
3700                        $textLocationPrint = $event['location']?"<br /><b>Local:</b> ".$this->bo->get_short_field($event,$is_private,'location'):'';
3701
3702                        if ($viewable)
3703                        {
3704                                $date = sprintf('%04d%02d%02d',$year,$month,$day);
3705                                $this->event_tpl->set_var('link_link',$this->page('view','&cal_id='.$event['id'].'&date='.$date));
3706                                $this->event_tpl->set_var('lang_view',lang('View this entry'));
3707                                $this->event_tpl->set_var('desc', $textDescPrint);
3708                                $this->event_tpl->set_var('location', $textLocationPrint);
3709                                $this->event_tpl->set_var('observations', $textObservationsPrint);
3710                                $this->event_tpl->parse('picture','link_event_open',True);
3711                        }
3712
3713                        if (!$is_private)
3714                        {
3715                                if($event['priority'] == 3)
3716                                {
3717                                        $picture[] = Array(
3718                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','high'),
3719                                                'width' => 16,
3720                                                'height'=> 16,
3721                                                'title' => lang('high priority')
3722                                        );
3723                                }
3724                                if($event['recur_type'] == MCAL_RECUR_NONE)
3725                                {
3726                                        $picture[] = Array(
3727                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','circle'),
3728                                                'width' => 9,
3729                                                'height'=> 9,
3730                                                'title' => lang('single event')
3731                                        );
3732                                }
3733                                else
3734                                {
3735                                        $picture[] = Array(
3736                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','recur'),
3737                                                'width' => 12,
3738                                                'height'=> 12,
3739                                                'title' => lang('recurring event')
3740                                        );
3741                                }
3742                        }
3743
3744                        $participants = $this->planner_participants($event['participants']);
3745                        if(count($event['participants']) > 1)
3746                        {
3747                                $picture[] = Array(
3748                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','multi_3'),
3749                                        'width' => 14,
3750                                        'height'=> 14,
3751                                        'title' => $participants
3752                                );
3753                        }
3754                        else
3755                        {
3756                                $picture[] = Array(
3757                                        'pict'  =>  $GLOBALS['phpgw']->common->image('calendar','single'),
3758                                        'width' => 14,
3759                                        'height'=> 14,
3760                                        'title' => $participants
3761                                );
3762                        }
3763                        if($event['public'] == 0)
3764                        {
3765                                $picture[] = Array(
3766                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','private'),
3767                                        'width' => 13,
3768                                        'height'=> 13,
3769                                        'title' => lang('private')
3770                                );
3771                        }
3772
3773                        if(@isset($event['alarm']) && count($event['alarm']) >= 1 && !$is_private)
3774                        {
3775                                // if the alarm is to go off the day before the event
3776                                // the icon does not show up because of 'alarm_today'
3777                                // - TOM
3778                                if($this->bo->alarm_today($event,$rawdate_offset,$starttime))
3779                                {
3780                                        $picture[] = Array(
3781                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','alarm'),
3782                                                'width' => 13,
3783                                                'height'=> 13,
3784                                                'title' => lang('alarm')
3785                                        );
3786                                }
3787                        }
3788
3789                        $description = $this->bo->get_short_field($event,$is_private,'description');
3790                        for($i=0;$i<count($picture);$i++)
3791                        {
3792                                $var = Array(
3793                                        'pic_image' => $picture[$i]['pict'],
3794                                        'width'     => $picture[$i]['width'],
3795                                        'height'    => $picture[$i]['height'],
3796                                        'title'     => $picture[$i]['title']
3797                                );
3798                                $this->output_template_array($this->event_tpl,'picture','event_pict',$var);
3799                        }
3800
3801                        if ($textTitlePrint)
3802                        {
3803                                $var = Array(
3804                        //              'text' => $text,
3805                                        'time'=> $textTimePrint,
3806                                        'title'=> $textTitlePrint,
3807                                        'users_status'=>$textstatus,
3808                                        'desc'=> $textDescPrint,
3809                                        'location'=> $textLocationPrint,
3810                                        'observations'=> $textObservationsPrint
3811                                );
3812                                $this->output_template_array($this->event_tpl,'picture','link_event_text',$var);
3813                        }
3814
3815                        if ($viewable)
3816                        {
3817                                $this->event_tpl->parse('picture','link_event_close',True);
3818                        }
3819                        $str = $this->event_tpl->fp('out','link_event_pict');
3820                        $this->event_tpl->set_var('picture','');
3821                        $this->event_tpl->set_var('out','');
3822//                      unset($p);
3823                        return $str;
3824                }
3825
3826/*****************************************************************************************/
3827                function normDec($num)
3828                {
3829                        if ($num > 9)
3830                                return $num;
3831                        else
3832                                return "0".$num;
3833                }
3834                function overlap($params)
3835                {
3836                        if(!is_array($params))
3837                        {
3838                        }
3839                        else
3840                        {
3841                                $overlapping_events = $params['o_events'];
3842                                $event = $params['this_event'];
3843                        }
3844
3845                        $month = $event['start']['month'];
3846                        $mday = $event['start']['mday'];
3847                        $year = $event['start']['year'];
3848
3849                        $start = mktime($event['start']['hour'],$event['start']['min'],$event['start']['sec'],$month,$mday,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
3850                        $end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
3851
3852                        $overlap = '';
3853                        for($i=0;$i<count($overlapping_events);$i++)
3854                        {
3855                                $overlapped_event = $this->bo->read_entry($overlapping_events[$i],True);
3856                                foreach($overlapped_event['participants'] as $id => $status)
3857                                {
3858                                        $conflict = isset($event['participants'][$id]);
3859                                        $overlap .= '<li>'.($conflict?'<b>':'').
3860                                                $GLOBALS['phpgw']->common->grab_owner_name($id).
3861                                                ($conflict?'</b> - '.lang('Scheduling conflict'):'')."</li>";
3862                                }
3863                         if ($this->bo->prefs['calendar']['hide_event_conflict'])
3864                                 $overlap .= '<ul><font size="1"><span>'.
3865                                         $this->normDec($overlapped_event['start']['hour']).":".
3866                                         $this->normDec($overlapped_event['start']['min'])."-".
3867                                         $this->normDec($overlapped_event['end']['hour']).":".
3868                                         $this->normDec($overlapped_event['end']['min']).
3869                                         '<br><b>'.lang('title').": ".lang("Hidden").
3870                                         '</b><br>'.lang('description').": ".lang("Hidden").'<br></span></ul><br>';
3871                         else
3872                                 $overlap .= '<ul>'.$this->link_to_entry($overlapped_event,$month,$mday,$year)."</ul><br>";     
3873                        }
3874
3875                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
3876                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
3877                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
3878                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
3879                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Scheduling Conflict');
3880                        $GLOBALS['phpgw']->common->phpgw_header();
3881
3882                        $p = $GLOBALS['phpgw']->template;
3883                        $p->set_file(
3884                                Array(
3885                                        'overlap'       => 'overlap.tpl',
3886                                        'form_button'   => 'form_button_script.tpl'
3887                                )
3888                        );
3889
3890                        $var = Array(
3891                                'color'         => $this->theme['bg_text'],
3892                                'overlap_title' => lang('Scheduling Conflict'),
3893                                '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)),
3894                                'overlap_list'  => $overlap
3895                        );
3896                        $p->set_var($var);
3897
3898                        $date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->mday);
3899                        $var = Array(
3900                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.bocalendar.update','readsess'=>1)),
3901                                'action_text_button'    => lang('Ignore Conflict'),
3902                                'action_confirm_button' => '',
3903                                'action_extra_field'    => '',
3904                                'button_id'             => 'ignore_button'
3905                        );
3906                        $this->output_template_array($p,'resubmit_button','form_button',$var);
3907
3908                        $var = Array(
3909                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.edit','readsess'=>1,'date'=>$date)),
3910                                'action_text_button'    => lang('Re-Edit Event'),
3911                                'action_confirm_button' => '',
3912                                'action_extra_field'    => '',
3913                                'button_id'             => 'redit_button'
3914                        );
3915                        $this->output_template_array($p,'reedit_button','form_button',$var);
3916                        $p->pparse('out','overlap');
3917                }
3918
3919                function planner_participants($parts)
3920                {
3921                        static $id2lid;
3922
3923                        $names = '';
3924                        while (list($id,$status) = each($parts))
3925                        {
3926                                $status = substr($this->bo->get_long_status($status),0,1);
3927
3928                                if (!isset($id2lid[$id]))
3929                                {
3930                                        $id2lid[$id] = $GLOBALS['phpgw']->common->grab_owner_name($id);
3931                                }
3932                                if (strlen($names))
3933                                {
3934                                        $names .= ",\n";
3935                                }
3936                                $names .= $id2lid[$id]." ($status)";
3937                        }
3938                        if($this->debug)
3939                        {
3940                                echo '<!-- Inside participants() : '.$names.' -->'."\n";
3941                        }
3942                        return $names;
3943                }
3944
3945                function planner_category($ids)
3946                {
3947                        static $cats;
3948                        if(!is_array($ids))
3949                        {
3950                                if (strpos($ids,','))
3951                                {
3952                                        $id_array = explode(',',$ids);
3953                                }
3954                                else
3955                                {
3956                                        $id_array[0] = $ids;
3957                                }
3958                        }
3959                        @reset($id_array);
3960                        $ret_val = Array();
3961                        while(list($index,$id) = each($id_array))
3962                        {
3963                                if (!isset($cats[$id]))
3964                                {
3965                                        $cat_arr = $this->cat->return_single( $id );
3966                                        $cats[$id] = $cat_arr[0];
3967                                        $cats[$id]['color'] = strstr($cats[$id]['description'],'#');
3968                                }
3969                                $ret_val[] = $cats[$id];
3970                        }
3971                        return $ret_val;
3972                }
3973
3974                function week_header($month,$year,$display_name = False)
3975                {
3976                        $this->weekstarttime = $GLOBALS['phpgw']->datetime->get_weekday_start($year,$month,1);
3977
3978                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
3979                        $p->set_unknowns('remove');
3980                        $p->set_file(
3981                                Array (
3982                                        'month_header' => 'month_header.tpl'
3983                                )
3984                        );
3985                        $p->set_block('month_header','monthly_header','monthly_header');
3986                        $p->set_block('month_header','column_title','column_title');
3987
3988                        $var = Array(
3989                                'bgcolor'       => $this->theme['th_bg'],
3990                                'font_color'    => $this->theme['th_text']
3991                        );
3992                        if($this->bo->printer_friendly && @$this->bo->prefs['calendar']['print_black_white'])
3993                        {
3994                                $var = Array(
3995                                        'bgcolor'       => '',
3996                                        'font_color'    => ''
3997                                );
3998                        }
3999                        $p->set_var($var);
4000
4001                        $p->set_var('col_width','14');
4002                        if($display_name == True)
4003                        {
4004                                $p->set_var('col_title',lang('name'));
4005                                $p->parse('column_header','column_title',True);
4006                                $p->set_var('col_width','12');
4007                        }
4008
4009                        for($i=0;$i<7;$i++)
4010                        {
4011                                $p->set_var('col_title',lang($GLOBALS['phpgw']->datetime->days[$i]));
4012                                $p->parse('column_header','column_title',True);
4013                        }
4014                        return $p->fp('out','monthly_header');
4015                }
4016
4017                function display_week($startdate,$weekly,$cellcolor,$display_name = False,$owner=0,$monthstart=0,$monthend=0)
4018                {
4019                        if($owner == 0)
4020                        {
4021                                $owner = $GLOBALS['phpgw_info']['user']['account_id'];
4022                        }
4023
4024                        $temp_owner = $this->bo->owner;
4025
4026                        $str = '';
4027                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4028                        $p->set_unknowns('keep');
4029
4030                        $p->set_file(
4031                                Array(
4032                                        'month_header'  => 'month_header.tpl',
4033                                        'month_day'     => 'month_day.tpl'
4034                                )
4035                        );
4036                        $p->set_block('month_header','monthly_header','monthly_header');
4037                        $p->set_block('month_header','month_column','month_column');
4038                        $p->set_block('month_day','month_daily','month_daily');
4039                        $p->set_block('month_day','day_event','day_event');
4040                        $p->set_block('month_day','event','event');
4041
4042                        $p->set_var('extra','');
4043                        $p->set_var('col_width','14');
4044                        if($display_name)
4045                        {
4046                                $p->set_var('column_data',$GLOBALS['phpgw']->common->grab_owner_name($owner));
4047                                $p->parse('column_header','month_column',True);
4048                                $p->set_var('col_width','12');
4049                        }
4050                        $today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
4051                        $daily = $this->set_week_array($startdate - $GLOBALS['phpgw']->datetime->tz_offset,$cellcolor,$weekly);
4052                        foreach($daily as $date => $day_params)
4053                        {
4054                                $year  = (int)substr($date,0,4);
4055                                $month = (int)substr($date,4,2);
4056                                $day   = (int)substr($date,6,2);
4057                                $var   = Array(
4058                                        'column_data' => '',
4059                                        'extra' => ''
4060                                );
4061                                $p->set_var($var);
4062                                if ($weekly || ($date >= $monthstart && $date <= $monthend))
4063                                {
4064                                        if ($day_params['new_event'])
4065                                        {
4066                                                $new_event_link = ' <a href="'.$this->page('add','&date='.$date).'">'
4067                                                        . '<img src="'.$GLOBALS['phpgw']->common->image('calendar','new3').'" width="10" height="10" title="'.lang('New Entry').'" border="0" align="center">'
4068                                                        . '</a>';
4069                                                $day_number = '<a href="'.$this->page('day','&date='.$date).'">'.$day.'</a>';
4070                                        }
4071                                        else
4072                                        {
4073                                                $new_event_link = '';
4074                                                $day_number = $day;
4075                                        }
4076
4077                                        $var = Array(
4078                                                'extra'         => $day_params['extra'],
4079                                                'new_event_link'=> $new_event_link,
4080                                                'day_number'    => $day_number
4081                                        );
4082                                        if($day_params['week'])
4083                                        {
4084
4085//NDEE: style! m_w_table in month_day.tpl
4086// week-hilite
4087                                                //$var['new_event_link'] .= '<font size="-2"> &nbsp; '.
4088                                                $var['new_event_link'] .= ' &nbsp; '.
4089                                                        (!$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>');
4090                                        }
4091
4092                                        $p->set_var($var);
4093
4094                                        if(@$day_params['holidays'])
4095                                        {
4096                                                foreach($day_params['holidays'] as $key => $value)
4097                                                {
4098                                                        $var = Array(
4099                                                                'day_events' => '<font face="'.$this->theme['font'].'" size="-1">'.$value.'</font>'.$GLOBALS['phpgw']->browser->br
4100                                                        );
4101                                                        $this->output_template_array($p,'daily_events','event',$var);
4102                                                }
4103                                        }
4104
4105                                        if($day_params['appts'])
4106                                        {
4107                                                $var = Array(
4108                                                        'week_day_font_size'    => '2',
4109                                                        'events'                => ''
4110                                                );
4111                                                $p->set_var($var);
4112                                                $events = $this->bo->cached_events[$date];
4113                                                foreach($events as $event)
4114                                                {
4115                                                        if ($this->bo->rejected_no_show($event))
4116                                                        {
4117                                                                continue;       // user does not want to see rejected events
4118                                                        }
4119                                                        $p->set_var('day_events',$this->link_to_entry($event,$month,$day,$year));
4120                                                        $p->parse('events','event',True);
4121                                                        $p->set_var('day_events','');
4122                                                }
4123                                        }
4124                                        $p->parse('daily_events','day_event',True);
4125                                        $p->parse('column_data','month_daily',True);
4126                                        $p->set_var('daily_events','');
4127                                        $p->set_var('events','');
4128/*                                      if($day_params['week'])
4129                                        {
4130                                                $var = Array(
4131                                                        'week_day_font_size'    => '-2',
4132                                                        'events'                => (!$this->bo->printer_friendly?'<a href="'.$this->page('week','&date='.$date).'">' .$day_params['week'].'</a>':$day_params['week'])
4133                                                );
4134                                                $this->output_template_array($p,'column_data','day_event',$var);
4135                                                $p->set_var('events','');
4136                                        } */
4137                                }
4138                                $p->parse('column_header','month_column',True);
4139                                $p->set_var('column_data','');
4140                        }
4141                        $this->bo->owner = $temp_owner;
4142                        return $p->fp('out','monthly_header');
4143                }
4144
4145/***************************************************************************************/
4146/*As funcoes abaixo
4147        month_week_header()
4148        month_display_week()
4149        display_month_print()
4150        month_day_of_week() - esta foi criada mas parte do codigo e de outra funcao da API (day_of_week());
4151
4152  foram duplicadas e modificadas para atender aas modificacoes do layout de impressao mensal da agenda de eventos;
4153  TODO: otimizar o codigo
4154
4155  Rommel Cysne
4156*/
4157
4158                function month_week_header($month,$year,$display_name = False)
4159                {
4160                        $this->weekstarttime = $GLOBALS['phpgw']->datetime->get_weekday_start($year,$month,1);
4161                        $p->set_unknowns('remove');
4162                }
4163
4164
4165                function month_day_of_week($year,$month,$day)
4166                {
4167                        $dia = Array(
4168                                0 => 'Domingo',
4169                                1 => 'Segunda',
4170                                2 => 'Ter&ccedil;a',
4171                                3 => 'Quarta',
4172                                4 => 'Quinta',
4173                                5 => 'Sexta',
4174                                6 => 'S&aacute;bado'
4175                        );
4176
4177                        if($month > 2)
4178                        {
4179                                $month -= 2;
4180                        }
4181                                else
4182                        {
4183                                $month += 10;
4184                                $year--;
4185                        }
4186                        $day = (floor((13 * $month - 1) / 5) + $day + ($year % 100) + floor(($year % 100) / 4) + floor(($year / 100) / 4) - 2 * floor($year / 100) + 77);
4187
4188                        $month_day = ($day - 7 * floor($day / 7)); //retorna o numero do dia da semana (Ex: domingo eh dia 0, terca eh 2);
4189                        $weekday = $dia[$month_day]; //retorna o nome do dia da semana de acordo com seu numero;
4190
4191                        return ($weekday);
4192
4193                }
4194
4195                function month_display_week($startdate,$weekly,$cellcolor,$display_name = False,$owner=0,$monthstart=0,$monthend=0)
4196                {
4197                        if($owner == 0)
4198                        {
4199                                $owner = $GLOBALS['phpgw_info']['user']['account_id'];
4200                        }
4201
4202                        $temp_owner = $this->bo->owner;
4203
4204                        $str = '';
4205                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4206                        $p->set_unknowns('keep');
4207
4208                        $p->set_file(
4209                                Array(
4210                                        'month_header'  => 'month_header_print.tpl',
4211                                        'month_day'     => 'month_day_print.tpl'
4212                                )
4213                        );
4214                        $p->set_block('month_header','monthly_header','monthly_header');
4215                        $p->set_block('month_header','month_column','month_column');
4216                        $p->set_block('month_day','month_daily','month_daily');
4217                        $p->set_block('month_day','day_event','day_event');
4218                        $p->set_block('month_day','event','event');
4219
4220                        $p->set_var('extra','');
4221                        $p->set_var('col_width','14');
4222                       
4223                        $today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
4224                        $daily = $this->set_week_array($startdate - $GLOBALS['phpgw']->datetime->tz_offset,$cellcolor,$weekly);
4225
4226                        foreach($daily as $date => $day_params)
4227                        {
4228                                $year  = (int)substr($date,0,4);
4229                                $month = (int)substr($date,4,2);
4230                                $day   = (int)substr($date,6,2);
4231                                $var   = Array(
4232                                        'column_data' => '',
4233                                        'extra' => ''
4234                                );
4235                                $p->set_var($var);
4236                                if ($weekly || ($date >= $monthstart && $date <= $monthend))
4237                                {
4238                                        $new_event_link = '';
4239                                        $day_num = $day;
4240                                        $dia_semana = $this->month_day_of_week($year,$month,$day_num);
4241                                        $id_aux = mktime(0,0,0,$month,$day,$year);
4242                                        $month_identifier = substr(lang(strftime("%B",$id_aux)),0,3);
4243                                        $day_number = $month_identifier . " - " . $dia_semana . ",  " . $day_num;
4244
4245                                        $var = Array(
4246                                                'extra'         => $day_params['extra'],
4247                                                'new_event_link'=> $new_event_link,
4248                                                'day_number'    => $day_number
4249                                        );
4250
4251                                        $p->set_var($var);
4252
4253                                        if($day_params['appts'])
4254                                        {
4255                                                $var = Array(
4256                                                        'week_day_font_size'    => '2',
4257                                                        'events'                => ''
4258                                                );
4259                                                $p->set_var($var);
4260                                                $events = $this->bo->cached_events[$date];
4261                                                foreach($events as $event)
4262                                                {
4263                                                        if ($this->bo->rejected_no_show($event))
4264                                                        {
4265                                                                continue;       // user does not want to see rejected events
4266                                                        }
4267                                                        $p->set_var('day_events',$this->link_to_month_entry($event,$month,$day,$year));
4268                                                        $p->parse('events','event',True);
4269                                                        $p->set_var('day_events','');
4270                                                }
4271                                        }
4272                                        $p->parse('daily_events','day_event',True);
4273                                        $p->parse('column_data','month_daily',True);
4274                                        $p->set_var('daily_events','');
4275                                        $p->set_var('events','');
4276                                }
4277                                $p->parse('column_header','month_column',True);
4278                                $p->set_var('column_data','');
4279                        }
4280                        $this->bo->owner = $temp_owner;
4281                        return $p->fp('out','monthly_header');
4282
4283                }
4284
4285                function display_month_print($month,$year,$showyear,$owner=0)
4286                {
4287                        if($this->debug)
4288                        {
4289                                echo '<!-- datetime:gmtdate = '.$GLOBALS['phpgw']->datetime->cv_gmtdate.' -->'."\n";
4290                        }
4291
4292/*                      $this->bo->store_to_cache(
4293                                Array(
4294                                        'syear' => $year,
4295                                        'smonth'=> $month,
4296                                        'sday'  => 1
4297                                )
4298                        );
4299*/
4300                        $day_ini = $_GET['day_ini'];// dia do inicio da impressao; o padrao e o dia atual;
4301                        $num_dias = $_GET['num_dias'];// quantidade de dias a partir do dia inicial;
4302
4303                        $monthstart = (int)(date('Ymd',mktime(0,0,0,$month    ,1,$year)));
4304//                      $monthend   = (int)(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
4305
4306                        if($num_dias != '')
4307                        {
4308                                //se a qtde de dias for informada, a data final para impressao considera a soma $day_ini+$num_dias;
4309                                $monthend   = (int)(date('Ymd',mktime(0,0,0,$month,$day_ini+$num_dias-1,$year)));
4310                        }
4311                        else
4312                        {
4313                                //se a qtde de dias nao for informada, a data final para impressao vai ate o fim do mes corrente;
4314                                $monthend   = (int)(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
4315                        }
4316                       
4317                        if($day_ini != 0)
4318                        {
4319                                //o dia de inicio para impressao passa a ser o informado em $day_ini do mes corrente;
4320                                $start = mktime(0,0,0,$month,$day_ini,$year);
4321                        }
4322                        else
4323                        {
4324                                //se nao for informado o dia para inicio da impressao, esta comeca no dia 1 do mes corrente;
4325                                $start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, 1);
4326                        }
4327                        //$start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, 15);
4328                        $start_d = (int)(date('Ymd',$start));//variavel auxiliar que recebe a data inicial de impressao no formato 'Ymd';
4329                        $saux = (int)(substr($start_d,4,2));//variavel auxiliar que recebe o mes do inicio da impressao;
4330                        $eaux = (int)(substr($monthend,4,2)) + 1;//variavel auxiliar que recebe o mes do fim da impressao;
4331                        //A funcao store_to_cache devolve todos os eventos existentes de determinado usuario em um periodo de tempo
4332                        //especifico. Originalmente, na impressao mensal, esse periodo de tempo era o mes corrente exibido na tela.
4333                        //A mudanca consiste no fato de que uma nova variavel ($saux) e enviada com o mes de inicio do periodo
4334                        //atraves do indice 'smonth' e uma segunda variavel ($eaux) envia o mes final do periodo de tempo atraves
4335                        //do indice 'emonth'. Vide mais comentarios sobre esses valores em class.bocalendar.inc.php,
4336                        //function store_to_cache($params);
4337                        $this->bo->store_to_cache(
4338                        Array(
4339                                'syear' => $year,//ano atual
4340                                'smonth'=> $saux,//mes inicial
4341                                'emonth'=> $eaux,//mes final
4342                                'sday'  => 1
4343                        ));
4344
4345                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4346                        $p->set_unknowns('keep');
4347
4348                        $p->set_file(
4349                                Array(
4350                                        'week' => 'month_day_print.tpl'
4351                                )
4352                        );
4353                        $p->set_block('week','m_w_table','m_w_table');
4354                        $p->set_block('week','event','event');
4355
4356                        $var = Array(
4357                                'cols'      => 1,
4358                                'day_events'=> '' //$this->month_week_header($month,$year,False)
4359                        );
4360//                      $this->output_template_array($p,'row','event',$var);
4361
4362                        $cellcolor = $this->theme['row_on'];
4363
4364                        for($i = (int)($start + $GLOBALS['phpgw']->datetime->tz_offset);(int)(date('Ymd',$i)) <= $monthend;$i += 604800)
4365                        {
4366                                $cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
4367                                $var = Array(
4368                                        'day_events' => $this->month_display_week($i,False,$cellcolor,False,$owner,$monthstart,$monthend)
4369                                );
4370                                $this->output_template_array($p,'row','event',$var);
4371                        }
4372                        return $p->fp('out','m_w_table');
4373                }
4374
4375
4376/***************************************************************************************/
4377
4378                function display_month($month,$year,$showyear,$owner=0)
4379                {
4380                        if($this->debug)
4381                        {
4382                                echo '<!-- datetime:gmtdate = '.$GLOBALS['phpgw']->datetime->cv_gmtdate.' -->'."\n";
4383                        }
4384
4385                        $this->bo->store_to_cache(
4386                                Array(
4387                                        'syear' => $year,
4388                                        'smonth'=> $month,
4389                                        'sday'  => 1
4390                                )
4391                        );
4392
4393                        $monthstart = (int)(date('Ymd',mktime(0,0,0,$month    ,1,$year)));
4394                        $monthend   = (int)(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
4395
4396                        $start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, 1);
4397
4398                        if($this->debug)
4399                        {
4400                                echo '<!-- display_month:monthstart = '.$monthstart.' -->'."\n";
4401                                echo '<!-- display_month:start = '.date('Ymd H:i:s',$start).' -->'."\n";
4402                        }
4403
4404                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4405                        $p->set_unknowns('keep');
4406
4407                        $p->set_file(
4408                                Array(
4409                                        'week' => 'month_day.tpl'
4410                                )
4411                        );
4412                        $p->set_block('week','m_w_table','m_w_table');
4413                        $p->set_block('week','event','event');
4414
4415                        $var = Array(
4416                                'cols'      => 1,
4417                                'day_events'=> $this->week_header($month,$year,False)
4418                        );
4419                        $this->output_template_array($p,'row','event',$var);
4420
4421                        $cellcolor = $this->theme['row_on'];
4422
4423                        for($i = (int)($start + $GLOBALS['phpgw']->datetime->tz_offset);(int)(date('Ymd',$i)) <= $monthend;$i += 604800)
4424                        {
4425                                $cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
4426                                $var = Array(
4427                                        'day_events' => $this->display_week($i,False,$cellcolor,False,$owner,$monthstart,$monthend)
4428                                );
4429                                $this->output_template_array($p,'row','event',$var);
4430                        }
4431                        return $p->fp('out','m_w_table');
4432                }
4433
4434                function display_weekly($params)
4435                {
4436                        if(!is_array($params))
4437                        {
4438                                $this->index();
4439                        }
4440
4441                        $year = substr($params['date'],0,4);
4442                        $month = substr($params['date'],4,2);
4443                        $day = substr($params['date'],6,2);
4444                        $showyear = $params['showyear'];
4445                        $owners = $params['owners'];
4446
4447                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4448                        $p->set_unknowns('keep');
4449
4450                        $p->set_file(
4451                                Array(
4452                                        'week'  => 'month_day.tpl'
4453                                )
4454                        );
4455                        $p->set_block('week','m_w_table','m_w_table');
4456                        $p->set_block('week','event','event');
4457
4458                        $start = $GLOBALS['phpgw']->datetime->get_weekday_start($year, $month, $day) + $GLOBALS['phpgw']->datetime->tz_offset;
4459
4460                        $cellcolor = $this->theme['row_off'];
4461
4462                        $true_printer_friendly = $this->bo->printer_friendly;
4463
4464                        if(is_array($owners))
4465                        {
4466                                $display_name = True;
4467                                $counter = count($owners);
4468                                $owners_array = $owners;
4469                                $cols = 8;
4470                        }
4471                        else
4472                        {
4473                                $display_name = False;
4474                                $counter = 1;
4475                                $owners_array[0] = $owners;
4476                                $cols = 7;
4477                        }
4478                        $var = Array(
4479                                'cols'         => $cols,
4480                                'day_events'   => $this->week_header($month,$year,$display_name)
4481                        );
4482                        $this->output_template_array($p,'row','event',$var);
4483
4484                        $tstart = $start - $GLOBALS['phpgw']->datetime->tz_offset;
4485                        $tstop = $tstart + 604800;
4486                        $original_owner = $this->bo->so->owner;
4487                        for($i=0;$i<$counter;$i++)
4488                        {
4489                                $this->bo->so->owner = $owners_array[$i];
4490                                $this->bo->so->open_box($owners_array[$i]);
4491                                $this->bo->store_to_cache(
4492                                        Array(
4493                                                'syear'  => date('Y',$tstart),
4494                                                'smonth' => date('m',$tstart),
4495                                                'sday'   => date('d',$tstart),
4496                                                'eyear'  => date('Y',$tstop),
4497                                                'emonth' => date('m',$tstop),
4498                                                'eday'   => date('d',$tstop)
4499                                        )
4500                                );
4501                                $p->set_var('day_events',$this->display_week($start,True,$cellcolor,$display_name,$owners_array[$i]));
4502                                $p->parse('row','event',True);
4503                        }
4504                        $this->bo->so->owner = $original_owner;
4505                        $this->bo->printer_friendly = $true_printer_friendly;
4506                        return $p->fp('out','m_w_table');
4507                }
4508
4509                function view_event($event,$alarms=False)
4510                {
4511                        if((!$event['participants'][$this->bo->owner] && !$this->bo->check_perms(PHPGW_ACL_READ,$event)))
4512                        {
4513                                return False;
4514                        }
4515
4516                        $p = &$GLOBALS['phpgw']->template;
4517
4518                        $p->set_file(
4519                                Array(
4520                                        'view'  => 'view.tpl'
4521                                )
4522                        );
4523                        $p->set_block('view','view_event','view_event');
4524                        $p->set_block('view','list','list');
4525                        $p->set_block('view','hr','hr');
4526
4527                        $vars = $this->bo->event2array($event);
4528
4529                        if($vars['attachment']['data'] == "")
4530                            $vars['attachment']['data'] = lang('No Attachment');
4531                        else{
4532                            $vars['attachment']['data'] = lang('Has attachment(s)');
4533                        }
4534                       
4535                        $vars['title']['tr_color'] = $this->theme['th_bg'];
4536
4537                        foreach($vars['participants']['data'] as $user => $str)
4538                        {
4539                        if ($this->bo->check_perms(PHPGW_ACL_EDIT,0,$user) && ereg('^(.*) \((.*)\)$',$str,$parts))
4540                                {
4541                                        $vars['participants']['data'][$user] = $parts[1].' (<a href="'.$this->page('edit_status','&cal_id='.$event['id'].'&owner='.$user).'">'.$parts[2].'</a>)';
4542                                        $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>)';
4543//system('echo "event: '.$event['start'].'" >>/tmp/controle');
4544                                }
4545                        }
4546                        $vars['participants']['data'] = implode("<br>\n",$vars['participants']['data']);
4547                        foreach($vars as $var)
4548                        {
4549                                if (strlen($var['data']))
4550                                {
4551                                        $this->output_template_array($p,'row','list',$var);
4552                                }
4553                        }
4554
4555                        if($alarms && count($event['alarm']))
4556                        {
4557                                $p->set_var('th_bg',$this->theme['th_bg']);
4558                                $p->set_var('hr_text',lang('Alarms'));
4559                                $p->parse('row','hr',True);
4560                                foreach($event['alarm'] as $key => $alarm)
4561                                {
4562                                        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
4563                                        {       
4564                                                $icon = '<img src="'.$GLOBALS['phpgw']->common->image('calendar',($alarm['enabled']?'enabled':'disabled')).'" width="13" height="13">';
4565                                                $var = Array(                                   
4566                                                        'field' => $icon.$GLOBALS['phpgw']->common->show_date($alarm['time']),
4567                                                        'data'  => lang('Email Notification for %1',$GLOBALS['phpgw']->common->grab_owner_name($alarm['owner']))
4568                                                );
4569                                                $this->output_template_array($p,'row','list',$var);
4570                                        }
4571                                }
4572                        }
4573                        return True;
4574                }
4575
4576                function nm_on_off()
4577                {
4578                        if($GLOBALS['phpgw']->nextmatchs->alternate_row_color() == $this->theme['row_on'])
4579                        {
4580                                return '_on';
4581                        }
4582                        return '_off';
4583                }
4584
4585                function slot_num($time,$set_day_start=0,$set_day_end=0)
4586                {
4587                        static $day_start, $day_end, $interval=0;
4588
4589                        if ($set_day_start) $day_start = $set_day_start;
4590                        if ($set_day_end)   $day_end   = $set_day_end;
4591                        if (!$interval)     $interval  = 60*$this->bo->prefs['calendar']['interval'];
4592
4593                        if ($time > $day_end)
4594                        {
4595                                $time = $day_end;
4596                        }
4597                        $slot = (int)(($time - $day_start) / $interval);
4598
4599                        return $slot < 0 ? 0 : 1+$slot;
4600                }
4601
4602                function print_day($params)
4603                {
4604                        if(!is_array($params))
4605                        {
4606                                $this->index();
4607                        }
4608
4609                        print_debug('in print_day()');
4610
4611                        $this->bo->store_to_cache(
4612                                Array(
4613                                        'syear'  => $params['year'],
4614                                        'smonth' => $params['month'],
4615                                        'sday'   => $params['day'],
4616                                        'eyear'  => $params['year'],
4617                                        'emonth' => $params['month'],
4618                                        'eday'   => $params['day']
4619                                )
4620                        );
4621
4622                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4623                        $p->set_unknowns('keep');
4624
4625                        $tpl = 'day_cal.tpl';
4626                        if((int)($GLOBALS['phpgw_info']['user']['preferences']['calendar']['mainscreen_showevents'])==2 &&
4627                                $GLOBALS['phpgw_info']['flags']['currentapp'] == 'home')
4628                        {
4629                                $tpl = 'day_list.tpl';
4630                        }
4631                        $templates = Array(
4632                                'day_cal'   => $tpl
4633                        );
4634
4635                        $p->set_file($templates);
4636                        $p->set_block('day_cal','day','day');
4637                        $p->set_block('day_cal','day_row','day_row');
4638                        $p->set_block('day_cal','day_event_on','day_event_on');
4639                        $p->set_block('day_cal','day_event_off','day_event_off');
4640                        $p->set_block('day_cal','day_event_holiday','day_event_holiday');
4641                        $p->set_block('day_cal','day_time','day_time');
4642
4643                        $date_to_eval = sprintf("%04d%02d%02d",$params['year'],$params['month'],$params['day']);
4644
4645                        $day_start = mktime((int)($this->bo->prefs['calendar']['workdaystarts']),0,0,$params['month'],$params['day'],$params['year']);
4646                        $day_end = mktime((int)($this->bo->prefs['calendar']['workdayends']),0,1,$params['month'],$params['day'],$params['year']);
4647                        $daily = $this->set_week_array($GLOBALS['phpgw']->datetime->get_weekday_start($params['year'],$params['month'],$params['day']),$this->theme['row_on'],True);
4648                        print_debug('Date to Eval',$date_to_eval);
4649                        $events_to_show = array();
4650                        if($daily[$date_to_eval]['appts'])
4651                        {
4652                                $events = $this->bo->cached_events[$date_to_eval];
4653                                print_debug('Date',$date_to_eval);
4654                                print_debug('Count',count($events));
4655                                foreach($events as $event)
4656                                {
4657                                        if ($this->bo->rejected_no_show($event))
4658                                        {
4659                                                continue;       // user does not want to see rejected events
4660                                        }
4661                                        if ($event['recur_type'])       // calculate start- + end-datetime for recuring events
4662                                        {
4663                                                $this->bo->set_recur_date($event,$date_to_eval);
4664                                        }
4665                                        $events_to_show[] = array(
4666                                                'starttime' => $this->bo->maketime($event['start']),
4667                                                'endtime'   => $this->bo->maketime($event['end']),
4668                                                'content'   => $this->link_to_entry($event,$params['month'],$params['day'],$params['year'])
4669                                        );
4670                                }
4671                        }
4672                        //echo "events_to_show=<pre>"; print_r($events_to_show); echo "</pre>\n";
4673                        $other = $GLOBALS['phpgw']->hooks->process(array(
4674                                'location'  => 'calendar_include_events',
4675                                'year'      => $params['year'],
4676                                'month'     => $params['month'],
4677                                'day'       => $params['day'],
4678                                'owner'     => $this->bo->owner // num. id of the user, not necessary current user
4679                        ));
4680
4681                        if (is_array($other))
4682                        {
4683                                foreach($other as $evts)
4684                                {
4685                                        if (is_array($evts))
4686                                        {
4687                                                $events_to_show = array_merge($events_to_show,$evts);
4688                                        }
4689                                }
4690                                usort($events_to_show,create_function('$a,$b','return $a[\'starttime\']-$b[\'starttime\'];'));
4691                                //echo "events_to_show=<pre>"; print_r($events_to_show); echo "</pre>\n";
4692                        }
4693
4694                        if (count($events_to_show))
4695                        {
4696                                $last_slot_end = -1;
4697                                foreach($events_to_show as $event)
4698                                {
4699                                        $slot = $this->slot_num($event['starttime'],$day_start,$day_end);
4700                                        $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
4701
4702                                        if ($slot <= $last_slot_end)
4703                                        {
4704                                                $slot = $last_slot;
4705                                                $slot_end = max($last_slot_end,$slot_end);
4706                                        }
4707                                        $rows[$slot] .= $event['content'];
4708
4709                                        print_debug('slot',$slot);
4710                                        print_debug('row',$rows[$slot]);
4711
4712                                        $row_span[$slot] = 1 + $slot_end - $slot;
4713
4714                                        $last_slot = $slot;
4715                                        $last_slot_end = $slot_end;
4716                                        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));
4717                                        print_debug('Slot',$slot);
4718                                }
4719                                //echo "rows=<pre>"; print_r($rows); echo "<br>row_span="; print_r($row_span); echo "</pre>\n";
4720                        }
4721                        $holiday_names = $daily[$date_to_eval]['holidays'];
4722                        if(!$holiday_names)
4723                        {
4724                                $row_to_print = $this->nm_on_off();
4725                        }
4726                        else
4727                        {
4728                                $row_to_print = '_holiday';
4729                                foreach($holiday_names as $name)
4730                                {
4731                                        $rows[0] = '<center>'.$name.'</center>' . $rows[0];
4732                                }
4733                        }
4734                        $last_slot = $this->slot_num($day_end,$day_start,$day_end);
4735                        $rowspan = 0;
4736                        for ($slot = 0; $slot <= $last_slot; ++$slot)
4737                        {
4738                                $p->set_var('extras','');
4739                                if ($rowspan > 1)
4740                                {
4741                                        $p->set_var('event','');
4742                                        $rowspan--;
4743                                }
4744                                elseif (!isset($rows[$slot]))
4745                                {
4746                                        $p->set_var('event','&nbsp;');
4747                                        $row_to_print = $this->nm_on_off();
4748                                        $p->parse('event','day_event'.$row_to_print);
4749                                }
4750                                else
4751                                {
4752                                        $rowspan = (int)$row_span[$slot];
4753                                        if ($rowspan > 1)
4754                                        {
4755                                                $p->set_var('extras',' rowspan="'.$rowspan.'"');
4756                                        }
4757                                        $p->set_var('event',$rows[$slot]);
4758                                        $row_to_print = $this->nm_on_off();
4759                                        $p->parse('event','day_event'.$row_to_print);
4760                                }
4761                                $open_link = $close_link = '';
4762                                $time = '&nbsp;';
4763
4764                                if (0 < $slot && $slot < $last_slot)    // normal time-slot not before or after day_start/end
4765                                {
4766                                        $time = $day_start + ($slot-1) * 60 * $this->bo->prefs['calendar']['interval'];
4767                                        $hour = date('H',$time);
4768                                        $min  = date('i',$time);
4769                                        $time = $GLOBALS['phpgw']->common->formattime($hour,$min);
4770
4771                                        if(!$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_ADD))
4772                                        {
4773                                                $open_link = ' <a href="'.$this->page('add',"&date=$date_to_eval&hour=$hour&minute=$min").'">';
4774                                                $close_link = '</a> ';
4775                                        }
4776                                }
4777                                $p->set_var(Array(
4778                                        'open_link'  => $open_link,
4779                                        'time'       => $time,
4780                                        'close_link' => $close_link,
4781                                        'tr_color'   => ''      // dummy to stop output_template_array to set it
4782                                ));
4783                                $p->parse('time','day_time');
4784
4785                                $p->parse('row','day_row',True);
4786                        }
4787                        return $p->fp('out','day');
4788                }       // end function
4789
4790                function timematrix($param)
4791                {
4792                        if(!is_array($param))
4793                        {
4794                                $this->index();
4795                        }
4796
4797                        $date = $param['date'];
4798                        $starttime = $param['starttime'];
4799                        $endtime = $param['endtime'];
4800                        $participants = $param['participants'];
4801                        foreach($participants as $part => $nul)
4802                        {
4803                                $participants[$part] = $GLOBALS['phpgw']->common->grab_owner_name($part);
4804                                // Much better for processor  :)
4805                                $participants_id[]  .= $part;
4806                        }
4807                        uasort($participants,'strnatcasecmp');  // sort them after their fullname
4808
4809                        if(!isset($this->bo->prefs['calendar']['interval']))
4810                        {
4811                                $this->bo->prefs['calendar']['interval'] = 15;
4812                                $GLOBALS['phpgw']->preferences->add('calendar','interval',15);
4813                                $GLOBALS['phpgw']->preferences->save_repository();
4814                        }
4815                        $increment = $this->bo->prefs['calendar']['interval'];
4816                        $interval = (int)(60 / $increment);
4817
4818                        $pix = $GLOBALS['phpgw']->common->image('calendar','pix');
4819
4820                        $str = '<center>'.lang($GLOBALS['phpgw']->common->show_date($date['raw'],'l'))
4821                                . ', '.$this->bo->long_date($date).'<br>'
4822                                . '<table width="85%" border="0" cellspacing="0" cellpadding="0" cols="'.((24 * $interval) + 1).'">'
4823                                . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>'
4824                                . '<tr><td width="15%"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.lang('Participant').'</font></td>';
4825                        for($i=0;$i<24;$i++)
4826                        {
4827                                for($j=0;$j<$interval;$j++)
4828                                {
4829                                        $k = ($j == 0 ? sprintf('%02d',$i).'<br>':'').sprintf('%02d',$j*$increment);
4830
4831                                        $str .= '<td align="left" bgcolor="'.$this->theme['bg_color'].'"><font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'
4832                                                . '<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;\">"
4833                                                . $k."</a>&nbsp;</font></td>\n";
4834                                }
4835                        }
4836                        $str .= '</tr>'
4837                                . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>';
4838                        if(!$endtime)
4839                        {
4840                                $endtime = $starttime;
4841                        }
4842                        $owner = $this->bo->owner;
4843                        foreach($participants as $part => $fullname)
4844                        {
4845                                $str .= '<tr align="center">'
4846                                        . '<td width="15%" align="left"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.$fullname.'</font></td>';
4847
4848                                $this->bo->cached_events = Array();
4849                                $this->bo->so->owner = $part;
4850                                $this->bo->so->open_box($part);
4851                                $this->bo->store_to_cache(
4852                                        Array(
4853                                                'syear' => $date['year'],
4854                                                'smonth'=> $date['month'],
4855                                                'sday'  => $date['day'],
4856                                                'eyear' => 0,
4857                                                'emonth'=> 0,
4858                                                'eday'  => $date['day'] + 1
4859                                        )
4860                                );
4861
4862                                if(!$this->bo->cached_events[$date['full']])
4863                                {
4864                                        for($j=0;$j<24;$j++)
4865                                        {
4866                                                for($k=0;$k<$interval;$k++)
4867                                                {
4868                                                        $str .= '<td height="1" align="left" bgcolor="'.$this->theme['bg_color'].'" color="#999999">&nbsp;</td>';
4869                                                }
4870                                                $str .= "\n";
4871                                        }
4872                                }
4873                                else
4874                                {
4875                                        $time_slice = $this->bo->prepare_matrix($interval,$increment,$part,$date['full']);
4876                                        for($h=0;$h<24;$h++)
4877                                        {
4878                                                $hour = $h * 10000;
4879                                                for($m=0;$m<$interval;$m++)
4880                                                {
4881                                                        $index = ($hour + (($m * $increment) * 100));
4882                                                        switch($time_slice[$index]['marker'])
4883                                                        {
4884                                                                case '&nbsp':
4885                                                                        $time_slice[$index]['color'] = $this->theme['bg_color'];
4886                                                                        $extra = '';
4887                                                                        break;
4888                                                                case '-':
4889                                                                        $time_slice[$index]['color'] = $this->theme['bg01'];
4890                                                                        $link = $this->page('view','&cal_id='.$time_slice[$index]['id'].'&date='.$date['full']);
4891                                                                        $extra =' title="'.$time_slice[$index]['description'].'" onClick="location.href=\''.$link.'\';" style="cursor:pointer; cursor:hand;"';
4892                                                                        break;
4893                                                        }
4894                                                        $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>';
4895                                                }
4896                                                $str .= "\n";
4897                                        }
4898                                }
4899                                $str .= '</tr>'
4900                                        . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="#999999"><img src="'.$pix.'"></td></tr>';
4901                        }
4902                        $this->bo->owner = $owner;
4903                        $this->bo->so->owner = $owner;
4904                        $this->bo->so->open_box($owner);
4905                        return $str.'</table></center>'."\n";
4906                }
4907
4908                function get_response($cal_id)
4909                {
4910                        $p = &$GLOBALS['phpgw']->template;
4911                        $p->set_file(
4912                                Array(
4913                                        'form_button'   => 'form_button_script.tpl'
4914                                )
4915                        );
4916
4917                        $ev = $this->bo->get_cached_event();
4918                        $response_choices = Array(
4919                                ACCEPTED        => lang('Accept'),
4920                                REJECTED        => lang('Reject'),
4921                                TENTATIVE       => lang('Tentative')                           
4922                        );
4923                        $str = '';
4924                        while(list($param,$text) = each($response_choices))
4925                        {
4926                                $var = Array(
4927                                        'action_url_button'     => $this->page('set_action','&cal_id='.$cal_id.'&action='.$param),
4928                                        'action_text_button'    => '  '.$text.'  ',
4929                                        'action_confirm_button' => '',
4930                                        'action_extra_field'    => ''
4931                                );
4932                                $p->set_var($var);
4933                                $str .= '<td>'.$p->fp('out','form_button').'</td>'."\n";
4934                        }
4935                        if ($this->bo->return_to)
4936                        {
4937                                $var = Array(
4938                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to),
4939                                        'action_text_button'    => lang('cancel'),
4940                                        'action_confirm_button' => '',
4941                                        'action_extra_field'    => ''
4942                                );
4943                                $p->set_var($var);
4944                                $str .= '<td>'.$p->fp('out','form_button').'</td>'."\n";
4945                        }
4946                        $str = '<td><b>'.$GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner).":</b></td>\n".$str;
4947
4948                        return '<table width="100%"><tr align="center">'."\n".$str.'</tr></table>'."\n";
4949                }
4950
4951                function accounts_popup()
4952                {
4953                        $GLOBALS['phpgw']->accounts->accounts_popup('calendar');
4954                       
4955                }
4956
4957                function edit_form($param)
4958                {
4959                        if(!is_array($param))
4960                        {
4961                                $this->index();
4962                        }
4963                       
4964                        if(isset($param['event']))
4965                        {
4966                                $event = $param['event'];
4967                        }
4968                       
4969                        $hourformat = substr($this->bo->users_timeformat,0,1);
4970                       
4971                        // $sb = CreateObject('phpgwapi.sbox');
4972                        $sb = CreateObject('phpgwapi.sbox2');
4973                        $jscal = CreateObject('phpgwapi.jscalendar');   // before phpgw_header() !!!
4974                       
4975                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
4976                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
4977                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
4978                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
4979                        $GLOBALS['phpgw_info']['flags']['app_header'] = $event['id'] ? lang('Editing event') : lang('Adding event');
4980                        if ($param['plain'] != "True"){
4981                                $GLOBALS['phpgw']->common->phpgw_header();
4982                        }
4983                        else{
4984                                $GLOBALS['phpgw_info']['theme']['row_on'] = "F8F8F8";
4985                                $GLOBALS['phpgw_info']['theme']['row_off'] = "F8F8F8";
4986                        }
4987
4988                        $p = &$GLOBALS['phpgw']->template;
4989                        $p->set_file(
4990                                Array(
4991                                        'edit'          => 'edit.tpl',
4992                                        'form_button'   => 'form_button_script.tpl'
4993                                )
4994                        );
4995                        $p->set_block('edit','edit_entry','edit_entry');
4996                        $p->set_block('edit','list','list');
4997                        $p->set_block('edit','hr','hr');
4998                       
4999                        $vars = Array(
5000                                'font'                  => $this->theme['font'],
5001                                'bg_color'              => $this->theme['bg_text'],
5002                                'action_url'            => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.bocalendar.update')),
5003                                'accounts_link'         => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.accounts_popup'),
5004                                'common_hidden' => '<input type="hidden" name="cal[id]" value="'.$event['id'].'">'."\n"
5005                                        . '<input type="hidden" name="cal[owner]" value="'.$event['owner'].'">'."\n"
5006                                        . '<input type="hidden" name="cal[uid]" value="'.$event['uid'].'">'."\n"
5007                                        . ($_GET['cal_id'] && $event['id'] == 0?'<input type="hidden" name="cal[reference]" value="'.$_GET['cal_id'].'">'."\n":
5008                                        (@isset($event['reference'])?'<input type="hidden" name="cal[reference]" value="'.$event['reference'].'">'."\n":''))
5009                                        . (@isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) && $GLOBALS['phpgw_info']['server']['deny_user_grants_access']?
5010                                        '<input type="hidden" name="participants[]" value="'.$this->bo->owner.'">'."\n":''),
5011                                'errormsg'              => ($param['cd']?$GLOBALS['phpgw']->common->check_code($param['cd']):'')
5012                        );
5013                       
5014                        $p->set_var($vars);
5015
5016// Brief Description
5017                        $var['title'] = Array(
5018                                'tr_color' => $this->theme['th_bg'],
5019                                'field' => lang('Title'),
5020                                'data'  => '<input name="cal[title]" size="103" maxlength="300" value="'.$event['title'].'">'
5021                        );
5022
5023// Full Description
5024                        $var['description'] = Array(
5025                                'field' => lang('Full Description'),
5026                                'data'  => '<textarea name="cal[description]" rows="5" cols="88" wrap="virtual" maxlength="2048">'.$event['description'].'</textarea>'
5027                        );
5028
5029// Display Categories
5030                        if(strpos($event['category'],','))
5031                        {
5032                                $temp_cats = explode(',',$event['category']);
5033                                @reset($temp_cats);
5034                                while(list($key,$value) = each($temp_cats))
5035                                {
5036                                        $check_cats[] = (int)$value;
5037                                }
5038                        }
5039                        elseif($event['category'])
5040                        {
5041                                $check_cats[] = (int)$event['category'];
5042                        }
5043                        else
5044                        {
5045                                $check_cats[] = 0;
5046                        }
5047                        $var['category'] = Array(
5048                                'field' => lang('Category'),
5049                                'data'  => '<select name="categories[]" onchange="javascript:updateTitleField(this)" multiple size="5">'.$this->cat->formated_list('select','all',$check_cats,True).'</select>'
5050                        );
5051
5052// Location
5053                        $var['location'] = Array(
5054                                'field' => lang('Location'),
5055                                'data'  => '<input name="cal[location]" size="45" maxlength="255" value="'.$event['location'].'">'
5056                        );
5057
5058// Date
5059
5060                        $start = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
5061                        $var['startdate'] = Array(
5062                                'field' => lang('Start Date'),
5063/*
5064                                'data'  => $GLOBALS['phpgw']->common->dateformatorder(
5065                                   $sb->getYears('start[year]',(int)$GLOBALS['phpgw']->common->show_date($start,'Y')),
5066                                   $sb->getMonthText('start[month]',(int)$GLOBALS['phpgw']->common->show_date($start,'n')),
5067                                   $sb->getDays('start[mday]',(int)$GLOBALS['phpgw']->common->show_date($start,'d'))
5068                                )
5069*/
5070                                'data' => $jscal->input('start[str]',$start)
5071                        );
5072
5073// Time
5074                        if ($this->bo->prefs['common']['timeformat'] == '12')
5075                        {
5076                                $str .= '<input type="radio" name="start[ampm]" value="am"'.($event['start']['hour'] >= 12?'':' checked').'>am'."\n"
5077                                        . '<input type="radio" name="start[ampm]" value="pm"'.($event['start']['hour'] >= 12?' checked':'').'>pm'."\n";
5078                        }
5079                        $var['starttime'] = Array(
5080                                'field' => lang('Start Time'),
5081                                '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
5082                        );
5083
5084// End Date
5085                        $end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
5086                        $var['enddate'] = Array(
5087                                'field' => lang('End Date'),
5088/*
5089                                'data'  => $GLOBALS['phpgw']->common->dateformatorder(
5090                                   $sb->getYears('end[year]',(int)$GLOBALS['phpgw']->common->show_date($end,'Y')),
5091                                   $sb->getMonthText('end[month]',(int)$GLOBALS['phpgw']->common->show_date($end,'n')),
5092                                   $sb->getDays('end[mday]',(int)$GLOBALS['phpgw']->common->show_date($end,'d'))
5093                                )
5094*/
5095                                'data' => $jscal->input('end[str]',$end)
5096                        );
5097
5098// End Time
5099                        if ($this->bo->prefs['common']['timeformat'] == '12')
5100                        {
5101                                $str = '<input type="radio" name="end[ampm]" value="am"'.($event['end']['hour'] >= 12?'':' checked').'>am'."\n"
5102                                        . '<input type="radio" name="end[ampm]" value="pm"'.($event['end']['hour'] >= 12?' checked':'').'>pm'."\n";
5103                        }
5104                        $var['endtime'] = Array(
5105                                'field' => lang('End Time'),
5106                                '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
5107                        );
5108
5109// Priority
5110                        $var['priority'] = Array(
5111                                'field' => lang('Priority'),
5112                                'data'  => $sb->getPriority('cal[priority]',$event['priority'])
5113                        );
5114
5115                        // Access
5116                        $var['access'] = Array(
5117                        'field' => lang('Type'),
5118                        '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>'
5119                        ); //event['public']
5120
5121                        // Participants
5122                        if(!isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) || !$GLOBALS['phpgw_info']['server']['deny_user_grants_access'])
5123                        {
5124                                switch($GLOBALS['phpgw_info']['user']['preferences']['common']['account_selection'])
5125                                {
5126                                        case 'popup':
5127                                                while (is_array($event['participants']) && list($id) = each($event['participants']))
5128                                                {
5129                                                        if($id != (int)$event['owner'])
5130                                                        {
5131                                                                $str .= '<option value="' . $id.$event['participants'][$id] . '"'.($event['participants'][$id]?' selected':'').'>('.$GLOBALS['phpgw']->accounts->get_type($id)
5132                                                                                .') ' . $GLOBALS['phpgw']->common->grab_owner_name($id) . '</option>' . "\n";
5133                                                        }
5134                                                }
5135                                                $var['participants'] = array
5136                                                (
5137                                                        'field' => '<input type="button" value="' . lang('Participants') . '" onClick="accounts_popup();">' . "\n"
5138                                                                        . '<input type="hidden" name="accountid" value="' . $accountid . '">',
5139                                                        'data'  => "\n".'   <select name="participants[]" multiple size="7">' . "\n" . $str . '</select>'
5140                                                );
5141                                                break;
5142                                        default:
5143                                                foreach($event['participants'] as $id => $participant)
5144                                                {
5145                                                        if (($id != $event['owner']) && ($id != ""))
5146                                                        {
5147                                                                $GLOBALS['phpgw']->accounts->get_account_name($id, $lid, $fname, $lname);
5148                                                                $cn = $fname.' '.$lname;                                                       
5149                                                                $option = '    <option  value="' . $id.$participant . '">'.$cn.'</option>'."\n";
5150                                                                $str .= $option;
5151                                                        }                                                               
5152                                                }
5153                                                $str = utf8_decode($str);
5154                                                $footer_ext_participantes =     '<br>&nbsp;&nbsp;'.lang("The email addresses must be separated by ','");                                               
5155                                               
5156                                                $var['participants'] = array
5157                                                (
5158                                                        'field' => lang('Participants'),                                                       
5159                                                        'data'  => "
5160                                                                        <table width='100%' border='0'>
5161                                                                                <tr>
5162                                                                                        <td width='30%'>                                                                               
5163                                                                                                <center>Participantes</center>                                                                                         
5164                                                                                        </td>
5165                                                                                        <td width='8%' >&nbsp;</td>
5166                                                                                        <td width='40%'>&nbsp;</td>
5167                                                                                </tr>                                                                                                                                           
5168                                                                                <tr>           
5169                                                                                        <td width='30%'>                                                                                       
5170                                                                                                <center><select id='user_list' name='participants[]' style='width: 220px' multiple size='7'>".$str."</select></center>                                                                         
5171                                                                                        </td>                           
5172                                                                                        <td width='8%'>
5173                                                                                        <center>
5174                                                                                                <table width='100%' border='0'>                                                                 
5175                                                                                                        <tr height='5'><td>&nbsp;</td></tr>                                                                     
5176                                                                                                        <tr><td align='center'>                                                                 
5177                                                                                                                <button type='button' onClick='javascript:openListUsers(340,533, "
5178                                                                                                                .$event['owner'].
5179                                                                                                                ")'><img src='calendar/templates/".$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set']."/images/add.png' style='vertical-align: middle;' >&nbsp;Adicionar</button>
5180                                                                                                                </td>
5181                                                                                                        </tr>                                                   
5182                                                                                                        <tr height='5'><td>&nbsp;</td></tr>
5183                                                                                                        <tr><td  align='center'>
5184                                                                                                                <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>
5185                                                                                                                </td>
5186                                                                                                        </tr>
5187                                                                                                </table>
5188                                                                                        </center>
5189                                                                                        </td>
5190                                                                                        <td width='40%'>&nbsp;</td>
5191                                                                                </tr>
5192                                                                                </table>
5193                                                                                <script src='calendar/js/edit.js' type='text/javascript'></script>
5194                                                                        "
5195                                                );
5196                                                // if ExpressoMail 1.2 has been installed and enabled, show the plugin using AJAX.
5197                                                if($GLOBALS['phpgw_info']['server']['cal_expressoMail']) {                                                     
5198                                                        $module_name = 'expressoMail'.(str_replace("1.","1_",$GLOBALS['phpgw_info']['server']['cal_expressoMail']));
5199
5200                                                        if($GLOBALS['phpgw_info']['user']['apps'][$module_name]){                                                               
5201                                                                $ldap_manager = CreateObject('contactcenter.bo_ldap_manager');
5202                                                                $_SESSION['phpgw_info']['expressomail']['user'] = $GLOBALS['phpgw_info']['user'];
5203                                                                $_SESSION['phpgw_info']['expressomail']['user']['owner'] = $event['owner'];
5204                                                                $_SESSION['phpgw_info']['expressomail']['server'] = $GLOBALS['phpgw_info']['server'];
5205                                                                $_SESSION['phpgw_info']['expressomail']['ldap_server'] = $ldap_manager ? $ldap_manager->srcs[1] : null;
5206                                                                $context = $GLOBALS['phpgw_info']['server']['ldap_context'];
5207                                                                $user_context = array();
5208                                                                foreach(explode(",",$GLOBALS['phpgw_info']['user']['account_dn']) as $i => $dn_part){
5209                                                                        if($i)
5210                                                                                $user_context[] = $dn_part;
5211                                                                }
5212                                                                // Prepara o contexto do usuario com sua OU raiz, pois ele pode pertencer a uma OU de nivel N.
5213                                                                $user_ou = explode(",",str_replace($context,"",implode(",",$user_context)));                                                           
5214                                                                $user_context = trim(strtolower($user_ou[count($user_ou) - 2].",".$context));
5215                                                                // Fim         
5216                                                                // Verifica o tipo da visualização da árvore LDAP, configurado no admin da Agenda
5217                                                                $recursive = $GLOBALS['phpgw_info']['server']['cal_type_tree_participants'] == '1' ? true : false;
5218                                                                //$combo_org = $this->get_organizations(trim(strtolower($context)),$user_context, $recursive);
5219                                                                $footer_ext_participantes = lang("Tip: To search in the <b>Global Catalog</b>, type the <b>F9</b> key, like the ExpressoMail.");
5220                                                                //Caso o minimo de caracteres para a busca nao tenha sido preenchido ele sera por padrao = 3
5221                                                                if(!$GLOBALS['phpgw_info']['server']['min_num_characters']){
5222                                                                        $GLOBALS['phpgw_info']['server']['min_num_characters'] = 0;
5223                                                                }
5224
5225                                                                if ($GLOBALS['phpgw_info']['server']['cal_type_tree_participants'] == '3'){
5226                                                                        $combo_org = '<option value='.$context.'>'.strtoupper($context).'</option>';
5227                                                                }else{
5228                                                                        $combo_org = $this->get_organizations(trim(strtolower($context)),$user_context, $recursive);
5229                                                                }
5230
5231                                                                if ($param['plain'] != "True"){
5232
5233                                                                        // Begin load array lang
5234                                                                        ob_start();
5235                                                                        //@include($module_name.'/inc/load_lang.php');
5236                                                                        $load_lang_vars = ob_get_contents();
5237                                                                        ob_end_clean();
5238                                                                        // End load array_lang
5239                                                                }
5240
5241                                                                $var['participants'] = array
5242                                                                (
5243                                                                        'field' => '
5244                                                                        <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\'>
5245        <iframe src=\'#\' id=\'frame_disponibility\' width=\'500\' marginHeight=\'0\' marginWidth=\'0\' height=\'200px\'></iframe>
5246</div>
5247                                                                        '.lang('Participants'),
5248                                                                        'data'  => '
5249                                                                                        <input type="hidden" id="txt_loading" value="'.lang("Loading").'">' .
5250                                                                                        '<input type="hidden" id="txt_searching" value="'.lang("Searching").'">' .
5251                                                                                        '<input type="hidden" id="txt_users" value="'.lang("Users").'">' .                                                     
5252                                                                                        '<input type="hidden" id="txt_groups" value="'.lang("Groups").'">' .
5253                                                                                        '<table width="100%" border="0">'.
5254                                                                                        '<tr>'.
5255                                                                                        '<td width="25%"><br><br>'.
5256                                                                                        '<br><br>&nbsp;&nbsp;<b>'.lang("Event's participants").'</b><br>'.
5257                                                                                        '       <select id="user_list" name="participants[]" style="width: 300px" multiple size="13">'.$str.'</select>'.
5258                                                                                        '</td>'.
5259                                                                                        '<td width="30px" valign="middle" align="center">&nbsp;'.
5260                                                                                        '</td>'.
5261                                                                                        '<td valign="bottom">'.
5262                                                                                        '       '.lang("Organization").': '.
5263                                                                                        '       <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>'.
5264                                                                                        '       <br>'.
5265                                                                                        '       <font color="red"><span id="cal_span_searching">&nbsp;</span></font>'.                                                                 
5266                                                                                        '       <br>'.lang("Search for").':'.
5267                                                                                        '       <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>'.
5268                                                                                        '       <b>'.lang("Available users and groups").'</b><br>'.
5269                                                                                        '       <select id="user_list_in" style="width: 300px" multiple size="13"></select>'.
5270                                                                                        '</td>'.
5271                                                                                        '</tr>'.
5272                                            '<tr>'.
5273                                            '<td width="25%">'.
5274                                            '<button type="button" id="time_map" onClick="javascript:show_disponibility();">'.lang("Disponibility map").'</button>'.
5275                                            '</td>'.
5276                                            '<td width="30px" valign="middle" align="center">&nbsp;'.
5277                                                                                        '</td>'.
5278                                            '<td valign="bottom">'.
5279                                            '<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>'.
5280                                                                                        '&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>'.
5281                                            '</td>'.
5282                                                                                        '</tr>'.
5283                                                                                        '</table>'.
5284                                                                                        '<script type="text/javascript" src="phpgwapi/js/wz_dragdrop/wz_dragdrop.js"></script>'.
5285                                                                                        '<script type="text/javascript" src="phpgwapi/js/dJSWin/dJSWin.js"></script>'.         
5286                                                                                        "<script src='calendar/js/edit_exmail.js' type='text/javascript'></script>" .
5287                                                                                        $load_lang_vars.                                                                                                                                                       
5288                                                                                        "<script src='".$module_name."/js/connector.js' type='text/javascript'></script>".
5289                                                                                        "<script type='text/javascript'>var DEFAULT_URL = '".$module_name."/controller.php?action=';</script> ".                                                                                       
5290                                                                                        "<script type='text/javascript'>" .
5291                                                                                        "var timeout_get_available_users = setTimeout('get_available_users(\"".$module_name."\",\'".$user_context."\',\'".($recursive ? "" : "search")."\',\'".$GLOBALS['phpgw_info']['server']['auto_search']."\')',1000);".
5292                                                                                        "</script> "
5293                                                                );
5294                                                        }                                               
5295                                                }                                               
5296                                               
5297                                                $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" .
5298                                                        " 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" ' .
5299                                                        '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">'.
5300                                                        '<tr>'.
5301                                                        '<td>'.
5302                                                        '&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">' .
5303                                                        '&nbsp;&nbsp;<a title="'.lang("Close").'" name="b_ext_participants" onClick="javascript:hideExParticipants(this,\''.$module_name.'\')" href="#a_ext_participants">['.lang("Close").']</a>&nbsp;'.                                                                                                               
5304                                                        '</td>'.
5305                                                        '</tr>'.
5306                                                        '<tr>'.
5307                                                        '<td>'.
5308                                                        '&nbsp;&nbsp;>> '.lang("It types below the email addresses, if you want to invite other people out of this system").':'.
5309                                                        '&nbsp;&nbsp;<br><textarea name="ex_participants" id="ex_participants" cols="70" rows="2">'.$event['ex_participants'].'</textarea><br>&nbsp;&nbsp;'.
5310                                                        //$footer_ext_participantes.
5311                                                        '</tr>'.                                                       
5312                                                        '</table>';
5313                                                break;
5314                                               
5315                                }
5316                                if((($event['id'] > 0) && isset($event['participants'][$event['owner']])) || !$event['id'])
5317                                {
5318                                        $checked = ' checked';
5319                                }
5320                                else
5321                                {
5322                                        $checked = '';
5323                                }
5324                                $var['owner'] = Array(
5325                                        'field' => $GLOBALS['phpgw']->common->grab_owner_name($event['owner']).' '.lang('Participates'),
5326                                        'data'  => '<input type="checkbox" id="usuarioParticipa" name="participants[]" value="'.$event['owner'].$event['participants'][$event['owner']].'"'.$checked.'>'
5327                                );
5328                        }
5329
5330// Reminder
5331                        // The user must use "Alarm Management" to change/modify an alarm
5332                        // so only display the email reminder fields if this is a new event
5333                        // i.e. not editing an existing event
5334
5335                        if ($event['id'] == 0) {
5336                                // get defaults
5337                                $days = $this->bo->prefs['calendar']['default_email_days'];
5338                                $hours = $this->bo->prefs['calendar']['default_email_hours'];
5339                                $min = $this->bo->prefs['calendar']['default_email_min'];
5340                                if (count($event['alarm']) > 1)
5341                                {
5342                                        // this should not happen because when creating a new event
5343                                        // only 1 alarm is displayed on the screen
5344                                        // if the user wants more than 1 alarm they should
5345                                        // use "Alarm Management"
5346                                        echo '<!-- how did this happen, too many alarms -->'."\n";
5347                                }
5348                                // if there was an error pick up what the user entered
5349                                if (@isset($event['alarm']))
5350                                {
5351                                        @reset($event['alarm']);
5352                                        // just get the first one see above!!!
5353                                        list($key,$alarm) = @each($event['alarm']);
5354
5355
5356                                        //if abaixo trata o caso de um evento repetido nao ter uma data final;
5357                                        //se isto acontecer, nao havera alarmes definidos;
5358                                        //$alarm['time'] recebe $start para $days, $hours e $min ficarem iguais a 0
5359                                        if(!$alarm['time']) {
5360                                                $alarm['time'] = $start;
5361                                        }
5362
5363                                        $diff  = $start - $alarm['time'];
5364                                        $days  = (int)($diff / (24*3600));
5365                                        $hours = (int)(($diff - ($days * 24 * 3600))/3600);
5366                                        $min   = (int)(($diff - ($days * 24 * 3600) - ($hours * 3600))/60);
5367
5368                                        if(@isset($_POST['edit_type']) && $_POST['edit_type'] == 'single') {
5369                                                $days = $diff;
5370                                        }
5371                                }
5372
5373                                // days
5374                                $dout = '<select name="cal[alarmdays]">'."\n";
5375                                for($i=0;$i<32;$i++)
5376                                {
5377                                        $dout .= '<option value="'.$i.'"'.($i==$days?' selected':'').'>'.$i.'</option>'."\n";
5378                                }
5379                                $dout .= '</select>'."\n".' '.lang('days').' ';
5380                                // hours
5381                                $hout = '<select name="cal[alarmhours]">'."\n";
5382                                for($i=0;$i<25;$i++)
5383                                {
5384                                        $hout .= '<option value="'.$i.'"'.($i==$hours?' selected':'').'>'.$i.'</option>'."\n";
5385                                }
5386                                $hout .= '</select>'."\n".' '.lang('hours').' ';
5387                                // minutes
5388                                $mout = '<select name="cal[alarmminutes]">'."\n";
5389                                for($i=0;$i<61;$i++)
5390                                {
5391                                        $mout .= '<option value="'.$i.'"'.($i==$min?' selected':'').'>'.$i.'</option>'."\n";
5392                                }
5393                                $mout .= '</select>'."\n".' '.lang('minutes').' ';
5394
5395                                $var['alarm'] = Array(
5396                                        'field' => lang('Alarm'),
5397                                        'data'  => $dout.$hout.$mout.lang('before the event')
5398                                );
5399
5400                        }
5401
5402// Repeat Type
5403                        $str = '';
5404                        foreach($this->bo->rpt_type as $type => $label)
5405                        {
5406                                $str .= '<option value="'.$type.'"'.($event['recur_type']==$type?' selected':'').'>'.lang($label).'</option>';
5407                        }
5408                        $var['recure_type'] = Array(
5409                                'field' => lang('Repeat Type'),
5410                                'data'  => '<select name="cal[recur_type]">'."\n".$str.'</select>'."\n"
5411                        );
5412
5413                        if($event['recur_enddate']['year'] != 0 && $event['recur_enddate']['month'] != 0 && $event['recur_enddate']['mday'] != 0)
5414                        {
5415                                $checked = ' checked';
5416                                $recur_end = $this->bo->maketime($event['recur_enddate']) - $GLOBALS['phpgw']->datetime->tz_offset;
5417                        }
5418                        else
5419                        {
5420                                $checked = '';
5421                                $recur_end = $this->bo->maketime($event['start']) + 86400 - $GLOBALS['phpgw']->datetime->tz_offset;
5422                        }
5423
5424                        $var['recure_enddate'] = Array(
5425                                'field' => lang('Repeat End Date'),
5426                                'data'  => '<input type="checkbox" name="cal[rpt_use_end]" value="y"'.$checked.'>'.lang('Use End Date').'  '.
5427/*
5428                                        $GLOBALS['phpgw']->common->dateformatorder(
5429                                                $sb->getYears('recur_enddate[year]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'Y')),
5430                                                $sb->getMonthText('recur_enddate[month]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'n')),
5431                                                $sb->getDays('recur_enddate[mday]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'d'))
5432                                        )
5433*/
5434                                        $jscal->input('recur_enddate[str]',$recur_end)
5435                        );
5436
5437                        $i = 0; $boxes = '';
5438                        foreach ($this->bo->rpt_day as $mask => $name)
5439                        {
5440                                $boxes .= '<input type="checkbox" name="cal[rpt_day][]" value="'.$mask.'"'.($event['recur_data'] & $mask ? ' checked' : '').'>&nbsp;'.lang($name)."\n";
5441                                if (++$i == 5) $boxes .= '<br>';
5442                        }
5443                        $var['recure_day'] = Array(
5444                                'field' => lang('Repeat Day').'<br>'.lang('(required for weekly recursivity)'),
5445                                'data'  => $boxes
5446                        );
5447
5448                        $var['recure_interval'] = Array(
5449                                'field' => lang('Interval'),
5450                                'data'  => '<input name="cal[recur_interval]" size="4" maxlength="4" value="'.$event['recur_interval'].'">'
5451                        );
5452//                      $this->output_template_array($p,'row','list',Array('data' => '<script src="simple_show_hide.js" type="text/javascript"></script>'));
5453
5454// Observations
5455                        $var['observations'] = Array(
5456                                'field' => lang('Observations'),
5457                                'data'  => '<textarea name="cal[observations]" rows="5" cols="88" wrap="virtual" maxlength="2048">'.$event['observations'].'</textarea>'
5458                        );
5459
5460                        if ($event['attachment'] == '' || $event['attachment'] == 'ERROR' || is_array($event['attachment']))
5461                            $data =  '<a onClick="javascript:addAttach()" href="#divFiles" >Anexos: adicionar+</a><div id="divFiles"</div>';
5462                        else
5463                            $data = '<input type="hidden" name="cal[attachment]" value='.$event["attachment"].'>'.lang('Notification with attachments sent.').'<br><a onClick="javascript:addAttach()" href="#divFiles" >Anexos: adicionar+</a><div id="divFiles"</div>';
5464
5465                        $var['attachment'] = Array(
5466                                'field' => lang('Attachment'),
5467                                //'data' => '<input  type="file" name="cal[attachment]" />'
5468                                'data' => $data
5469                        );
5470
5471                        if (!isset($this->fields))
5472                        {
5473                                $this->custom_fields = CreateObject('calendar.bocustom_fields');
5474                                $this->fields = &$this->custom_fields->fields;
5475                                $this->stock_fields = &$this->custom_fields->stock_fields;
5476                        }
5477                        $this->output_template_array($p,'row','list',$var['access']);
5478                        unset($var['access']);
5479
5480                        $preserved = False;
5481                        foreach($this->fields as $field => $data)
5482                        {
5483                                if (!$data['disabled'])
5484                                {
5485                                        if (isset($var[$field]))
5486                                        {
5487                                                switch($field)
5488                                                {
5489                                                        case 'startdate':
5490                                                                $this->output_template_array($p,'row','list',$var['startdate']);
5491                                                                $this->output_template_array($p,'row','list',$var['starttime']);
5492                                                                break;
5493                                                        case 'enddate':
5494                                                                $this->output_template_array($p,'row','list',$var['enddate']);
5495                                                                $this->output_template_array($p,'row','list',$var['endtime']);
5496                                                                break;
5497                                                        case 'recure_type':
5498                                                                $p->set_var('tr_color',$this->theme['th_bg']);
5499                                                                $p->set_var('hr_text','<center id="rpt_label"><b>'.lang('Repeating Event Information').'</b></center>');
5500                                                                $p->parse('row','hr',True);
5501                                                                $this->output_template_array($p,'row','list',$var['recure_type']);
5502                                                                $this->output_template_array($p,'row','list',$var['recure_enddate']);
5503                                                                $this->output_template_array($p,'row','list',$var['recure_day']);
5504                                                                $this->output_template_array($p,'row','list',$var['recure_interval']);
5505                                                                break;
5506                                                        default:
5507                                                                $this->output_template_array($p,'row','list',$var[$field]);
5508                                                }
5509                                        }
5510                                        elseif (!isset($this->stock_fields[$field]))    // Custom field
5511                                        {
5512                                                $lang = lang($name = substr($field,1));
5513                                                $size = 'SIZE='.($data['shown'] ? $data['shown'] : ($data['length'] ? $data['length'] : 30)).
5514                                                        ' MAXLENGTH='.($data['length'] ? $data['length'] : 255);
5515                                                $v = array(
5516                                                        'field' => $lang == $name.'*' ? $name : $lang,
5517                                                        'data'  => '<input name="cal['.htmlspecialchars($field).']" '.$size.' value="'.$event['#'.$name].'">'
5518                                                );
5519                                                if ($data['title'])
5520                                                {
5521                                                        $v['tr_color'] = $this->theme['th_bg'];
5522                                                }
5523                                                if (!$data['length'] && $data['title'])
5524                                                {
5525                                                        $p->set_var('tr_color',$this->theme['th_bg']);
5526                                                        $p->set_var('hr_text','<center><b>'.$v['field'].'</b></center>');
5527                                                        $p->parse('row','hr',True);
5528                                                }
5529                                                else
5530                                                {
5531                                                        $this->output_template_array($p,'row','list',$v);
5532                                                }
5533                                        }
5534                                }
5535                                else    // preserve disabled fields
5536                                {
5537                                        switch ($field)
5538                                        {
5539                                                case 'owner':
5540                                                        $preserved[$field] = $event['id'] ? $event['participants'][$event['owner']] : 'A';
5541                                                        break;
5542                                                case 'recure_type':
5543                                                        foreach(array('recur_type','recur_enddate','recur_data','recur_interval') as $field)
5544                                                        {
5545                                                                $preserved[$field] = $event[$field];
5546                                                        }
5547                                                        break;
5548                                                case 'startdate':
5549                                                case 'enddate':
5550                                                        $field = substr($field,0,-4);
5551                                                default:
5552                                                        $preserved[$field] = $event[$field];
5553                                        }
5554                                }
5555                        }
5556                        unset($var);
5557                        if (is_array($preserved))
5558                        {
5559                                //echo "preserving<pre>"; print_r($preserved); echo "</pre>\n";
5560                                $p->set_var('common_hidden',$p->get_var('common_hidden').'<input type="hidden" name="preserved" value="'.htmlspecialchars(serialize($preserved)).'">'."\n");
5561                        }
5562                        $p->set_var('submit_button',lang('Save'));
5563
5564                        $delete_button = $cancel_button = '';
5565                        if ($event['id'] > 0)
5566                        {
5567                                $var = Array(
5568                                        'action_url_button'     => $this->page('delete','&cal_id='.$event['id']),
5569                                        'action_text_button'    => lang('Delete'),
5570                                        'action_confirm_button' => "onClick=\"return confirm('".lang('Are you sure want to delete this entry?\\nThis will delete this entry for all users.')."')\"",
5571                                        'action_extra_field'    => '',
5572                                        'button_id'     =>      'delete_button'
5573                                );
5574                                $p->set_var($var);
5575                                $delete_button = $p->fp('out','form_button');
5576                        }
5577                        $p->set_var('delete_button',$delete_button);
5578                        $p->set_var('alert_msg',lang('Required field (category) is empty'));
5579
5580                        if ($this->bo->return_to)
5581                        {
5582                                $var = Array(
5583                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to),
5584                                        'action_text_button'    => lang('Cancel'),
5585                                        'action_confirm_button' => '',
5586                                        'action_extra_field'    => '',
5587                                        'button_id'     =>      'cancel_button'
5588                                );
5589                                $p->set_var($var);
5590                                $cancel_button = $p->fp('out','form_button');
5591                        }
5592                        $p->set_var('cancel_button',$cancel_button);
5593                        $p->pparse('out','edit_entry');
5594                }
5595               
5596                // modify list of an event's external participants (i.e. non pgpgw users)
5597                //
5598                function modify_ext_partlist()
5599                {
5600                        $GLOBALS['phpgw_info']['flags']['noheader'] = True;
5601                        $GLOBALS['phpgw_info']['flags']['nonavbar'] = True;
5602                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
5603                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
5604
5605                        $total_contacts = 0;
5606                        $participant = array();
5607                        $control_data= array();
5608
5609                        $control_data['action'] = '';
5610                        $control_data['delete'] = array();
5611                        $control_data['part'] = array();
5612
5613                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
5614                        $p->set_file(
5615                                Array(
5616                                        'T_edit_partlist' => 'edit_partlist.tpl',
5617                                        'T_edit_partlist_blocks' => 'edit_partlist_blocks.tpl'
5618                                )
5619                        );
5620
5621                        $p->set_block('T_edit_partlist_blocks','B_alert_msg','V_alert_msg');
5622                        $p->set_block('T_edit_partlist_blocks','B_partlist','V_partlist');
5623                        $p->set_block('T_edit_partlist_blocks','B_participants_none','V_participants_none');
5624                        $p->set_block('T_edit_partlist_blocks','B_delete_btn','V_delete_btn');
5625
5626                        global $query_addr;
5627                        $sb = CreateObject('phpgwapi.sbox2');
5628                        $addy = $sb->getAddress('addr','',$query_addr);
5629
5630                        $add_ext  = $addy['doSearchFkt'];
5631                        $add_ext .= $addy['addr_title']!=lang('Address Book')?$addy['addr_title']:'';
5632                        $add_ext .= "&nbsp;".$addy['addr'].$addy['addr_nojs'];
5633
5634                        $p->set_var('text_add_name',$add_ext);
5635
5636                        if(isset($_GET['part']) && $_GET['part'])
5637                        {
5638                                $control_data['part'] = split(",", $_GET['part']);
5639                        }
5640                        else
5641                        {
5642                                $control_data['part'] = $_POST['participant'];
5643                                $control_data['action'] = $_POST['action'];
5644                                $control_data['delete'] = $_POST['delete'];
5645                        }
5646
5647                        for ($i=0; $i<count($control_data['part']); $i++)
5648                        {
5649                                $id = $control_data['part'][$i];
5650                                list($contact) = $this->read_contact($id);
5651
5652                                $participant[$id] = array();
5653                                $participant[$id]['name'] = $contact['n_given'].' '.$contact['n_family'];
5654                        }
5655
5656                        if ($control_data['action'] == lang('Delete selected contacts'))
5657                        {
5658                                for ($i=0; $i<count($control_data['delete']); $i++)
5659                                {
5660                                        $id = $control_data['delete'][$i];
5661                                        unset($participant[$id]);
5662                                }
5663                        }
5664
5665                        if ($control_data['action'] == lang('Add Contact'))
5666                        {
5667                                $id = $_POST['id_addr'];
5668                                if (isset($id) && (int)$id != 0)
5669                                {
5670                                        list($contact) = $this->read_contact($id);
5671                                        $participant[$id] = array();
5672                                        $participant[$id]['name'] = $contact['n_given'].' '.$contact['n_family'];
5673                                }
5674                        }
5675
5676                        // create list of currently selected contacts
5677                        //
5678                        while(list($id,$contact) = each($participant))
5679                        {
5680                                $p->set_var('hidden_delete_name','participant[]');
5681                                $p->set_var('hidden_delete_value',$id);
5682                                $p->set_var('ckbox_delete_name','delete[]');
5683                                $p->set_var('ckbox_delete_value',$id);
5684                                $p->set_var('ckbox_delete_participant',$contact['name']);
5685                                $p->parse('V_partlist','B_partlist',True);
5686                                $total_contacts++;
5687                        }
5688
5689                        if ($total_contacts == 0)
5690                        {
5691                                // no contacts have been selected
5692                                // => clear the delete form, remove delete button and show the none block
5693                                //
5694                                $p->set_var('V_partlist','');
5695                                $p->set_var('V_delete_btn','');
5696                                $p->set_var('text_none',lang('None'));
5697                                $p->parse('V_participants_none','B_participants_none');
5698                        }
5699                        else
5700                        {
5701                                // at least one contact has been selected
5702                                // => clear the none block, fill the delete form and add delete button
5703                                //
5704                                $p->set_var('V_participants_none','');
5705                                $p->set_var('btn_delete_name','action');
5706                                $p->set_var('btn_delete_value',lang('Delete selected contacts'));
5707                                $p->parse('V_delete_btn','B_delete_btn');
5708                        }
5709
5710                        $body_tags  = 'bgcolor="'.$GLOBALS['phpgw_info']['theme']['bg_color']
5711                                                        . '" alink="'.$GLOBALS['phpgw_info']['theme']['alink']
5712                                                        . '" link="'.$GLOBALS['phpgw_info']['theme']['link']
5713                                                        .'" vlink="'.$GLOBALS['phpgw_info']['theme']['vlink'].'"';
5714
5715                        $form_action = $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 'calendar.uicalendar.modify'));
5716
5717                        $charset = lang('charset');
5718                        $p->set_var('charset',$charset);
5719                        $p->set_var('page_title',$GLOBALS['phpgw_flags']['currentapp']
5720                                . ' - ' .lang('External Participants'));
5721                        $p->set_var('font_family',$GLOBALS['phpgw_info']['theme']['font']);
5722                        $p->set_var('body_tags',$body_tags);
5723                        $p->set_var('form_method','POST');
5724                        $p->set_var('form_action',$form_action);
5725                        $p->set_var('text_add_contact',lang('External Participants'));
5726                        $p->set_var('text_contacts_selected',lang('Selected contacts (%1)',$total_contacts));
5727                        $p->set_var('btn_add_name','action');
5728                        $p->set_var('btn_add_value',lang('Add Contact'));
5729                        $p->set_var('btn_done_name','done');
5730                        $p->set_var('btn_done_value',lang('Done'));
5731                        $p->set_var('btn_done_js','copyback()');
5732                        $p->set_var('form1_name','ext_form');
5733
5734                        $p->pfp('out','T_edit_partlist');
5735                }
5736
5737                function read_contact($id)
5738                {
5739                        $query_fields = Array(
5740                                'n_given' => 'n_given',
5741                                'n_family' => 'n_family',
5742                                'email' => 'email',
5743                                'email_home' => 'email_home'
5744                        );
5745
5746                        /*
5747                        if ($this->rights & PHPGW_ACL_READ)
5748                        {
5749                                return $this->contacts->read_single_entry($id,$fields);
5750                        }
5751                        else
5752                        {
5753                                $rtrn = array(0 => array('No access' => 'No access'));
5754                                return $rtrn;
5755                        }
5756                        */
5757
5758                        $contacts = CreateObject('phpgwapi.contacts', False);
5759                        return $contacts->read_single_entry($id,$query_fields);
5760                }
5761
5762                function build_part_list(&$users,$accounts,$owner)
5763                {
5764                        if(!is_array($accounts))
5765                        {
5766                                return;
5767                        }
5768                        foreach($accounts as $id)
5769                        {
5770                                $id = (int)$id;
5771                                if($id == $owner)
5772                                {
5773                                        continue;
5774                                }
5775                                elseif(!isset($users[$id]))
5776                                {
5777                                        if($GLOBALS['phpgw']->accounts->exists($id) == True)
5778                                        {
5779                                                $users[$id] = Array(
5780                                                        'name'  => $GLOBALS['phpgw']->common->grab_owner_name($id),
5781                                                        'type'  => $GLOBALS['phpgw']->accounts->get_type($id)
5782                                                );
5783                                        }
5784                                        if($GLOBALS['phpgw']->accounts->get_type($id) == 'g')
5785                                        {
5786                                                //$this->build_part_list($users,$GLOBALS['phpgw']->acl->get_ids_for_location($id,1,'phpgw_group'),$owner);
5787                                        }
5788                                }
5789                        }
5790                        if (!function_exists('strcmp_name'))
5791                        {
5792                                function strcmp_name($arr1,$arr2)
5793                                {
5794                                        if ($diff = strcmp($arr1['type'],$arr2['type']))
5795                                        {
5796                                                return $diff;   // groups before users
5797                                        }
5798                                        return strnatcasecmp($arr1['name'],$arr2['name']);
5799                                }
5800                        }
5801                        uasort($users,'strcmp_name');
5802                }
5803
5804                function set_week_array($startdate,$cellcolor,$weekly)
5805                {
5806                        $data = date("m");
5807                        for ($j=0,$datetime=$startdate;$j<7;$j++,$datetime += 86400)
5808                        {
5809                                $date = date('Ymd',$datetime + (60 * 60 * 2)); // +2h to be save when switching to and from dst, $datetime is alreay + TZ-Offset
5810                                print_debug('set_week_array : Date ',$date);
5811
5812                                if($events = $this->bo->cached_events[$date])
5813                                {
5814                                        print_debug('Date',$date);
5815                                        print_debug('Appointments Found',count($events));
5816
5817                                        if (!$this->bo->prefs['calendar']['show_rejected'])
5818                                        {
5819                                                $appts = False;
5820                                                foreach($events as $event)      // check for a not-rejected event
5821                                                {
5822                                                        if (!$this->bo->rejected_no_show($event))
5823                                                        {
5824                                                                $appts = True;
5825                                                                break;
5826                                                        }
5827                                                }
5828                                        }
5829                                        else
5830                                        {
5831                                                $appts = True;
5832                                        }
5833                                }
5834                                else
5835                                {
5836                                        $appts = False;
5837                                }
5838                                $holidays = $this->bo->cached_holidays[$date];
5839                                if($weekly)
5840                                {
5841                                        $cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
5842                                }
5843
5844                                $day_image = '';
5845                                if($holidays)
5846                                {
5847                                        $extra = ' bgcolor="'.$this->bo->holiday_color.'"';
5848                                        $class = ($appts?'b':'').'minicalhol';
5849                                        if ($date == $this->bo->today)
5850                                        {
5851                                                $day_image = ' background="'.$GLOBALS['phpgw']->common->image('calendar','mini_day_block').'"';
5852                                        }
5853                                }
5854                                elseif ($date != $this->bo->today)
5855                                {
5856                                        $extra = ' bgcolor="'.$cellcolor.'"';
5857                                        $class = ($appts?'b':'').'minicalendar';
5858                                }
5859                                else
5860                                {
5861                                        $extra = ' bgcolor="'.$GLOBALS['phpgw_info']['theme']['cal_today'].'"';
5862                                        $class = ($appts?'b':'').'minicalendar';
5863                                        $day_image = ' background="'.$GLOBALS['phpgw']->common->image('calendar','mini_day_block').'"';
5864                                }
5865
5866                                if($this->bo->printer_friendly && @$this->bo->prefs['calendar']['print_black_white'])
5867                                {
5868                                        $extra = '';
5869                                }
5870
5871                                if(!$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_ADD))
5872                                {
5873                                        $new_event = True;
5874                                }
5875                                else
5876                                {
5877                                        $new_event = False;
5878                                }
5879                                $holiday_name = Array();
5880                                if($holidays)
5881                                {
5882                                        for($k=0;$k<count($holidays);$k++)
5883                                        {
5884                                                $holiday_name[] = $holidays[$k]['name'];
5885                                        }
5886                                }
5887                                $week = '';
5888                                if (!$j || (!$weekly && $j && substr($date,6,2) == '01'))
5889                                {
5890                                        $week = lang('week').' '.(int)((date('z',($startdate+(24*3600*4)))+7)/7);
5891                                }
5892                                $daily[$date] = Array(
5893                                        'extra'         => $extra,
5894                                        'new_event'     => $new_event,
5895                                        'holidays'      => $holiday_name,
5896                                        'appts'         => $appts,
5897                                        'week'          => $week,
5898                                        'day_image'     => $day_image,
5899                                        'class'         => $class
5900                                );
5901                        }
5902
5903                        if($this->debug)
5904                        {
5905                                _debug_array($daily);
5906                        }
5907
5908                        return $daily;
5909                }
5910               
5911                function get_organizations($context, $selected='', $recursive = false)
5912                {
5913                        $s = CreateObject('phpgwapi.sector_search_ldap');
5914                                               
5915                        return ($recursive ?
5916                                $s->get_organizations($context, $selected, false ,false) :
5917                                $s->get_sectors($selected, false, false));
5918                }               
5919        }
5920?>
Note: See TracBrowser for help on using the repository browser.