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

Revision 3976, 194.9 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1607 - Incluir um campo Observações na Agenda

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