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

Revision 4074, 193.5 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #1741 - Adição do dia da semana na visão diária

  • 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                        $week_days = array(lang('Sunday'),
1771                                                                lang('Monday'),
1772                                                                lang('Tuesday'),
1773                                                                lang('Wednesday'),
1774                                                                lang('Thrusday'),
1775                                                                lang('Friday'),
1776                                                                lang('Saturday'));
1777                       
1778       
1779                        $p = $GLOBALS['phpgw']->template;
1780                        $p->set_file(
1781                                Array(
1782                                        'day_t' => 'day.tpl'
1783                                )
1784                        );
1785                        $p->set_block('day_t','day','day');
1786                        $p->set_block('day_t','day_event','day_event');
1787
1788                        $todos = $this->get_todos($todo_label);
1789                        $var = Array(
1790                                'printer_friendly'      => $printer,
1791                                'bg_text'                       => $this->theme['bg_text'],
1792                                'daily_events'          => $this->print_day(
1793                                        Array(
1794                                                'year'  => $this->bo->year,
1795                                                'month' => $this->bo->month,
1796                                                'day'   => $this->bo->day
1797                                        )
1798                                ),
1799                                'small_calendar'        => $minical,
1800                                'date'                          => $this->bo->long_date($now),
1801                                'day_of_week'           => $week_days[$now['dow']],
1802                                'username'                      => $GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner),
1803                                'prev_day_link'         => $prev_day_link,
1804                                'next_day_link'         => $next_day_link,
1805                                'print'                         => $print,
1806                                'lang_todos'            => $todo_label,
1807                                'todos'                         => $this->bo->printer_friendly ? $todos :
1808
1809                                        //NDEE: todo's layout
1810                                        "<div style=\"overflow: auto; max-height: 200px\">\n$todos</div>\n"
1811                        );
1812
1813                        $p->set_var($var);
1814                        $p->parse('day_events','day_event');
1815                        print $this->printer_friendly($p->fp('out','day'),lang('Dayview'));
1816                        $GLOBALS['phpgw']->common->phpgw_footer();
1817                }
1818
1819                function get_todos(&$todo_label)
1820                {
1821                        $todos_from_hook = $GLOBALS['phpgw']->hooks->process(array(
1822                                'location'  => 'calendar_include_todos',
1823                                'year'      => $this->bo->year,
1824                                'month'     => $this->bo->month,
1825                                'day'       => $this->bo->day,
1826                                'owner'     => $this->bo->owner // num. id of the user, not necessary current user
1827                        ));
1828
1829                        if(is_array($todo_label))
1830                        {
1831                                list($label,$showall)=$todo_label;
1832                        }
1833                        else
1834                        {
1835                                $label=$todo_label;
1836                                $showall=true;
1837                        }
1838                        $maxshow = (int)$GLOBALS['phpgw_info']['user']['preferences']['infolog']['mainscreen_maxshow'];
1839                        if($maxshow<=0)
1840                        {
1841                                $maxshow=10;
1842                        }
1843                        //print_debug("get_todos(): label=$label; showall=$showall; max=$maxshow");
1844
1845                        $content = $todo_label = '';
1846                        if (is_array($todos_from_hook) && count($todos_from_hook))
1847                        {
1848                                $todo_label = !empty($label)?$label:lang("open ToDo's:");
1849
1850                                foreach($todos_from_hook as $todos)
1851                                {
1852                                        $i = 0;
1853                                        if (is_array($todos) && count($todos))
1854                                        {
1855                                                foreach($todos as $todo)
1856                                                {
1857                                                        if(!$showall && ($i++>$maxshow))
1858                                                        {
1859                                                                break;
1860                                                        }
1861                                                        $icons = '';
1862                                                        foreach($todo['icons'] as $name => $app)
1863                                                        {
1864                                                                $icons .= ($icons?' ':'').$GLOBALS['phpgw']->html->image($app,$name,lang($name),'border="0" width="15" height="15"');
1865                                                        }
1866                                                        $class = $class == 'row_on' ? 'row_off' : 'row_on';
1867
1868//NDEE <tr starts here
1869                                                        $content .= " <tr id=\"debug\" class=\"$class\">\n  <td valign=\"top\" width=\"15%\"nowrap>".
1870                                                                ($this->bo->printer_friendly?$icons:$GLOBALS['phpgw']->html->a_href($icons,$todo['view'])).
1871                                                                "</td>\n  <td>".($this->bo->printer_friendly?$todo['title']:
1872                                                                $GLOBALS['phpgw']->html->a_href($todo['title'],$todo['view']))."</td>\n </tr>\n";
1873                                                }
1874                                        }
1875                                }
1876                        }
1877                        if (!empty($content))
1878                        {
1879                                return "<table border=\"0\" width=\"100%\">\n$content</table>\n";
1880                        }
1881                        return False;
1882                }
1883
1884                function edit_status()
1885                {
1886                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
1887                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
1888                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
1889                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
1890                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Change Status');
1891                        $GLOBALS['phpgw']->common->phpgw_header();
1892
1893                        $event = $this->bo->read_entry($_GET['cal_id']);
1894
1895                        reset($event['participants']);
1896
1897                        if(!$event['participants'][$this->bo->owner])
1898                        {
1899                                echo '<center>'.lang('The user %1 is not participating in this event!',$GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner)).'</center>';
1900                                return;
1901                        }
1902
1903                        if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
1904                        {
1905                                $this->no_edit();
1906                                return;
1907                        }
1908
1909                        $freetime = $GLOBALS['phpgw']->datetime->localdates(mktime(0,0,0,$event['start']['month'],$event['start']['mday'],$event['start']['year']) - $GLOBALS['phpgw']->datetime->tz_offset);
1910                        echo $this->timematrix(
1911                                Array(
1912                                        'date'          => $freetime,
1913                                        'starttime'     => $this->bo->splittime('000000',False),
1914                                        'endtime'       => 0,
1915                                        'participants'  => $event['participants']
1916                                )
1917                        ).'<br>';
1918
1919                        $event = $this->bo->read_entry($_GET['cal_id']);
1920                        $this->view_event($event);
1921                        $GLOBALS['phpgw']->template->pfp('phpgw_body','view_event');
1922
1923                        echo $this->get_response($event['id']);
1924                }
1925               
1926                function confirm_action($duplicated_action)
1927                {
1928                                if($_GET['response'] == 1)
1929                                {
1930                                        if(!$duplicated_action)
1931                                                $notify_message = lang('The commitment was accepted successfully!');
1932                                        else
1933                                                $notify_message = lang('This commitment has already been accepted!');
1934                                }       
1935                                else
1936                                {                                       
1937                                        if(!$duplicated_action)                                         
1938                                                $notify_message = lang('The commitment was rejected successfully!');
1939                                        else
1940                                                $notify_message = lang('This commitment has already been rejected!');
1941                                }
1942                               
1943                                $body1 = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
1944                                $body1->set_file(Array('calendar' => 'confirm.tpl'));
1945                                $body1->set_block('calendar','list');
1946                                $var = Array( 'notify_message'  => $notify_message);
1947                                $body1->set_var($var);
1948                                $tmpbody1 = $body1->pfp('out','list');
1949                }
1950               
1951                function confirm_conflict($user_id,$event,$overlapping_events)
1952                {
1953                        if(!$overlapping_events){                                       
1954                                $notify_message = lang('This event conflicts with your other event.');
1955       
1956                                $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));
1957                                $action_reject = $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 0, 'response' => 0));
1958       
1959                                $body1 = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
1960                                $body1->set_file(Array('calendar' => 'conflict.tpl'));
1961                                $body1->set_block('calendar','list');
1962                                $var = Array( 'notify_message'  => $notify_message,
1963                                                        'action_url' => $action_url,
1964                                                        'ignore_conflict' => 'Ignorar Conflito',
1965                                                        'reject_event' => 'Rejeitar Evento',
1966                                                        'action_reject' => $action_reject,
1967                                                        'action_ignore' => $action_ignore);
1968                                $body1->set_var($var);
1969                                $tmpbody1 = $body1->pfp('out','list');
1970                        }
1971                        else
1972                        {                               
1973                                $month = $event['start']['month'];
1974                                $mday = $event['start']['mday'];
1975                                $year = $event['start']['year'];
1976       
1977                                $start = mktime($event['start']['hour'],$event['start']['min'],$event['start']['sec'],$month,$mday,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
1978                                $end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
1979       
1980                                $overlap = '';
1981                                for($i=0;$i<count($overlapping_events);$i++)
1982                                {
1983                                        $overlapped_event = $this->bo->read_entry($overlapping_events[$i],True);
1984                                        foreach($overlapped_event['participants'] as $id => $status)
1985                                        {
1986                                                $conflict = isset($event['participants'][$user_id]);
1987                                                $overlap .= '<li>'.($conflict?'<b>':'').
1988                                                        $GLOBALS['phpgw']->common->grab_owner_name($id).
1989                                                        ($conflict?'</b> - '.lang('Scheduling conflict'):'')."</li>";
1990                                        }
1991                                 if ($this->bo->prefs['calendar']['hide_event_conflict'])
1992                                         $overlap .= '<ul><font size="1"><span>'.
1993                                                 $this->normDec($overlapped_event['start']['hour']).":".
1994                                                 $this->normDec($overlapped_event['start']['min'])."-".
1995                                                 $this->normDec($overlapped_event['end']['hour']).":".
1996                                                 $this->normDec($overlapped_event['end']['min']).
1997                                                 '<br><b>'.lang('title').": ".lang("Hidden").
1998                                                 '</b><br>'.lang('description').": ".lang("Hidden").'<br></span></ul><br>';
1999                                 else
2000                                         $overlap .= '<ul>'.$this->link_to_entry($overlapped_event,$month,$mday,$year)."</ul><br>";     
2001                                }
2002       
2003                                unset($GLOBALS['phpgw_info']['flags']['noheader']);
2004                                unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2005                                $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
2006                                $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
2007                                $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Scheduling Conflict');
2008                                $GLOBALS['phpgw']->common->phpgw_header();
2009       
2010                                $p = $GLOBALS['phpgw']->template;
2011                                $p->set_file(
2012                                        Array(
2013                                                'overlap'       => 'overlap.tpl',
2014                                                'form_button'   => 'form_button_script.tpl'
2015                                        )
2016                                );
2017       
2018                                $var = Array(
2019                                        'color'         => $this->theme['bg_text'],
2020                                        'overlap_title' => lang('Scheduling Conflict'),
2021                                        '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)),
2022                                        'overlap_list'  => $overlap
2023                                );
2024                                $p->set_var($var);
2025       
2026                                $date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->mday);
2027                                $var = Array(
2028                                        '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)),
2029                                        'action_text_button'    => lang('Ignore Conflict'),
2030                                        'action_confirm_button' => '',
2031                                        'action_extra_field'    => '',
2032                                        'button_id'             => 'ignore_button'
2033                                );                             
2034                                $action_reject = $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 0, 'response' => 0));
2035       
2036                                $this->output_template_array($p,'resubmit_button','form_button',$var);
2037       
2038                                $var = Array(
2039                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.set_action','cal_id' => $event[id], 'action' => 0)),
2040                                        'action_text_button'    => lang('Reject'),
2041                                        'action_confirm_button' => '',
2042                                        'action_extra_field'    => '',
2043                                        'button_id'             => 'redit_button'
2044                                );
2045                                $this->output_template_array($p,'reedit_button','form_button',$var);
2046                                $p->pparse('out','overlap');
2047                        }
2048                }
2049               
2050                function set_action()
2051                {
2052                        if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
2053                        {
2054                                $this->no_edit();
2055                                return;
2056                        }
2057                       
2058                        $overlapping_events = false;
2059                        $event = $this->bo->read_entry((int)$_GET['cal_id']);
2060                        if((!$_GET['response'] == 0 && !$_GET['ignore_conflict'] == 1) ||
2061                                (!isset($_GET['response']) && $_GET['action'] == 3 && !$_GET['ignore_conflict'] == 1))
2062                        {
2063                                if($event['id'])
2064                                {
2065                                        $event_ids[] = $event['id'];
2066                                }
2067                                if($event['reference'])
2068                                {
2069                                        $event_ids[] = $event['reference'];
2070                                }
2071                               
2072                                $event['participants'] = Array($_SESSION['phpgw_info']['expressomail']['user']['account_id'] => $event['participants'][$_SESSION['phpgw_info']['expressomail']['user']['account_id']]);
2073
2074                                $overlapping_events = $this->bo->overlap(
2075                                        $this->bo->maketime($event['start']),
2076                                        $this->bo->maketime($event['end']),
2077                                        $event['participants'],
2078                                        $event['owner'],
2079                                        $event_ids
2080                                );
2081                        }
2082
2083                        if(isset($_GET['response']))
2084                        {
2085                                if($overlapping_events)
2086                                {
2087                                        $this->confirm_conflict($_GET['user_id'],$event);
2088                                }else
2089                                {
2090                                        $confirm_status = $this->bo->set_status((int)$_GET['cal_id'],(int)$_GET['action']);
2091                                        $this->confirm_action($confirm_status);
2092                                        $GLOBALS['phpgw']->common->phpgw_exit(False);
2093                                }
2094                        }else
2095                        {
2096                                if($overlapping_events)
2097                                {                                       
2098                                        $this->confirm_conflict($_GET['user_id'],$event,$overlapping_events);
2099                                }else
2100                                {
2101                                $confirm_status = $this->bo->set_status((int)$_GET['cal_id'],(int)$_GET['action']);
2102                                        if ($this->bo->return_to)
2103                                        {
2104                                                Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to));
2105                                        }
2106                                        else
2107                                        {
2108                                                Header('Location: '.$this->page('',''));
2109                                        }
2110                                        $GLOBALS['phpgw']->common->phpgw_exit();
2111                                }
2112                        }
2113                       
2114                       
2115                }
2116                function planner()
2117                {
2118                        if(floor(phpversion()) < 4)
2119                        {
2120                                return;
2121                        }
2122                        $home = strstr($_SERVER['PHP_SELF'],'home') !== False;
2123                        // generate header and set global/member variables
2124                        //
2125                        $this->planner_prepare($home);
2126
2127                        // process events within selected interval
2128                        //
2129                        $this->planner_process_interval();
2130
2131                        // generate the planner view
2132                        //
2133                        if (!$home)
2134                        {
2135                                echo '<p>'.$this->planner_print_rows();
2136                        }
2137                        else
2138                        {
2139                                return $this->planner_print_rows();
2140                        }
2141                }
2142
2143                function set_planner_group_members()
2144                {
2145                        $type = $GLOBALS['phpgw']->accounts->get_type($this->bo->owner);
2146
2147                        if ($type == 'g') // display schedule of all group members
2148                        {
2149                                $members = array();
2150                                $ids = $GLOBALS['phpgw']->acl->get_ids_for_location($this->bo->owner, 1, 'phpgw_group');
2151                                while (list(,$id) = each($ids))
2152                                {
2153                                        if ($this->bo->check_perms(PHPGW_ACL_READ,0,$id))
2154                                        {
2155                                                $members[$GLOBALS['phpgw']->common->grab_owner_name($id)] = $id;
2156                                        }
2157                                }
2158                                ksort($members);
2159                                $this->planner_group_members = $members;
2160                        }
2161                        else
2162                        {
2163                                $this->planner_group_members = array(
2164                                        $GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner) => $this->bo->owner
2165                                );
2166                        }
2167                }
2168
2169                /**
2170                 * planner_prepare - prepare the planner view
2171                 *
2172                 * - sets global environment variables
2173                 * - initializes class member variables used in multiple planner related functions
2174                 * - generates header lines for the planner view (month, calendar week, days)
2175                 */
2176                function planner_prepare($no_header = False)
2177                {
2178                        // set some globals
2179                        //
2180                        if (!$no_header)
2181                        {
2182                                unset($GLOBALS['phpgw_info']['flags']['noheader']);
2183                                unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2184                                if ($this->always_app_header) $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Group Planner');
2185                                $GLOBALS['phpgw']->common->phpgw_header();
2186                        }
2187
2188                        // intervals_per_day can be configured in preferences now :-)
2189                        //
2190                        if (! $this->bo->prefs['calendar']['planner_intervals_per_day'])
2191                        {
2192                                $GLOBALS['phpgw']->preferences->add('calendar','planner_intervals_per_day',3);
2193                                $GLOBALS['phpgw']->preferences->save_repository();
2194                                $this->bo->prefs['calendar']['planner_intervals_per_day'] = 3;
2195                        }
2196                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2197                        $this->bo->save_sessiondata();  // need to save $this->bo->save_owner
2198
2199                        // set title for table and rows of planner view
2200                        //
2201                        if ($this->bo->sortby == 'category')
2202                        {
2203                                $title = lang('Category');
2204                        }
2205                        else
2206                        {
2207                                $title = lang('User');
2208
2209                                $this->set_planner_group_members();
2210                        }
2211
2212                        // create/initialize variables directly used for HTML code generation
2213                        //
2214                        $this->planner_header = array();
2215                        $this->planner_rows   = array();
2216
2217                        // generate header lines with days and associated months
2218                        //
2219                        $hdr = &$this->planner_header;
2220                        $hdr[0]['0']  = $title;
2221                        $hdr[0]['.0'] = 'rowspan="3"';
2222
2223                        $this->planner_days = 0; // reset
2224
2225                        $m = $this->bo->month;
2226                        $y = $this->bo->year;
2227                        $this->bo->read_holidays($y);
2228                        for ($i=1; $i<=$this->bo->num_months; $i++,$m++)
2229                        {
2230                                if ($m == 13)
2231                                {
2232                                        $m = 1; $y++; // "wrap-around" into new year
2233                                        $this->bo->read_holidays($y);
2234                                }
2235                                $days = $GLOBALS['phpgw']->datetime->days_in_month($m,$y);
2236
2237                                $d     = mktime(0,0,0,$m,1,$y);
2238                                $month = lang(date('F', $d)).strftime(' %Y', $d);
2239                                $color = $this->theme[$m % 2 || $this->bo->num_months == 1 ? 'th_bg' : 'row_on'];
2240                                $cols  = $days * $intervals_per_day;
2241
2242                                $hdr[0]['.'.$i] = 'bgcolor="'.$color.'" colspan="'.$cols.'" align="center"';
2243                                $prev_month = sprintf('%04d%02d01',$y-($m==1),$m > 1?$m-1:12);
2244                                $next_month = sprintf('%04d%02d01',$y+($m==12),$m < 12?$m+1:1);
2245                                $prev_link = $GLOBALS['phpgw']->link('/index.php',"menuaction=calendar.uicalendar.planner&date=$prev_month");
2246                                $next_link = $GLOBALS['phpgw']->link('/index.php',"menuaction=calendar.uicalendar.planner&date=$next_month");
2247                                $hdr[0][$i] = "<b><a href=\"$prev_link\">&lt;&lt;</a> &nbsp $month &nbsp <a href=\"$next_link\">&gt;&gt;</a></b>";
2248
2249                                $add_owner = array();   // if no add-rights on the showed cal use own cal
2250                                if (!$this->bo->save_owner && !$this->bo->check_perms(PHPGW_ACL_ADD) ||
2251                                        !$this->bo->check_perms(PHPGW_ACL_ADD,0,$this->bo->save_owner))
2252                                {
2253                                        $add_owner = array(
2254                                                'owner' => $GLOBALS['phpgw_info']['user']['account_id']
2255                                        );
2256                                }
2257                                for ($d=1; $d<=$days; $d++)
2258                                {
2259                                        $dayname = substr(lang(date('D',mktime(0,0,0,$m,$d,$y))),0,2);
2260                                        $index = $d + $this->planner_days;
2261
2262                                        $hdr[2]['.'.$index] = 'colspan="'.$intervals_per_day.'" align="center"';
2263
2264                                        // highlight today, saturday, sunday and holidays
2265                                        //
2266                                        $color = $this->theme['row_off'];
2267                                        $dow = $GLOBALS['phpgw']->datetime->day_of_week($y,$m,$d);
2268                                        $date = sprintf("%04d%02d%02d",$y,$m,$d);
2269                                        if ($date == date('Ymd'))
2270                                        {
2271                                                $color = $GLOBALS['phpgw_info']['theme']['cal_today'];
2272                                        }
2273                                        elseif ($this->bo->cached_holidays[$date])
2274                                        {
2275                                                $color = $this->bo->holiday_color;
2276                                                $hdr[2]['.'.$index] .= ' title="'.$this->bo->cached_holidays[$date][0]['name'].'"';
2277                                        }
2278                                        elseif ($dow == 0 || $dow == 6)
2279                                        {
2280                                                $color = $this->bo->theme['th_bg'];
2281                                        }
2282
2283                                        $hdr[2]['.'.$index] .= " bgcolor=\"$color\"";
2284
2285                                        $hdr[2][$index] = '<a href="'.$this->html->link('/index.php',
2286                                                                array(
2287                                                                        'menuaction' => 'calendar.uicalendar.add',
2288                                                                        'date' => $date
2289                                                                ) + $add_owner
2290                                                        ).'">'.$dayname.'<br>'.$d.'</a>';
2291                                }
2292                                $this->planner_days += $days;
2293                        }
2294
2295                        // create/initialize member variables describing the time interval to be displayed
2296                        //
2297                        $this->planner_end_month = $m - 1;
2298                        $this->planner_end_year  = $y;
2299                        $this->planner_days_in_end_month = $GLOBALS['phpgw']->datetime->days_in_month($this->planner_end_month,$this->planner_end_year);
2300                        $this->planner_firstday = (int)(date('Ymd',mktime(0,0,0,$this->bo->month,1,$this->bo->year)));
2301                        $this->planner_lastday  = (int)(date('Ymd',mktime(0,0,0,$this->planner_end_month,$this->planner_days_in_end_month,$this->planner_end_year)));
2302
2303                        // generate line with calendar weeks in observed interval
2304                        //
2305                        $d      = mktime(0,0,0,$this->bo->month,1,$this->bo->year);
2306                        $w      = date('W', $d);
2307                        if ($w == 'W')  // php < 4.1
2308                        {
2309                                $w = 1 + (int)(date('z',$d) / 7);       // a bit simplistic
2310                        }
2311                        $offset = (7-date('w', $d)+1)%7;
2312                        $offset = $offset == 0 ? 7 : $offset;
2313                        $color = $this->theme[$w % 2 ? 'th_bg' : 'row_on'];
2314
2315                        $hdr[1]['.'.$w] = 'bgcolor="'.$color.'" colspan="'.$intervals_per_day * $offset.'" align="left"';
2316                        $hdr[1][$w] = '';
2317                        if ($offset >= 3)
2318                        {
2319
2320//NDEE: style! (groupplanner)
2321                                $hdr[1][$w] .= '<font size="-2"> '.lang('week').' '.$w.' </font>';
2322                        }
2323                        $days_left = $this->planner_days - $offset;
2324
2325                        $colspan = 7 * $intervals_per_day;
2326                        while ($days_left > 0)
2327                        {
2328                                $colspan = ($days_left < 7) ? $days_left*$intervals_per_day : $colspan;
2329                                $d += 604800; // 7 days whith 24 hours (1h == 3600 seconds) each
2330                                $w = date('W', $d);
2331                                if ($w == 'W')  // php < 4.1
2332                                {
2333                                        $w = 1 + (int)(date('z',$d) / 7);       // a bit simplistic
2334                                }
2335                                $w += (isset($hdr[1][$w]))?1:0; // bug in "date('W')" ?
2336
2337                                $color = $this->theme[$w % 2 ? 'th_bg' : 'row_on'];
2338                                $hdr[1]['.'.$w] = 'bgcolor="'.$color.'" colspan="'.$colspan.'" align="left"';
2339                                $hdr[1][$w] = '';
2340                                if ($days_left >= 3)
2341                                {
2342
2343//NDEE: style! (groupplanner)
2344                                        $hdr[1][$w] .= '<font size="-2"> '.lang('week').' '.$w.' </font>';
2345                                }
2346
2347                                $days_left -= 7;
2348                        }
2349                        return $hdr;
2350                }
2351
2352                /**
2353                 * planner_update_row - update a row of the planner view
2354                 *
2355                 * parameters are:
2356                 *   - index (e.g. user id, category id, ...) of the row
2357                 *   - name/title of the row (e.g. user name, category name)
2358                 *   - the event to be integrated
2359                 *   - list of categories associated with the event
2360                 *   - first and last cell of the row
2361                 */
2362                function planner_update_row($index,$name,$event,$cat,$start_cell,$end_cell)
2363                {
2364                        $rows              = &$this->planner_rows;
2365                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2366                        $is_private        = !$this->bo->check_perms(PHPGW_ACL_READ,$event);
2367
2368                        $view = $this->html->link('/index.php',
2369                                array(
2370                                        'menuaction' => 'calendar.uicalendar.view',
2371                                        'cal_id' => $event['id'],
2372                                        'date' => date('Ymd',$this->bo->maketime($event['start']))
2373                                )
2374                        );
2375
2376                        // check how many lines are needed for this "row" (currently: user or category)
2377                        $i = 0;
2378                        do {
2379                                ++$i;
2380
2381                                $k = $index.'_'.$i;
2382                                $ka = '.nr_'.$k;
2383
2384                                if (!isset($rows[$k]))
2385                                {
2386                                        if ($i > 1)                             // further line - no name
2387                                        {
2388                                                $rows[$k] = array();
2389                                                $rows[$index.'_1']['._name'] = 'rowspan="'.$i.'"';
2390                                        }
2391                                        else
2392                                        {
2393                                                $rows[$k]['_name'] = $name;
2394                                        }
2395                                        $rows[$ka] = 0;
2396                                }
2397                                $rows[$index.'_1']['._name'] .= ' nowrap'; // title must be one row
2398
2399                                $row = &$rows[$k];
2400                                $akt_cell = &$rows[$ka];
2401                        } while ($akt_cell > $start_cell);
2402
2403                        $id = $event['id'].'-'.date('Ymd',$this->bo->maketime($event['start']));
2404                        if ($akt_cell < $start_cell)
2405                        {
2406                                $row[$id.'_1'] = '&nbsp;';
2407                                $row['.'.$id.'_1'] = 'colspan="'.($start_cell-$akt_cell).'"';
2408                        }
2409                        $opt = &$row['.'.$id.'_2'];
2410                        $cel = &$row[$id.'_2'];
2411
2412                        // if possible, display information about event within cells representing it
2413                        //
2414                        if ($start_cell < $end_cell)
2415                        {
2416                                $colspan = $end_cell - $start_cell;
2417                                $opt .= "colspan=".(1 + $colspan);
2418
2419                                if (!$is_private)
2420                                {
2421                                        $max_chars = (int)(3*$colspan/$intervals_per_day-2);
2422
2423                                        $min_chars = 3; // minimum for max_chars to display -> this should be configurable
2424                                        if ($max_chars >= $min_chars)
2425                                        {
2426                                                $len_title = strlen($event['title']);
2427
2428                                                if ($len_title <= $max_chars)
2429                                                {
2430                                                        $title = $event['title'];
2431                                                        $max_chars -= $len_title + 3; // 3 chars for separator: " - "
2432                                                        $len_descr = strlen($event['description']);
2433
2434                                                        if ($len_descr > 0 && $len_descr <= $max_chars)
2435                                                        {
2436                                                                $event['print_description'] = 'yes';
2437                                                        }
2438                                                }
2439                                                else
2440                                                {
2441                                                        $has_amp = strpos($event['title'],'&amp;');
2442                                                       
2443//NDEE: event title gets cut here                                                       
2444                                                        $title = substr($event['title'], 0 , $max_chars-1+($has_amp!==False&&$has_amp<$max_chars?4:0)).'...';
2445                                                }
2446                                                $event['print_title'] = 'yes';
2447                                        }
2448                                }
2449                        }
2450
2451                        if ($bgcolor=$cat['color'])
2452                        {
2453                                $opt .= ' bgcolor="'.$bgcolor.'"';
2454                        }
2455                        if (!$is_private)
2456                        {
2457                                $opt .= ' title="'.lang('Title').": ".$event['title'];
2458                                if ($event['description'])
2459                                {
2460                                        $opt .= "\n".lang('Description').": ".$event['description'];
2461                                }
2462                        }
2463                        else
2464                        {
2465                                $opt .= ' title="'.lang('You do not have permission to read this record!');
2466                        }
2467
2468                        $start = $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset);
2469                        $end = $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset);
2470                        $opt .= "\n".lang('Start Date/Time').": ".$start."\n".lang('End Date/Time').": ".$end;
2471
2472                        if ($event['location'] && !$is_private)
2473                        {
2474                                $opt .= " \n".lang('Location').": ".$event['location'];
2475                        }
2476
2477                        if (!$is_private)
2478                        {
2479                                $opt .= '" onClick="location=\''.$view.'\'"';
2480                                $cel = '<a href="'.$view.'">';
2481                        }
2482                        else
2483                        {
2484                                $opt .= '"';
2485                                $cel = '';
2486                        }
2487                        $opt .= ' class="planner-cell"';
2488
2489                        if ($event['priority'] == 3)
2490                        {
2491                                $cel .= $this->html->image('calendar','mini-calendar-bar.gif','','border="0"');
2492                        }
2493                        if ($event['recur_type'])
2494                        {
2495                                $cel .= $this->html->image('calendar','recur.gif','','border="0"');
2496                        }
2497                        $cel .= $this->html->image('calendar',count($event['participants'])>1?'multi_3.gif':'single.gif',$this->planner_participants($event['participants']),'border="0"');
2498                        $cel .= '</a>';
2499
2500                        if (isset($event['print_title']) && $event['print_title'] == 'yes')
2501                        {
2502
2503//NDEE: style! where?
2504                                $cel .= '<font size="-2"> '.$title.' </font>';
2505                        }
2506                        if (isset($event['print_description']) && $event['print_description'] == 'yes')
2507                        {
2508
2509//NDEE: style! where ?
2510                                $cel .= '<font size="-2"> - '.$event['description'].' </font>';
2511                        }
2512
2513                        $akt_cell = $end_cell + 1;
2514
2515                        return $rows;
2516                }
2517
2518                function planner_process_event($event)
2519                {
2520                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2521                        $interval = $this->planner_intervals[$intervals_per_day];
2522                        $last_cell = $intervals_per_day * $this->planner_days - 1;
2523
2524                        $rows = &$this->planner_rows;
2525
2526                        // caluculate start and end of event
2527                        //
2528                        $event_start = (int)(date('Ymd',mktime(
2529                                0,0,0,
2530                                $event['start']['month'],
2531                                $event['start']['mday'],
2532                                $event['start']['year']
2533                        )));
2534                        $event_end   = (int)(date('Ymd',mktime(
2535                                0,0,0,
2536                                $event['end']['month'],
2537                                $event['end']['mday'],
2538                                $event['end']['year']
2539                        )));
2540
2541                        // calculate first cell of event within observed interval
2542                        //
2543                        if ($event_start >= $this->planner_firstday)
2544                        {
2545                                $days_between = $GLOBALS['phpgw']->datetime->days_between($this->bo->month,1,$this->bo->year,$event['start']['month'],$event['start']['mday'],$event['start']['year']);
2546
2547                                $start_cell = $intervals_per_day * $days_between + $interval[$event['start']['hour']];
2548                        }
2549                        else
2550                        {
2551                                $start_cell = 0;
2552                        }
2553
2554                        // calculate last cell of event within observed interval
2555                        //
2556                        if ($event_end <= $this->planner_lastday)
2557                        {
2558                                $days_between = $GLOBALS['phpgw']->datetime->days_between($this->bo->month,1,$this->bo->year,$event['end']['month'],$event['end']['mday'],$event['end']['year']);
2559                                $end_cell = $intervals_per_day * $days_between + $interval[$event['end']['hour']];
2560                                if ($end_cell == $start_cell && $end_cell < $last_cell)
2561                                {
2562                                        $end_cell++;    // min. width 1 interval
2563                                }
2564                        }
2565                        else
2566                        {
2567                                $end_cell = $last_cell;
2568                        }
2569                        // get the categories associated with event
2570                        //
2571                        if ($c = $event['category'])
2572                        {
2573                                list($cat)   = $this->planner_category($event['category']);
2574                                if ($cat['parent'])
2575                                {
2576                                        list($pcat) = $this->planner_category($c = $cat['parent']);
2577                                }
2578                                else
2579                                {
2580                                        $pcat = $cat;
2581                                }
2582                        }
2583                        else
2584                        {
2585                                $cat = $pcat = array( 'name' => lang('none'));
2586                        }
2587
2588                        // add the event to it`s associated row(s)
2589                        //
2590                        if ($this->bo->sortby == 'category')
2591                        {
2592                                // event needs to show up in it`s category`s row
2593                                //
2594                                $this->planner_update_row($c,$pcat['name'],$event,$cat,$start_cell,$end_cell);
2595                        }
2596                        elseif ($this->bo->sortby == 'user')
2597                        {
2598                                // event needs to show up in rows of all participants that are also owners
2599                                //
2600                                reset($this->planner_group_members);
2601                                while(list($user_name,$id) = each($this->planner_group_members))
2602                                {
2603                                        $status = $event['participants'][$id];
2604
2605                                        if (isset($status) && $status != 'R')
2606                                        {
2607                                                $this->planner_update_row($user_name,$user_name,$event,$cat,$start_cell,$end_cell);
2608                                        }
2609                                }
2610                        }
2611                }
2612
2613                function planner_pad_rows()
2614                {
2615                        $rows = &$this->planner_rows;
2616
2617                        if ($this->bo->sortby == 'user')
2618                        {
2619                                // add empty rows for users that do not participante in any event
2620                                //
2621                                reset($this->planner_group_members);
2622                                while(list($user_name,$id) = each($this->planner_group_members))
2623                                {
2624                                        $k  = $user_name.'_1';
2625                                        $ka = '.nr_'.$k;
2626
2627                                        if (!isset($rows[$k]))
2628                                        {
2629                                                $rows[$k]['_name'] = $user_name;
2630                                                $rows[$k]['._name'] .= ' nowrap';
2631                                                $rows[$ka] = 0;
2632                                        }
2633                                }
2634                        }
2635
2636                        // fill the remaining cols
2637                        //
2638                        $last_cell = $this->bo->prefs['calendar']['planner_intervals_per_day'] * $this->planner_days - 1;
2639
2640                        ksort($rows);
2641                        while (list($k,$r) = each($rows))
2642                        {
2643                                if (is_array($r))
2644                                {
2645                                        $rows['.'.$k] = 'bgcolor="'.$GLOBALS['phpgw']->nextmatchs->alternate_row_color().'"';
2646                                        $row = &$rows[$k];
2647                                        $akt_cell = &$rows['.nr_'.$k];
2648                                        if ($akt_cell < $last_cell)
2649                                        {
2650                                                $row['3'] = '&nbsp';
2651                                                $row['.3'] = 'colspan="'.(1+$last_cell-$akt_cell).'"';
2652                                        }
2653                                }
2654                        }
2655                }
2656
2657                function planner_print_rows()
2658                {
2659                        $bgcolor = 'bgcolor="'.$this->theme['th_bg'].'"';
2660                        $intervals_per_day = $this->bo->prefs['calendar']['planner_intervals_per_day'];
2661
2662                        if ($this->debug)
2663                        {
2664                                _debug_array($this->planner_rows);
2665                                reset($this->planner_rows);
2666                        }
2667                        return $this->html->table(
2668                                array(
2669                                        '_hdr0' => $this->planner_header[0],
2670                                        '._hdr0' => $bgcolor,
2671                                        '_hdr1' => $this->planner_header[1],
2672                                        '._hdr1' => $bgcolor,
2673                                        '_hdr2' => $this->planner_header[2],
2674                                        '._hdr2' => $bgcolor
2675                                )+$this->planner_rows,
2676                                'width="100%" cols="'.(1+$this->planner_days_in_end_month*$intervals_per_day).'"');
2677                }
2678
2679                function planner_process_interval()
2680                {
2681                        // generate duplicate free list of events within observed interval
2682                        //
2683                        $this->bo->store_to_cache(
2684                                Array(
2685                                        'syear' => $this->bo->year,
2686                                        'smonth'        => $this->bo->month,
2687                                        'sday'  => 1,
2688                                        'eyear' => $this->planner_end_year,
2689                                        'emonth'        => $this->planner_end_month,
2690                                        'eday'  => $this->planner_days_in_end_month
2691                                )
2692                        );
2693                        $this->bo->remove_doubles_in_cache($this->planner_firstday,$this->planner_lastday);
2694
2695                        // process all events within observed interval
2696                        //
2697                        for($v=$this->planner_firstday;$v<=$this->planner_lastday;$v++)
2698                        {
2699                                $daily = $this->bo->cached_events[$v];
2700
2701                                print_debug('For Date',$v);
2702                                print_debug('Count of items',count($daily));
2703
2704                                // process all events on day $v
2705                                //
2706                                if (is_array($daily)) foreach($daily as $event)
2707                                {
2708                                        if ($event['recur_type'])       // calculate start- + end-datetime for recuring events
2709                                        {
2710                                                $this->bo->set_recur_date($event,$v);
2711                                        }
2712                                        if (!$this->bo->rejected_no_show($event))
2713                                        {
2714                                                $this->planner_process_event($event);
2715                                        }
2716                                }
2717                        }
2718                        $this->planner_pad_rows();
2719                }
2720
2721                function matrixselect()
2722                {
2723                        $datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
2724
2725                        $sb = CreateObject('phpgwapi.sbox');
2726
2727                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
2728                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2729                        if ($this->always_app_header) $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Matrixview');
2730                        $GLOBALS['phpgw']->common->phpgw_header();
2731
2732                        $p = &$GLOBALS['phpgw']->template;
2733                        $p->set_file(
2734                                Array(
2735                                        'mq'            => 'matrix_query.tpl',
2736                                        'form_button'   => 'form_button_script.tpl'
2737                                )
2738                        );
2739                        $p->set_block('mq','matrix_query','matrix_query');
2740                        $p->set_block('mq','list','list');
2741
2742                        $p->set_var(array(
2743                                'title'                 => lang('Daily Matrix View'),
2744                                'th_bg'                 => $this->theme['th_bg'],
2745                                'action_url'    => $this->page('viewmatrix')
2746                        ));
2747
2748// Date
2749                        $var[] = Array(
2750                                'field' =>      lang('Date'),
2751                                'data'  =>      $GLOBALS['phpgw']->common->dateformatorder(
2752                                        $sb->getYears('year',(int)$GLOBALS['phpgw']->common->show_date($datetime,'Y'),(int)$GLOBALS['phpgw']->common->show_date($datetime,'Y')),
2753                                        $sb->getMonthText('month',(int)$GLOBALS['phpgw']->common->show_date($datetime,'n')),
2754                                        $sb->getDays('day',(int)$GLOBALS['phpgw']->common->show_date($datetime,'d'))
2755                                )
2756                        );
2757
2758// View type
2759                        $var[] = Array(
2760                                'field' =>      lang('View'),
2761                                'data'  =>      '<select name="matrixtype">'."\n"
2762                                        . '<option value="free/busy" selected>'.lang('free/busy').'</option>'."\n"
2763                                        . '<option value="weekly">'.lang('Weekly').'</option>'."\n"
2764                                        . '</select>'."\n"
2765                        );
2766
2767// Participants
2768                        $accounts = $GLOBALS['phpgw']->acl->get_ids_for_location('run',1,'calendar');
2769                        $users = Array();
2770                        for($i=0;$i<count($accounts);$i++)
2771                        {
2772                                $user = $accounts[$i];
2773                                if(!isset($users[$user]))
2774                                {
2775                                        $users[$user] = $GLOBALS['phpgw']->common->grab_owner_name($user);
2776                                        if($GLOBALS['phpgw']->accounts->get_type($user) == 'g')
2777                                        {
2778                                                $group_members = $GLOBALS['phpgw']->acl->get_ids_for_location($user,1,'phpgw_group');
2779                                                if($group_members != False)
2780                                                {
2781                                                        for($j=0;$j<count($group_members);$j++)
2782                                                        {
2783                                                                if(!isset($users[$group_members[$j]]))
2784                                                                {
2785                                                                        $users[$group_members[$j]] = $GLOBALS['phpgw']->common->grab_owner_name($group_members[$j]);
2786                                                                }
2787                                                        }
2788                                                }
2789                                        }
2790                                }
2791                        }
2792
2793                        $num_users = count($users);
2794
2795                        if ($num_users > 50)
2796                        {
2797                                $size = 15;
2798                        }
2799                        elseif ($num_users > 5)
2800                        {
2801                                $size = 5;
2802                        }
2803                        else
2804                        {
2805                                $size = $num_users;
2806                        }
2807                        $str = '';
2808                        @asort($users);
2809                        @reset($users);
2810                        while ($user = each($users))
2811                        {
2812                                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')
2813                                {
2814                                        $str .= '    <option value="'.$user[0].'">('.$GLOBALS['phpgw']->accounts->get_type($user[0]).') '.$user[1].'</option>'."\n";
2815                                }
2816                        }
2817                        $var[] = Array(
2818                                'field' =>      lang('Participants'),
2819                                'data'  =>      "\n".'   <select name="participants[]" multiple size="'.$size.'">'."\n".$str.'   </select>'."\n"
2820                        );
2821
2822                        for($i=0;$i<count($var);$i++)
2823                        {
2824                                $this->output_template_array($p,'rows','list',$var[$i]);
2825                        }
2826
2827                        $vars = Array(
2828                                'submit_button'         => lang('View'),
2829                                'action_url_button'     => $this->bo->return_to ? $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to) : $this->page(''),
2830                                'action_text_button'    => lang('Cancel'),
2831                                'action_confirm_button' => '',
2832                                'action_extra_field'    => ''
2833                        );
2834
2835                        $p->set_var($vars);
2836                        $p->parse('cancel_button','form_button');
2837                        $p->pparse('out','matrix_query');
2838                }
2839
2840                function viewmatrix()
2841                {
2842                        if ($_POST['cancel'])
2843                        {
2844                                $this->index();
2845                        }
2846                        $participants = $_POST['participants'];
2847                        $parts = Array();
2848                        $acct = CreateObject('phpgwapi.accounts',$this->bo->owner);
2849
2850                        if (is_array($participants))
2851                        {
2852                                foreach($participants as $participant)
2853                                {
2854                                        switch ($GLOBALS['phpgw']->accounts->get_type($participant))
2855                                        {
2856                                                case 'g':
2857                                                        if ($members = $acct->member((int)$participant))
2858                                                        {
2859                                                                foreach($members as $member)
2860                                                                {
2861                                                                        if($this->bo->check_perms(PHPGW_ACL_READ,0,$member['account_id']))
2862                                                                        {
2863                                                                                $parts[$member['account_id']] = True;
2864                                                                        }
2865                                                                }
2866                                                        }
2867                                                        break;
2868                                                case 'u':
2869                                                        if($this->bo->check_perms(PHPGW_ACL_READ,0,$participant))
2870                                                        {
2871                                                                $parts[$participant] = 1;
2872                                                        }
2873                                                        break;
2874                                        }
2875                                }
2876                                unset($acct);
2877                        }
2878                        $participants = array_keys($parts);     // get id's as values and a numeric index
2879
2880                        // Defined - into session - who participates
2881                        $GLOBALS['phpgw']->session->appsession("participants", NULL, implode(";", $participants));
2882
2883                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
2884                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2885                        if ($this->always_app_header) $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Matrixview');
2886                        $GLOBALS['phpgw']->common->phpgw_header();
2887
2888                        switch($_POST['matrixtype'])
2889                        {
2890                                case 'free/busy':
2891                                        $freetime = $GLOBALS['phpgw']->datetime->gmtdate(mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year));
2892                                        echo '<br>'.$this->timematrix(
2893                                                Array(
2894                                                        'date'          => $freetime,
2895                                                        'starttime'     => $this->bo->splittime('000000',False),
2896                                                        'endtime'       => 0,
2897                                                        'participants'  => $parts
2898                                                )
2899                                        );
2900                                        break;
2901                                case 'weekly':
2902                                        echo '<br>'.$this->display_weekly(
2903                                                Array(
2904                                                        'date'          => sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day),
2905                                                        'showyear'      => true,
2906                                                        'owners'        => $participants
2907                                                )
2908                                        );
2909                                        break;
2910                        }
2911                        echo "\n<br>\n".'<form action="'.$this->page('viewmatrix').'" method="post" name="matrixform">'."\n";
2912                        echo ' <table cellpadding="5"><tr><td>'."\n";
2913                        echo '  <input type="hidden" name="year" value="'.$this->bo->year.'">'."\n";
2914                        echo '  <input type="hidden" name="month" value="'.$this->bo->month.'">'."\n";
2915                        echo '  <input type="hidden" name="day" value="'.$this->bo->day.'">'."\n";
2916                        echo '  <input type="hidden" name="matrixtype" value="'.$_POST['matrixtype'].'">'."\n";
2917                        foreach($participants as $part)
2918                        {
2919                                echo '  <input type="hidden" name="participants[]" value="'.$part.'">'."\n";
2920                        }
2921                        echo '  <input type="submit" name="refresh" value="'.lang('Refresh').'">'."\n";
2922                        echo ' </td><td>'."\n";
2923                        echo '  <input type="submit" name="cancel" value="'.lang('Cancel').'">'."\n";
2924                        echo ' </td></tr></table>'."\n";
2925                        echo '</form>'."\n";
2926                }
2927
2928                function search()
2929                {
2930                        if (empty($_POST['keywords']))
2931                        {
2932                                // If we reach this, it is because they didn't search for anything
2933                                // or they used one of the selectboxes (year, month, week) in the search-result
2934                                // attempt to send them back to where they came from.
2935
2936                                $vars['menuaction'] = isset($_POST['from']) && $_POST['from'] != 'calendar.uicalendar.search' ?
2937                                        $_POST['from'] : 'calendar.uicalendar.index';
2938
2939                                foreach(array('date','year','month','day') as $field)
2940                                {
2941                                        if (isset($_POST[$field]))
2942                                        {
2943                                                $vars[$field] = $_POST[$field];
2944                                        }
2945                                }
2946                                $GLOBALS['phpgw']->redirect_link('/index.php',$vars);
2947                        }
2948
2949                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
2950                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
2951                        $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Search Results');
2952                        $GLOBALS['phpgw']->common->phpgw_header();
2953
2954                        $error = '';
2955
2956                        $matches = 0;
2957
2958                        // There is currently a problem searching in with repeated events.
2959                        // It spits back out the date it was entered.  I would like to to say that
2960                        // it is a repeated event.
2961
2962                        // This has been solved by the little icon indicator for recurring events.
2963
2964                        $event_ids = $this->bo->search_keywords($_POST['keywords']);
2965                        foreach($event_ids as $key => $id)
2966                        {
2967                                $event = $this->bo->read_entry($id);
2968
2969                                if(!$this->bo->check_perms(PHPGW_ACL_READ,$event))
2970                                {
2971                                        continue;
2972                                }
2973
2974                                $datetime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
2975
2976                                $info[strval($event['id'])] = array(
2977                                        'tr_color'      => $GLOBALS['phpgw']->nextmatchs->alternate_row_color(),
2978                                        'date'          => $GLOBALS['phpgw']->common->show_date($datetime),
2979                                        'link'          => $this->link_to_entry($event,$event['start']['month'],$event['start']['mday'],$event['start']['year'])
2980                                );
2981
2982                        }
2983                        $matches = count($event_ids);
2984
2985                        if ($matches == 1)
2986                        {
2987                                $quantity = lang('1 match found').'.';
2988                        }
2989                        elseif ($matches > 0)
2990                        {
2991                                $quantity = lang('%1 matches found',$matches).'.';
2992                        }
2993                        else
2994                        {
2995                                echo '<b>'.lang('Error').':</b>'.lang('no matches found');
2996                                return;
2997                        }
2998
2999                        $p = $GLOBALS['phpgw']->template;
3000                        $p->set_file(
3001                                Array(
3002                                        'search_form'   => 'search.tpl'
3003                                )
3004                        );
3005                        $p->set_block('search_form','search','search');
3006                        $p->set_block('search_form','search_list_header','search_list_header');
3007                        $p->set_block('search_form','search_list','search_list');
3008                        $p->set_block('search_form','search_list_footer','search_list_footer');
3009
3010                        $var = Array(
3011                                'th_bg'         => $this->theme['th_bg'],
3012                                'search_text'   => lang('Search Results'),
3013                                'quantity'      => $quantity
3014                        );
3015                        $p->set_var($var);
3016
3017                        if($matches > 0)
3018                        {
3019                                $p->parse('rows','search_list_header',True);
3020                        }
3021                        foreach($info as $id => $data)
3022                        {
3023                                $p->set_var($data);
3024                                $p->parse('rows','search_list',True);
3025                        }
3026
3027                        if($matches > 0)
3028                        {
3029                                $p->parse('rows','search_list_footer',True);
3030                        }
3031
3032                        $p->pparse('out','search');
3033                }
3034
3035                /* Private functions */
3036                function _debug_sqsof()
3037                {
3038                        $data = array(
3039                                'filter'     => $this->bo->filter,
3040                                'cat_id'     => $this->bo->cat_id,
3041                                'owner'      => $this->bo->owner,
3042                                'year'       => $this->bo->year,
3043                                'month'      => $this->bo->month,
3044                                'day'        => $this->bo->day,
3045                                'sortby'     => $this->bo->sortby,
3046                                'num_months' => $this->bo->num_months
3047                        );
3048                        Return _debug_array($data,False);
3049                }
3050
3051                function output_template_array(&$p,$row,$list,$var)
3052                {
3053                        if (!isset($var['hidden_vars']))
3054                        {
3055                                $var['hidden_vars'] = '';
3056                        }
3057                        if (!isset($var['tr_color']))
3058                        {
3059                                $var['tr_color'] = $GLOBALS['phpgw']->nextmatchs->alternate_row_color();
3060                        }
3061                        $p->set_var($var);
3062                        $p->parse($row,$list,True);
3063                }
3064
3065                function page($_page='',$params='')
3066                {
3067                        if($_page == '')
3068                        {
3069                                $page_ = explode('.',$this->bo->prefs['calendar']['defaultcalendar']);
3070                                $_page = $page_[0];
3071
3072                                if ($_page=='planner_cat' || $_page=='planner_user')
3073                                {
3074                                        $_page = 'planner';
3075                                }
3076                                elseif ($_page=='index' || ($_page != 'day' && $_page != 'week' && $_page != 'month' && $_page != 'year' && $_page != 'planner'))
3077                                {
3078                                        $_page = 'month';
3079                                        $GLOBALS['phpgw']->preferences->add('calendar','defaultcalendar','month');
3080                                        $GLOBALS['phpgw']->preferences->save_repository();
3081                                }
3082                        }
3083                        if($GLOBALS['phpgw_info']['flags']['currentapp'] == 'home' ||
3084                                strstr($GLOBALS['phpgw_info']['flags']['currentapp'],'mail'))   // email, felamimail, ...
3085                        {
3086                                $page_app = 'calendar';
3087                        }
3088                        else
3089                        {
3090                                $page_app = $GLOBALS['phpgw_info']['flags']['currentapp'];
3091                        }
3092                        if (is_array($params))
3093                        {
3094                                $params['menuaction'] = $page_app.'.ui'.$page_app.'.'.$_page;
3095                        }
3096                        else
3097                        {
3098                                $params = 'menuaction='.$page_app.'.ui'.$page_app.'.'.$_page.$params;
3099                        }
3100                        return $GLOBALS['phpgw']->link('/index.php',$params);
3101                }
3102
3103                function header()
3104                {
3105                        $cols = 8;
3106                        if($this->bo->check_perms(PHPGW_ACL_PRIVATE) == True)
3107                        {
3108                                $cols++;
3109                        }
3110
3111                        $tpl = $GLOBALS['phpgw']->template;
3112                        $tpl->set_unknowns('remove');
3113
3114                        if (!file_exists($file = $this->template_dir.'/header.inc.php'))
3115                        {
3116                                $file = PHPGW_SERVER_ROOT . '/calendar/templates/default/header.inc.php';
3117                        }
3118                       
3119                        include($file);
3120                        $refer = explode('.',$GLOBALS['HTTP_GET_VARS']['menuaction']);
3121                        if($refer[2] != 'view') {
3122                        $header = $tpl->fp('out','head');
3123                        unset($tpl);
3124                        echo $header;
3125                }
3126                        unset($tpl);
3127                }
3128
3129                function footer()
3130                {
3131                        $menuaction = $_GET['menuaction'];
3132                        list(,,$method) = explode('.',$menuaction);
3133
3134                        if (@$this->bo->printer_friendly)
3135                        {
3136                                return;
3137                        }
3138
3139                        $p = $GLOBALS['phpgw']->template;
3140
3141                        $p->set_file(
3142                                Array(
3143                                        'footer'        => 'footer.tpl',
3144                                        'form_button'   => 'form_button_script.tpl'
3145                                )
3146                        );
3147                        $p->set_block('footer','footer_table','footer_table');
3148                        $p->set_block('footer','footer_row','footer_row');
3149                        $p->set_block('footer','blank_row','blank_row');
3150                        $p->set_block('footer','num_dias','num_dias');
3151
3152                        $m = $this->bo->month;
3153                        $y = $this->bo->year;
3154
3155                        $hoje = date('Ymd',$GLOBALS['phpgw']->datetime->gmtnow);
3156                        $mes_hoje = (int)substr($hoje,4,2);
3157                        $mes_footer = (int)substr($_POST['date'],4,2);
3158                        if($_GET['sday'])
3159                        {
3160                                if($_GET['month'] == $mes_hoje)
3161                                {
3162                                        $day = $this->bo->day;
3163                                }
3164                                else
3165                                {
3166                                        $day = $_GET['sday'];
3167                                }
3168                        }
3169                        else
3170                        {
3171                                $day = $this->bo->day;
3172                                $dia_ini = $day;
3173                        }
3174                        if($mes_footer == $mes_hoje)
3175                        {
3176                                $dia_ini = (int)substr($hoje,6,2);
3177                                $day = $dia_ini;
3178                        }
3179                        /********************************************************************************************/
3180                        /* Bloco adicionado para receber o dia a partir do qual a versao para impressao sera gerada */
3181                        $str_ini = '';
3182                        for ($i = 1; $i <= ($GLOBALS['phpgw']->datetime->days_in_month($m, $y)); $i++)
3183                        {
3184                                $str_ini .= '<option value="'.$i.'"'.($i == $day?' selected':'').'>'.$i.'</option>'."\n";
3185                        }
3186                        $str_qtd = '<option value="'.''.'"'.($i == $_POST['qtd_dias']?' selected':'').'>'.''.'</option>'."\n";
3187                        for ($i = 1; $i <= 45; $i++)
3188                        {
3189                                $str_qtd .= '<option value="'.$i.'"'.($i == $_POST['qtd_dias']?' selected':'').'>'.$i.'</option>'."\n";
3190                        }
3191                        $display = '';
3192                        $display_view = '';
3193                        if ( ($menuaction == 'calendar.uicalendar.week') || ($menuaction == 'calendar.uicalendar.day') )
3194                        {
3195                                $display = 'none';
3196                        }
3197                        else if( ($menuaction == 'calendar.uicalendar.view') )
3198                        {
3199                                $display = 'none';
3200                                $display_view = 'none';
3201                        }
3202                        $var = Array(
3203                                'acao'                  => $this->page($method,''),
3204                                'formname'              => 'SelectDay',
3205                                'formonchange'          => 'document.SelectDay.submit()',
3206                                'day_ini_label'         => lang('print starting in'),
3207                                'num_dias_label'        => lang('quantity of days'),
3208                                'tip'                   => lang('empty prints from the day chosen below to the end of the current month'),
3209                                'day_ini_name'          => 'day',
3210                                'num_dias_name'         => 'qtd_dias',
3211                                'row_ini'               => $str_ini,
3212                                'row_qtd'               => $str_qtd,
3213                                'display'               => $display,
3214                                'display_view'          => $display_view,
3215                                'go'                    => lang('Go!')
3216                                );
3217                        $this->output_template_array($p,'table_row','num_dias',$var);
3218                       
3219                        /********************************************************************************************/
3220
3221                        $thisdate = date('Ymd',mktime(0,0,0,$m,1,$y));
3222                        $y--;
3223
3224                        $str = '';
3225                        for ($i = 0; $i < 20; $i++)
3226                        {
3227                                $m++;
3228                                if ($m > 12)
3229                                {
3230                                        $m = 1;
3231                                        $y++;
3232                                }
3233                                $d = mktime(0,0,0,$m,1,$y);
3234                                $d_ymd = date('Ymd',$d);
3235                                $str .= '<option value="'.$d_ymd.'"'.($d_ymd == $thisdate?' selected':'').'>'.lang(date('F', $d)).strftime(' %Y', $d).'</option>'."\n";
3236                        }
3237
3238                        $var = Array(
3239                                'action_url'    => $this->page($method,''),
3240                                'form_name'     => 'SelectMonth',
3241                                'label'         => lang('Month'),
3242                                'form_label'    => 'date',
3243                                'form_onchange' => 'document.SelectMonth.submit()',
3244                                'row'           => $str,
3245                                'dia_ini'       => $dia_ini,
3246                                'go'            => lang('Go!')
3247                        );
3248                        $this->output_template_array($p,'table_row','footer_row',$var);
3249
3250                        if($menuaction == 'calendar.uicalendar.week')
3251                        {
3252                                unset($thisdate);
3253                                $thisdate = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
3254                                $sun = $GLOBALS['phpgw']->datetime->get_weekday_start($this->bo->year,$this->bo->month,$this->bo->day) - $GLOBALS['phpgw']->datetime->tz_offset;
3255
3256                                $str = '';
3257                                for ($i = -7; $i <= 7; $i++)
3258                                {
3259                                        $begin = $sun + (7*24*60*60 * $i) + 12*60*60;   // we use midday, that changes in daylight-saveing does not effect us
3260                                        $end = $begin + 6*24*60*60;
3261//                                      echo "<br>$i: ".date('d.m.Y H:i',$begin).' - '.date('d.m.Y H:i',$end);
3262                    $str .= '<option value="' . $GLOBALS['phpgw']->common->show_date($begin,'Ymd') . '"'.($begin <= $thisdate+12*60*60 && $end >= $thisdate+12*60*60 ? ' selected':'').'>'                   
3263                                                . $GLOBALS['phpgw']->common->show_date($begin,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']) . ' - '
3264                        . $GLOBALS['phpgw']->common->show_date($end,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'])
3265                        . '</option>' . "\n";                       
3266                                }
3267
3268                                $var = Array(
3269                                        'action_url'    => $this->page($method,''),
3270                                        'form_name'     => 'SelectWeek',
3271                                        'label'         => lang('Week'),
3272                                        'form_label'    => 'date',
3273                                        'form_onchange' => 'document.SelectWeek.submit()',
3274                                        'row'           => $str,
3275                                        'go'            => lang('Go!')
3276                                );
3277
3278                                $this->output_template_array($p,'table_row','footer_row',$var);
3279                        }
3280
3281                        $str = '';
3282                        for ($i = ($this->bo->year - 3); $i < ($this->bo->year + 3); $i++)
3283                        {
3284                                $str .= '<option value="'.$i.'"'.($i == $this->bo->year?' selected':'').'>'.$i.'</option>'."\n";
3285                        }
3286
3287                        $var = Array(
3288                                'action_url'    => $this->page($method,''),
3289                                'form_name'     => 'SelectYear',
3290                                'label'         => lang('Year'),
3291                                'form_label'    => 'year',
3292                                'form_onchange' => 'document.SelectYear.submit()',
3293                                'row'           => $str,
3294                                'go'            => lang('Go!')
3295                        );
3296                        $this->output_template_array($p,'table_row','footer_row',$var);
3297
3298                        if($menuaction == 'calendar.uicalendar.planner')
3299                        {
3300                                $str = '';
3301                                $date_str = '';
3302
3303                                if(isset($_GET['date']) && $_GET['date'])
3304                                {
3305                                        $date_str .= '    <input type="hidden" name="date" value="'.$_GET['date'].'">'."\n";
3306                                }
3307                                $date_str .= '    <input type="hidden" name="month" value="'.$this->bo->month.'">'."\n";
3308                                $date_str .= '    <input type="hidden" name="day" value="'.$this->bo->day.'">'."\n";
3309                                $date_str .= '    <input type="hidden" name="year" value="'.$this->bo->year.'">'."\n";
3310
3311                                for($i=1; $i<=6; $i++)
3312                                {
3313                                        $str .= '<option value="'.$i.'"'.($i == $this->bo->num_months?' selected':'').'>'.$i.'</option>'."\n";
3314                                }
3315
3316                                $var = Array(
3317                                        'action_url'    => $this->page($method,''),
3318                                        'form_name'     => 'SelectNumberOfMonths',
3319                                        'label'         => lang('Number of Months'),
3320                                        'hidden_vars' => $date_str,
3321                                        'form_label'    => 'num_months',
3322                                        'form_onchange' => 'document.SelectNumberOfMonths.submit()',
3323                                        'action_extra_field'    => $date_str,
3324                                        'row'           => $str,
3325                                        'go'            => lang('Go!')
3326                                );
3327                                $this->output_template_array($p,'table_row','footer_row',$var);
3328                        }
3329
3330                        $var = Array(
3331                                'submit_button'         => lang('Submit'),
3332                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uiicalendar.import'),
3333                                'action_text_button'    => lang('Import'),
3334                                'action_confirm_button' => '',
3335                                'action_extra_field'    => ''
3336                        );
3337                        $this->output_template_array($p,'b_row','form_button',$var);
3338                       
3339                        $var = Array(
3340                                'submit_button'         => lang('Submit'),
3341                                'action_url'    => $this->page($method,''),
3342                                'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.export_all'),
3343                                'action_text_button'    => lang('Export all'),
3344                                'action_confirm_button' => '',
3345                                'action_extra_field'    => ''
3346                        );
3347                        $this->output_template_array($p,'b_row2','form_button',$var);
3348                                       
3349                        $p->parse('table_row','blank_row',True);
3350
3351                        $p->pparse('out','footer_table');
3352                        unset($p);
3353                }
3354
3355                function css()
3356                {
3357                        $GLOBALS['phpgw']->browser->browser();
3358                        if($GLOBALS['phpgw']->browser->get_agent() == 'MOZILLA')
3359                        {
3360                                $time_width = ((int)($this->bo->prefs['common']['time_format']) == 12?12:8);
3361                        }
3362                        else
3363                        {
3364                                $time_width = ((int)($this->bo->prefs['common']['time_format']) == 12?10:7);
3365                        }
3366
3367// moved to app.css in templates/default for future separation of code and style [NDEE 10.03.04]
3368/*
3369                         return 'A.minicalendar { color: #000000; font-size: 72%; font-family: '.$this->theme['font'].' }'."\n"
3370                                . '  A.bminicalendar { color: #336699; font: italic bold x-small '.$this->theme['font'].' }'."\n"
3371                                . '  A.minicalendargrey { color: #999999; font-size: 8px; font-family: '.$this->theme['font'].' }'."\n"
3372                                . '  A.bminicalendargrey { color: #336699; font-style: italic; font-size:8px; font-family '.$this->theme['font'].' }'."\n"
3373                                . '  A.minicalhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #000000; font: x-small '.$this->theme['font'].' }'."\n"
3374                                . '  A.bminicalhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #336699; font: italic bold x-small '.$this->theme['font'].' }'."\n"
3375                                . '  A.minicalgreyhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #999999; font: x-small '.$this->theme['font'].' }'."\n"
3376                                . '  A.bminicalgreyhol { padding-left:3px; padding-right:3px; background: '.$this->holiday_color.'; color: #999999; font: italic bold x-small '.$this->theme['font'].' }'."\n"
3377                                . '  .event-on { background: '.$this->theme['row_on'].'; color: '.$this->theme['bg_text'].'; font: 100% '.$this->theme['font'].'; vertical-align: middle }'."\n"
3378                                . '  .event-off { background: '.$this->theme['row_off'].'; color: '.$this->theme['bg_text'].'; font: 100% '.$this->theme['font'].'; vertical-align: middle }'."\n"
3379                                . '  .event-holiday { background: '.$this->theme['bg04'].'; color: '.$this->theme['bg_text'].'; font: 100% '.$this->theme['font'].'; vertical-align: middle }'."\n"
3380                                . '  .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"
3381                                . '  .tablecell { width: 80px; height: 80px }'."\n"
3382                                . '  .planner-cell { cursor:pointer; cursor:hand; border: thin solid black; }';
3383*/
3384                }
3385
3386                function no_edit()
3387                {
3388                        if(!isset($GLOBALS['phpgw_info']['flags']['noheader']))
3389                        {
3390                                unset($GLOBALS['phpgw_info']['flags']['noheader']);
3391                                unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
3392                                $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
3393                                $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
3394                                $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Permission denied');
3395                                $GLOBALS['phpgw']->common->phpgw_header();
3396                        }
3397                        echo '<center>You do not have permission to edit this appointment!</center>';
3398                        return;
3399                }
3400
3401                function link_to_entry($event,$month,$day,$year)
3402                {
3403                        $str = '';
3404                        $is_private = !$event['public'] && !$this->bo->check_perms(PHPGW_ACL_READ,$event);
3405                        $viewable = !$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_READ,$event);
3406
3407                        $starttime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
3408                        $endtime = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
3409                        $rawdate = mktime(0,0,0,$month,$day,$year);
3410                        $rawdate_offset = $rawdate - $GLOBALS['phpgw']->datetime->tz_offset;
3411                        $nextday = mktime(0,0,0,$month,$day + 1,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
3412                        if ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') && $starttime == $endtime)
3413                        {
3414                                $time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3415                        }
3416                        elseif ($starttime <= $rawdate_offset && $endtime >= $nextday - 60)
3417                        {
3418                                $time = '[ '.lang('All Day').' ]';
3419                        }
3420                        elseif ((int)$GLOBALS['phpgw']->common->show_date($starttime,'Hi') || $starttime != $endtime)
3421                        {
3422                                if($starttime < $rawdate_offset && $event['recur_type'] == MCAL_RECUR_NONE)
3423                                {
3424                                        $start_time = $GLOBALS['phpgw']->common->show_date($rawdate_offset,$this->bo->users_timeformat);
3425                                }
3426                                else
3427                                {
3428                                        $start_time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
3429                                }
3430
3431                                if($endtime >= ($rawdate_offset + 86400))
3432                                {
3433                                        $end_time = $GLOBALS['phpgw']->common->show_date(mktime(23,59,59,$month,$day,$year) - $GLOBALS['phpgw']->datetime->tz_offset,$this->bo->users_timeformat);
3434                                }
3435                                else
3436                                {
3437                                        $end_time = $GLOBALS['phpgw']->common->show_date($endtime,$this->bo->users_timeformat);
3438                                }
3439                                $time = $start_time.'-'.$end_time;
3440                        }
3441                        else
3442                        {
3443                                $time = '';
3444                        }
3445                       
3446                        $texttitle = $texttime = $textdesc = $textlocation = $textstatus = '';
3447
3448                       
3449                       
3450                        if(!$is_private)
3451                        {
3452                                //$text .= $this->bo->display_status($event['users_status']);
3453                               
3454                                // split text for better display by templates, also see $texttime $texttitle $textdesc $textlocation   
3455                                $textstatus=$this->bo->display_status($event['users_status']);
3456                               
3457                        }
3458
3459                        /*
3460                        $text = '<nobr>&nbsp;'.$time.'&nbsp;</nobr> '.$this->bo->get_short_field($event,$is_private,'title').$text.
3461                                (!$is_private && $event['description'] ? ': <i>'.$this->bo->get_short_field($event,$is_private,'description').'</i>':'').
3462                                $GLOBALS['phpgw']->browser->br;
3463                        */
3464                       
3465                        $texttime=$time;
3466                        $texttitle=$this->bo->get_short_field($event,$is_private,'title');
3467
3468                        $account_name = $_POST['user'] ?
3469                                                        $_POST['user'] :
3470                                                        ($_GET['account_name'] ?
3471                                                         $_GET['account_name'] : '');
3472
3473                        $accounts = CreateObject('phpgwapi.accounts');
3474                        $accountId = $accounts->name2id($account_name);
3475
3476                        $prefs = CreateObject('phpgwapi.preferences', $accountId);
3477                        $account_prefs = $prefs->read();
3478
3479                        $titleView = $account_prefs['calendar']['title_view'];
3480                        if($titleView == "1"){
3481                                $textdesc = '';
3482                        }else{
3483                        $textdesc=(!$is_private && $event['description'] ? $this->bo->get_short_field($event,$is_private,'description'):'');
3484                        $textdesc=nl2br($textdesc);
3485                        }
3486
3487                        // added $textlocation but this must be activated in the actual pict_link.tpl file of the used template set
3488                        $textlocation=$this->bo->get_short_field($event,$is_private,'location');
3489
3490                        if ($viewable)
3491                        {
3492                                $date = sprintf('%04d%02d%02d',$year,$month,$day);
3493                                $this->link_tpl->set_var('link_link',$this->page('view','&cal_id='.$event['id'].'&date='.$date));
3494                                $this->link_tpl->set_var('lang_view',lang('View this entry'));
3495                                $this->link_tpl->set_var('desc', $textdesc);
3496                                $this->link_tpl->set_var('location', $textlocation);
3497                                $this->link_tpl->parse('picture','link_open',True);
3498                        }
3499                        if (!$is_private)
3500                        {
3501                                if($event['priority'] == 3)
3502                                {
3503                                        $picture[] = Array(
3504                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','high'),
3505                                                'width' => 16,
3506                                                'height'=> 16,
3507                                                'title' => lang('high priority')
3508                                        );
3509                                }
3510                                if($event['recur_type'] == MCAL_RECUR_NONE)
3511                                {
3512                                        $picture[] = Array(
3513                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','circle'),
3514                                                'width' => 9,
3515                                                'height'=> 9,
3516                                                'title' => lang('single event')
3517                                        );
3518                                }
3519                                else
3520                                {
3521                                        $picture[] = Array(
3522                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','recur'),
3523                                                'width' => 12,
3524                                                'height'=> 12,
3525                                                'title' => lang('recurring event')
3526                                        );
3527                                }
3528                        }
3529                        $participants = $this->planner_participants($event['participants']);
3530                        if(count($event['participants']) > 1)
3531                        {
3532                                $picture[] = Array(
3533                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','multi_3'),
3534                                        'width' => 14,
3535                                        'height'=> 14,
3536                                        'title' => $participants
3537                                );
3538                        }
3539                        else
3540                        {
3541                                $picture[] = Array(
3542                                        'pict'  =>  $GLOBALS['phpgw']->common->image('calendar','single'),
3543                                        'width' => 14,
3544                                        'height'=> 14,
3545                                        'title' => $participants
3546                                );
3547                        }
3548                        if($event['public'] == 0)
3549                        {
3550                                $picture[] = Array(
3551                                        'pict'  => $GLOBALS['phpgw']->common->image('calendar','private'),
3552                                        'width' => 13,
3553                                        'height'=> 13,
3554                                        'title' => lang('private')
3555                                );
3556                        }
3557                        if(@isset($event['alarm']) && count($event['alarm']) >= 1 && !$is_private)
3558                        {
3559                                // if the alarm is to go off the day before the event
3560                                // the icon does not show up because of 'alarm_today'
3561                                // - TOM
3562                                if($this->bo->alarm_today($event,$rawdate_offset,$starttime))
3563                                {
3564                                        $picture[] = Array(
3565                                                'pict'  => $GLOBALS['phpgw']->common->image('calendar','alarm'),
3566                                                'width' => 13,
3567                                                'height'=> 13,
3568                                                'title' => lang('alarm')
3569                                        );
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                        $vars['title']['tr_color'] = $this->theme['th_bg'];
4500
4501                        foreach($vars['participants']['data'] as $user => $str)
4502                        {
4503                        if ($this->bo->check_perms(PHPGW_ACL_EDIT,0,$user) && ereg('^(.*) \((.*)\)$',$str,$parts))
4504                                {
4505                                        $vars['participants']['data'][$user] = $parts[1].' (<a href="'.$this->page('edit_status','&cal_id='.$event['id'].'&owner='.$user).'">'.$parts[2].'</a>)';
4506                                        $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>)';
4507//system('echo "event: '.$event['start'].'" >>/tmp/controle');
4508                                }
4509                        }
4510                        $vars['participants']['data'] = implode("<br>\n",$vars['participants']['data']);
4511                        foreach($vars as $var)
4512                        {
4513                                if (strlen($var['data']))
4514                                {
4515                                        $this->output_template_array($p,'row','list',$var);
4516                                }
4517                        }
4518
4519                        if($alarms && count($event['alarm']))
4520                        {
4521                                $p->set_var('th_bg',$this->theme['th_bg']);
4522                                $p->set_var('hr_text',lang('Alarms'));
4523                                $p->parse('row','hr',True);
4524                                foreach($event['alarm'] as $key => $alarm)
4525                                {
4526                                        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
4527                                        {       
4528                                                $icon = '<img src="'.$GLOBALS['phpgw']->common->image('calendar',($alarm['enabled']?'enabled':'disabled')).'" width="13" height="13">';
4529                                                $var = Array(                                   
4530                                                        'field' => $icon.$GLOBALS['phpgw']->common->show_date($alarm['time']),
4531                                                        'data'  => lang('Email Notification for %1',$GLOBALS['phpgw']->common->grab_owner_name($alarm['owner']))
4532                                                );
4533                                                $this->output_template_array($p,'row','list',$var);
4534                                        }
4535                                }
4536                        }
4537                        return True;
4538                }
4539
4540                function nm_on_off()
4541                {
4542                        if($GLOBALS['phpgw']->nextmatchs->alternate_row_color() == $this->theme['row_on'])
4543                        {
4544                                return '_on';
4545                        }
4546                        return '_off';
4547                }
4548
4549                function slot_num($time,$set_day_start=0,$set_day_end=0)
4550                {
4551                        static $day_start, $day_end, $interval=0;
4552
4553                        if ($set_day_start) $day_start = $set_day_start;
4554                        if ($set_day_end)   $day_end   = $set_day_end;
4555                        if (!$interval)     $interval  = 60*$this->bo->prefs['calendar']['interval'];
4556
4557                        if ($time > $day_end)
4558                        {
4559                                $time = $day_end;
4560                        }
4561                        $slot = (int)(($time - $day_start) / $interval);
4562
4563                        return $slot < 0 ? 0 : 1+$slot;
4564                }
4565
4566                function print_day($params)
4567                {
4568                        if(!is_array($params))
4569                        {
4570                                $this->index();
4571                        }
4572
4573                        print_debug('in print_day()');
4574
4575                        $this->bo->store_to_cache(
4576                                Array(
4577                                        'syear'  => $params['year'],
4578                                        'smonth' => $params['month'],
4579                                        'sday'   => $params['day'],
4580                                        'eyear'  => $params['year'],
4581                                        'emonth' => $params['month'],
4582                                        'eday'   => $params['day']
4583                                )
4584                        );
4585
4586                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
4587                        $p->set_unknowns('keep');
4588
4589                        $tpl = 'day_cal.tpl';
4590                        if((int)($GLOBALS['phpgw_info']['user']['preferences']['calendar']['mainscreen_showevents'])==2 &&
4591                                $GLOBALS['phpgw_info']['flags']['currentapp'] == 'home')
4592                        {
4593                                $tpl = 'day_list.tpl';
4594                        }
4595                        $templates = Array(
4596                                'day_cal'   => $tpl
4597                        );
4598
4599                        $p->set_file($templates);
4600                        $p->set_block('day_cal','day','day');
4601                        $p->set_block('day_cal','day_row','day_row');
4602                        $p->set_block('day_cal','day_event_on','day_event_on');
4603                        $p->set_block('day_cal','day_event_off','day_event_off');
4604                        $p->set_block('day_cal','day_event_holiday','day_event_holiday');
4605                        $p->set_block('day_cal','day_time','day_time');
4606
4607                        $date_to_eval = sprintf("%04d%02d%02d",$params['year'],$params['month'],$params['day']);
4608
4609                        $day_start = mktime((int)($this->bo->prefs['calendar']['workdaystarts']),0,0,$params['month'],$params['day'],$params['year']);
4610                        $day_end = mktime((int)($this->bo->prefs['calendar']['workdayends']),0,1,$params['month'],$params['day'],$params['year']);
4611                        $daily = $this->set_week_array($GLOBALS['phpgw']->datetime->get_weekday_start($params['year'],$params['month'],$params['day']),$this->theme['row_on'],True);
4612                        print_debug('Date to Eval',$date_to_eval);
4613                        $events_to_show = array();
4614                        if($daily[$date_to_eval]['appts'])
4615                        {
4616                                $events = $this->bo->cached_events[$date_to_eval];
4617                                print_debug('Date',$date_to_eval);
4618                                print_debug('Count',count($events));
4619                                foreach($events as $event)
4620                                {
4621                                        if ($this->bo->rejected_no_show($event))
4622                                        {
4623                                                continue;       // user does not want to see rejected events
4624                                        }
4625                                        if ($event['recur_type'])       // calculate start- + end-datetime for recuring events
4626                                        {
4627                                                $this->bo->set_recur_date($event,$date_to_eval);
4628                                        }
4629                                        $events_to_show[] = array(
4630                                                'starttime' => $this->bo->maketime($event['start']),
4631                                                'endtime'   => $this->bo->maketime($event['end']),
4632                                                'content'   => $this->link_to_entry($event,$params['month'],$params['day'],$params['year'])
4633                                        );
4634                                }
4635                        }
4636                        //echo "events_to_show=<pre>"; print_r($events_to_show); echo "</pre>\n";
4637                        $other = $GLOBALS['phpgw']->hooks->process(array(
4638                                'location'  => 'calendar_include_events',
4639                                'year'      => $params['year'],
4640                                'month'     => $params['month'],
4641                                'day'       => $params['day'],
4642                                'owner'     => $this->bo->owner // num. id of the user, not necessary current user
4643                        ));
4644
4645                        if (is_array($other))
4646                        {
4647                                foreach($other as $evts)
4648                                {
4649                                        if (is_array($evts))
4650                                        {
4651                                                $events_to_show = array_merge($events_to_show,$evts);
4652                                        }
4653                                }
4654                                usort($events_to_show,create_function('$a,$b','return $a[\'starttime\']-$b[\'starttime\'];'));
4655                                //echo "events_to_show=<pre>"; print_r($events_to_show); echo "</pre>\n";
4656                        }
4657
4658                        if (count($events_to_show))
4659                        {
4660                                $last_slot_end = -1;
4661                                foreach($events_to_show as $event)
4662                                {
4663                                        $slot = $this->slot_num($event['starttime'],$day_start,$day_end);
4664                                        $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
4665
4666                                        if ($slot <= $last_slot_end)
4667                                        {
4668                                                $slot = $last_slot;
4669                                                $slot_end = max($last_slot_end,$slot_end);
4670                                        }
4671                                        $rows[$slot] .= $event['content'];
4672
4673                                        print_debug('slot',$slot);
4674                                        print_debug('row',$rows[$slot]);
4675
4676                                        $row_span[$slot] = 1 + $slot_end - $slot;
4677
4678                                        $last_slot = $slot;
4679                                        $last_slot_end = $slot_end;
4680                                        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));
4681                                        print_debug('Slot',$slot);
4682                                }
4683                                //echo "rows=<pre>"; print_r($rows); echo "<br>row_span="; print_r($row_span); echo "</pre>\n";
4684                        }
4685                        $holiday_names = $daily[$date_to_eval]['holidays'];
4686                        if(!$holiday_names)
4687                        {
4688                                $row_to_print = $this->nm_on_off();
4689                        }
4690                        else
4691                        {
4692                                $row_to_print = '_holiday';
4693                                foreach($holiday_names as $name)
4694                                {
4695                                        $rows[0] = '<center>'.$name.'</center>' . $rows[0];
4696                                }
4697                        }
4698                        $last_slot = $this->slot_num($day_end,$day_start,$day_end);
4699                        $rowspan = 0;
4700                        for ($slot = 0; $slot <= $last_slot; ++$slot)
4701                        {
4702                                $p->set_var('extras','');
4703                                if ($rowspan > 1)
4704                                {
4705                                        $p->set_var('event','');
4706                                        $rowspan--;
4707                                }
4708                                elseif (!isset($rows[$slot]))
4709                                {
4710                                        $p->set_var('event','&nbsp;');
4711                                        $row_to_print = $this->nm_on_off();
4712                                        $p->parse('event','day_event'.$row_to_print);
4713                                }
4714                                else
4715                                {
4716                                        $rowspan = (int)$row_span[$slot];
4717                                        if ($rowspan > 1)
4718                                        {
4719                                                $p->set_var('extras',' rowspan="'.$rowspan.'"');
4720                                        }
4721                                        $p->set_var('event',$rows[$slot]);
4722                                        $row_to_print = $this->nm_on_off();
4723                                        $p->parse('event','day_event'.$row_to_print);
4724                                }
4725                                $open_link = $close_link = '';
4726                                $time = '&nbsp;';
4727
4728                                if (0 < $slot && $slot < $last_slot)    // normal time-slot not before or after day_start/end
4729                                {
4730                                        $time = $day_start + ($slot-1) * 60 * $this->bo->prefs['calendar']['interval'];
4731                                        $hour = date('H',$time);
4732                                        $min  = date('i',$time);
4733                                        $time = $GLOBALS['phpgw']->common->formattime($hour,$min);
4734
4735                                        if(!$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_ADD))
4736                                        {
4737                                                $open_link = ' <a href="'.$this->page('add',"&date=$date_to_eval&hour=$hour&minute=$min").'">';
4738                                                $close_link = '</a> ';
4739                                        }
4740                                }
4741                                $p->set_var(Array(
4742                                        'open_link'  => $open_link,
4743                                        'time'       => $time,
4744                                        'close_link' => $close_link,
4745                                        'tr_color'   => ''      // dummy to stop output_template_array to set it
4746                                ));
4747                                $p->parse('time','day_time');
4748
4749                                $p->parse('row','day_row',True);
4750                        }
4751                        return $p->fp('out','day');
4752                }       // end function
4753
4754                function timematrix($param)
4755                {
4756                        if(!is_array($param))
4757                        {
4758                                $this->index();
4759                        }
4760
4761                        $date = $param['date'];
4762                        $starttime = $param['starttime'];
4763                        $endtime = $param['endtime'];
4764                        $participants = $param['participants'];
4765                        foreach($participants as $part => $nul)
4766                        {
4767                                $participants[$part] = $GLOBALS['phpgw']->common->grab_owner_name($part);
4768                                // Much better for processor  :)
4769                                $participants_id[]  .= $part;
4770                        }
4771                        uasort($participants,'strnatcasecmp');  // sort them after their fullname
4772
4773                        if(!isset($this->bo->prefs['calendar']['interval']))
4774                        {
4775                                $this->bo->prefs['calendar']['interval'] = 15;
4776                                $GLOBALS['phpgw']->preferences->add('calendar','interval',15);
4777                                $GLOBALS['phpgw']->preferences->save_repository();
4778                        }
4779                        $increment = $this->bo->prefs['calendar']['interval'];
4780                        $interval = (int)(60 / $increment);
4781
4782                        $pix = $GLOBALS['phpgw']->common->image('calendar','pix');
4783
4784                        $str = '<center>'.lang($GLOBALS['phpgw']->common->show_date($date['raw'],'l'))
4785                                . ', '.$this->bo->long_date($date).'<br>'
4786                                . '<table width="85%" border="0" cellspacing="0" cellpadding="0" cols="'.((24 * $interval) + 1).'">'
4787                                . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>'
4788                                . '<tr><td width="15%"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.lang('Participant').'</font></td>';
4789                        for($i=0;$i<24;$i++)
4790                        {
4791                                for($j=0;$j<$interval;$j++)
4792                                {
4793                                        $k = ($j == 0 ? sprintf('%02d',$i).'<br>':'').sprintf('%02d',$j*$increment);
4794
4795                                        $str .= '<td align="left" bgcolor="'.$this->theme['bg_color'].'"><font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'
4796                                                . '<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;\">"
4797                                                . $k."</a>&nbsp;</font></td>\n";
4798                                }
4799                        }
4800                        $str .= '</tr>'
4801                                . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>';
4802                        if(!$endtime)
4803                        {
4804                                $endtime = $starttime;
4805                        }
4806                        $owner = $this->bo->owner;
4807                        foreach($participants as $part => $fullname)
4808                        {
4809                                $str .= '<tr align="center">'
4810                                        . '<td width="15%" align="left"><font color="'.$this->theme['bg_text'].'" face="'.$this->theme['font'].'" size="-2">'.$fullname.'</font></td>';
4811
4812                                $this->bo->cached_events = Array();
4813                                $this->bo->so->owner = $part;
4814                                $this->bo->so->open_box($part);
4815                                $this->bo->store_to_cache(
4816                                        Array(
4817                                                'syear' => $date['year'],
4818                                                'smonth'=> $date['month'],
4819                                                'sday'  => $date['day'],
4820                                                'eyear' => 0,
4821                                                'emonth'=> 0,
4822                                                'eday'  => $date['day'] + 1
4823                                        )
4824                                );
4825
4826                                if(!$this->bo->cached_events[$date['full']])
4827                                {
4828                                        for($j=0;$j<24;$j++)
4829                                        {
4830                                                for($k=0;$k<$interval;$k++)
4831                                                {
4832                                                        $str .= '<td height="1" align="left" bgcolor="'.$this->theme['bg_color'].'" color="#999999">&nbsp;</td>';
4833                                                }
4834                                                $str .= "\n";
4835                                        }
4836                                }
4837                                else
4838                                {
4839                                        $time_slice = $this->bo->prepare_matrix($interval,$increment,$part,$date['full']);
4840                                        for($h=0;$h<24;$h++)
4841                                        {
4842                                                $hour = $h * 10000;
4843                                                for($m=0;$m<$interval;$m++)
4844                                                {
4845                                                        $index = ($hour + (($m * $increment) * 100));
4846                                                        switch($time_slice[$index]['marker'])
4847                                                        {
4848                                                                case '&nbsp':
4849                                                                        $time_slice[$index]['color'] = $this->theme['bg_color'];
4850                                                                        $extra = '';
4851                                                                        break;
4852                                                                case '-':
4853                                                                        $time_slice[$index]['color'] = $this->theme['bg01'];
4854                                                                        $link = $this->page('view','&cal_id='.$time_slice[$index]['id'].'&date='.$date['full']);
4855                                                                        $extra =' title="'.$time_slice[$index]['description'].'" onClick="location.href=\''.$link.'\';" style="cursor:pointer; cursor:hand;"';
4856                                                                        break;
4857                                                        }
4858                                                        $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>';
4859                                                }
4860                                                $str .= "\n";
4861                                        }
4862                                }
4863                                $str .= '</tr>'
4864                                        . '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="#999999"><img src="'.$pix.'"></td></tr>';
4865                        }
4866                        $this->bo->owner = $owner;
4867                        $this->bo->so->owner = $owner;
4868                        $this->bo->so->open_box($owner);
4869                        return $str.'</table></center>'."\n";
4870                }
4871
4872                function get_response($cal_id)
4873                {
4874                        $p = &$GLOBALS['phpgw']->template;
4875                        $p->set_file(
4876                                Array(
4877                                        'form_button'   => 'form_button_script.tpl'
4878                                )
4879                        );
4880
4881                        $ev = $this->bo->get_cached_event();
4882                        $response_choices = Array(
4883                                ACCEPTED        => lang('Accept'),
4884                                REJECTED        => lang('Reject'),
4885                                TENTATIVE       => lang('Tentative')                           
4886                        );
4887                        $str = '';
4888                        while(list($param,$text) = each($response_choices))
4889                        {
4890                                $var = Array(
4891                                        'action_url_button'     => $this->page('set_action','&cal_id='.$cal_id.'&action='.$param),
4892                                        'action_text_button'    => '  '.$text.'  ',
4893                                        'action_confirm_button' => '',
4894                                        'action_extra_field'    => ''
4895                                );
4896                                $p->set_var($var);
4897                                $str .= '<td>'.$p->fp('out','form_button').'</td>'."\n";
4898                        }
4899                        if ($this->bo->return_to)
4900                        {
4901                                $var = Array(
4902                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to),
4903                                        'action_text_button'    => lang('cancel'),
4904                                        'action_confirm_button' => '',
4905                                        'action_extra_field'    => ''
4906                                );
4907                                $p->set_var($var);
4908                                $str .= '<td>'.$p->fp('out','form_button').'</td>'."\n";
4909                        }
4910                        $str = '<td><b>'.$GLOBALS['phpgw']->common->grab_owner_name($this->bo->owner).":</b></td>\n".$str;
4911
4912                        return '<table width="100%"><tr align="center">'."\n".$str.'</tr></table>'."\n";
4913                }
4914
4915                function accounts_popup()
4916                {
4917                        $GLOBALS['phpgw']->accounts->accounts_popup('calendar');
4918                       
4919                }
4920
4921                function edit_form($param)
4922                {
4923                        if(!is_array($param))
4924                        {
4925                                $this->index();
4926                        }
4927                       
4928                        if(isset($param['event']))
4929                        {
4930                                $event = $param['event'];
4931                        }
4932                       
4933                        $hourformat = substr($this->bo->users_timeformat,0,1);
4934                       
4935                        // $sb = CreateObject('phpgwapi.sbox');
4936                        $sb = CreateObject('phpgwapi.sbox2');
4937                        $jscal = CreateObject('phpgwapi.jscalendar');   // before phpgw_header() !!!
4938                       
4939                        unset($GLOBALS['phpgw_info']['flags']['noheader']);
4940                        unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
4941                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
4942                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
4943                        $GLOBALS['phpgw_info']['flags']['app_header'] = $event['id'] ? lang('Editing event') : lang('Adding event');
4944                        if ($param['plain'] != "True"){
4945                                $GLOBALS['phpgw']->common->phpgw_header();
4946                        }
4947                        else{
4948                                $GLOBALS['phpgw_info']['theme']['row_on'] = "F8F8F8";
4949                                $GLOBALS['phpgw_info']['theme']['row_off'] = "F8F8F8";
4950                        }
4951
4952                        $p = &$GLOBALS['phpgw']->template;
4953                        $p->set_file(
4954                                Array(
4955                                        'edit'          => 'edit.tpl',
4956                                        'form_button'   => 'form_button_script.tpl'
4957                                )
4958                        );
4959                        $p->set_block('edit','edit_entry','edit_entry');
4960                        $p->set_block('edit','list','list');
4961                        $p->set_block('edit','hr','hr');
4962                       
4963                        $vars = Array(
4964                                'font'                  => $this->theme['font'],
4965                                'bg_color'              => $this->theme['bg_text'],
4966                                'action_url'            => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.bocalendar.update')),
4967                                'accounts_link'         => $GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.accounts_popup'),
4968                                'common_hidden' => '<input type="hidden" name="cal[id]" value="'.$event['id'].'">'."\n"
4969                                        . '<input type="hidden" name="cal[owner]" value="'.$event['owner'].'">'."\n"
4970                                        . '<input type="hidden" name="cal[uid]" value="'.$event['uid'].'">'."\n"
4971                                        . ($_GET['cal_id'] && $event['id'] == 0?'<input type="hidden" name="cal[reference]" value="'.$_GET['cal_id'].'">'."\n":
4972                                        (@isset($event['reference'])?'<input type="hidden" name="cal[reference]" value="'.$event['reference'].'">'."\n":''))
4973                                        . (@isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) && $GLOBALS['phpgw_info']['server']['deny_user_grants_access']?
4974                                        '<input type="hidden" name="participants[]" value="'.$this->bo->owner.'">'."\n":''),
4975                                'errormsg'              => ($param['cd']?$GLOBALS['phpgw']->common->check_code($param['cd']):'')
4976                        );
4977                       
4978                        $p->set_var($vars);
4979
4980// Brief Description
4981                        $var['title'] = Array(
4982                                'tr_color' => $this->theme['th_bg'],
4983                                'field' => lang('Title'),
4984                                'data'  => '<input name="cal[title]" size="45" maxlength="80" value="'.$event['title'].'">'
4985                        );
4986
4987// Full Description
4988                        $var['description'] = Array(
4989                                'field' => lang('Full Description'),
4990                                'data'  => '<textarea name="cal[description]" rows="5" cols="40" wrap="virtual" maxlength="2048">'.$event['description'].'</textarea>'
4991                        );
4992
4993// Display Categories
4994                        if(strpos($event['category'],','))
4995                        {
4996                                $temp_cats = explode(',',$event['category']);
4997                                @reset($temp_cats);
4998                                while(list($key,$value) = each($temp_cats))
4999                                {
5000                                        $check_cats[] = (int)$value;
5001                                }
5002                        }
5003                        elseif($event['category'])
5004                        {
5005                                $check_cats[] = (int)$event['category'];
5006                        }
5007                        else
5008                        {
5009                                $check_cats[] = 0;
5010                        }
5011                        $var['category'] = Array(
5012                                'field' => lang('Category'),
5013                                'data'  => '<select name="categories[]" onchange="javascript:updateTitleField(this)" multiple size="5">'.$this->cat->formated_list('select','all',$check_cats,True).'</select>'
5014                        );
5015
5016// Location
5017                        $var['location'] = Array(
5018                                'field' => lang('Location'),
5019                                'data'  => '<input name="cal[location]" size="45" maxlength="255" value="'.$event['location'].'">'
5020                        );
5021
5022// Date
5023
5024                        $start = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
5025                        $var['startdate'] = Array(
5026                                'field' => lang('Start Date'),
5027/*
5028                                'data'  => $GLOBALS['phpgw']->common->dateformatorder(
5029                                   $sb->getYears('start[year]',(int)$GLOBALS['phpgw']->common->show_date($start,'Y')),
5030                                   $sb->getMonthText('start[month]',(int)$GLOBALS['phpgw']->common->show_date($start,'n')),
5031                                   $sb->getDays('start[mday]',(int)$GLOBALS['phpgw']->common->show_date($start,'d'))
5032                                )
5033*/
5034                                'data' => $jscal->input('start[str]',$start)
5035                        );
5036
5037// Time
5038                        if ($this->bo->prefs['common']['timeformat'] == '12')
5039                        {
5040                                $str .= '<input type="radio" name="start[ampm]" value="am"'.($event['start']['hour'] >= 12?'':' checked').'>am'."\n"
5041                                        . '<input type="radio" name="start[ampm]" value="pm"'.($event['start']['hour'] >= 12?' checked':'').'>pm'."\n";
5042                        }
5043                        $var['starttime'] = Array(
5044                                'field' => lang('Start Time'),
5045                                '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
5046                        );
5047
5048// End Date
5049                        $end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
5050                        $var['enddate'] = Array(
5051                                'field' => lang('End Date'),
5052/*
5053                                'data'  => $GLOBALS['phpgw']->common->dateformatorder(
5054                                   $sb->getYears('end[year]',(int)$GLOBALS['phpgw']->common->show_date($end,'Y')),
5055                                   $sb->getMonthText('end[month]',(int)$GLOBALS['phpgw']->common->show_date($end,'n')),
5056                                   $sb->getDays('end[mday]',(int)$GLOBALS['phpgw']->common->show_date($end,'d'))
5057                                )
5058*/
5059                                'data' => $jscal->input('end[str]',$end)
5060                        );
5061
5062// End Time
5063                        if ($this->bo->prefs['common']['timeformat'] == '12')
5064                        {
5065                                $str = '<input type="radio" name="end[ampm]" value="am"'.($event['end']['hour'] >= 12?'':' checked').'>am'."\n"
5066                                        . '<input type="radio" name="end[ampm]" value="pm"'.($event['end']['hour'] >= 12?' checked':'').'>pm'."\n";
5067                        }
5068                        $var['endtime'] = Array(
5069                                'field' => lang('End Time'),
5070                                '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
5071                        );
5072
5073// Priority
5074                        $var['priority'] = Array(
5075                                'field' => lang('Priority'),
5076                                'data'  => $sb->getPriority('cal[priority]',$event['priority'])
5077                        );
5078
5079                        // Access
5080                        $var['access'] = Array(
5081                        'field' => lang('Type'),
5082                        '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>'
5083                        ); //event['public']
5084
5085                        // Participants
5086                        if(!isset($GLOBALS['phpgw_info']['server']['deny_user_grants_access']) || !$GLOBALS['phpgw_info']['server']['deny_user_grants_access'])
5087                        {
5088                                switch($GLOBALS['phpgw_info']['user']['preferences']['common']['account_selection'])
5089                                {
5090                                        case 'popup':
5091                                                while (is_array($event['participants']) && list($id) = each($event['participants']))
5092                                                {
5093                                                        if($id != (int)$event['owner'])
5094                                                        {
5095                                                                $str .= '<option value="' . $id.$event['participants'][$id] . '"'.($event['participants'][$id]?' selected':'').'>('.$GLOBALS['phpgw']->accounts->get_type($id)
5096                                                                                .') ' . $GLOBALS['phpgw']->common->grab_owner_name($id) . '</option>' . "\n";
5097                                                        }
5098                                                }
5099                                                $var['participants'] = array
5100                                                (
5101                                                        'field' => '<input type="button" value="' . lang('Participants') . '" onClick="accounts_popup();">' . "\n"
5102                                                                        . '<input type="hidden" name="accountid" value="' . $accountid . '">',
5103                                                        'data'  => "\n".'   <select name="participants[]" multiple size="7">' . "\n" . $str . '</select>'
5104                                                );
5105                                                break;
5106                                        default:
5107                                                foreach($event['participants'] as $id => $participant)
5108                                                {
5109                                                        if (($id != $event['owner']) && ($id != ""))
5110                                                        {
5111                                                                $GLOBALS['phpgw']->accounts->get_account_name($id, $lid, $fname, $lname);
5112                                                                $cn = $fname.' '.$lname;                                                       
5113                                                                $option = '    <option  value="' . $id.$participant . '">'.$cn.'</option>'."\n";
5114                                                                $str .= $option;
5115                                                        }                                                               
5116                                                }
5117                                                $str = utf8_decode($str);
5118                                                $footer_ext_participantes =     '<br>&nbsp;&nbsp;'.lang("The email addresses must be separated by ','");                                               
5119                                               
5120                                                $var['participants'] = array
5121                                                (
5122                                                        'field' => lang('Participants'),                                                       
5123                                                        'data'  => "
5124                                                                        <table width='100%' border='0'>
5125                                                                                <tr>
5126                                                                                        <td width='30%'>                                                                               
5127                                                                                                <center>Participantes</center>                                                                                         
5128                                                                                        </td>
5129                                                                                        <td width='8%' >&nbsp;</td>
5130                                                                                        <td width='40%'>&nbsp;</td>
5131                                                                                </tr>                                                                                                                                           
5132                                                                                <tr>           
5133                                                                                        <td width='30%'>                                                                                       
5134                                                                                                <center><select id='user_list' name='participants[]' style='width: 220px' multiple size='7'>".$str."</select></center>                                                                         
5135                                                                                        </td>                           
5136                                                                                        <td width='8%'>
5137                                                                                        <center>
5138                                                                                                <table width='100%' border='0'>                                                                 
5139                                                                                                        <tr height='5'><td>&nbsp;</td></tr>                                                                     
5140                                                                                                        <tr><td align='center'>                                                                 
5141                                                                                                                <button type='button' onClick='javascript:openListUsers(340,533, "
5142                                                                                                                .$event['owner'].
5143                                                                                                                ")'><img src='calendar/templates/".$_SESSION['phpgw_info']['calendar']['user']['preferences']['common']['template_set']."/images/add.png' style='vertical-align: middle;' >&nbsp;Adicionar</button>
5144                                                                                                                </td>
5145                                                                                                        </tr>                                                   
5146                                                                                                        <tr height='5'><td>&nbsp;</td></tr>
5147                                                                                                        <tr><td  align='center'>
5148                                                                                                                <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>
5149                                                                                                                </td>
5150                                                                                                        </tr>
5151                                                                                                </table>
5152                                                                                        </center>
5153                                                                                        </td>
5154                                                                                        <td width='40%'>&nbsp;</td>
5155                                                                                </tr>
5156                                                                                </table>
5157                                                                                <script src='calendar/js/edit.js' type='text/javascript'></script>
5158                                                                        "
5159                                                );
5160                                                // if ExpressoMail 1.2 has been installed and enabled, show the plugin using AJAX.
5161                                                if($GLOBALS['phpgw_info']['server']['cal_expressoMail']) {                                                     
5162                                                        $module_name = 'expressoMail'.(str_replace("1.","1_",$GLOBALS['phpgw_info']['server']['cal_expressoMail']));
5163
5164                                                        if($GLOBALS['phpgw_info']['user']['apps'][$module_name]){                                                               
5165                                                                $ldap_manager = CreateObject('contactcenter.bo_ldap_manager');
5166                                                                $_SESSION['phpgw_info']['expressomail']['user'] = $GLOBALS['phpgw_info']['user'];
5167                                                                $_SESSION['phpgw_info']['expressomail']['user']['owner'] = $event['owner'];
5168                                                                $_SESSION['phpgw_info']['expressomail']['server'] = $GLOBALS['phpgw_info']['server'];
5169                                                                $_SESSION['phpgw_info']['expressomail']['ldap_server'] = $ldap_manager ? $ldap_manager->srcs[1] : null;
5170                                                                $context = $GLOBALS['phpgw_info']['server']['ldap_context'];
5171                                                                $user_context = array();
5172                                                                foreach(explode(",",$GLOBALS['phpgw_info']['user']['account_dn']) as $i => $dn_part){
5173                                                                        if($i)
5174                                                                                $user_context[] = $dn_part;
5175                                                                }
5176                                                                // Prepara o contexto do usuario com sua OU raiz, pois ele pode pertencer a uma OU de nivel N.
5177                                                                $user_ou = explode(",",str_replace($context,"",implode(",",$user_context)));                                                           
5178                                                                $user_context = trim(strtolower($user_ou[count($user_ou) - 2].",".$context));
5179                                                                // Fim         
5180                                                                // Verifica o tipo da visualização da árvore LDAP, configurado no admin da Agenda
5181                                                                $recursive = $GLOBALS['phpgw_info']['server']['cal_type_tree_participants'] == '1' ? true : false;
5182                                                                //$combo_org = $this->get_organizations(trim(strtolower($context)),$user_context, $recursive);
5183                                                                $footer_ext_participantes = lang("Tip: To search in the <b>Global Catalog</b>, type the <b>F9</b> key, like the ExpressoMail.");
5184                                                                //Caso o minimo de caracteres para a busca nao tenha sido preenchido ele sera por padrao = 3
5185                                                                if(!$GLOBALS['phpgw_info']['server']['min_num_characters']){
5186                                                                        $GLOBALS['phpgw_info']['server']['min_num_characters'] = 0;
5187                                                                }
5188
5189                                                                if ($GLOBALS['phpgw_info']['server']['cal_type_tree_participants'] == '3'){
5190                                                                        $combo_org = '<option value='.$context.'>'.strtoupper($context).'</option>';
5191                                                                }else{
5192                                                                        $combo_org = $this->get_organizations(trim(strtolower($context)),$user_context, $recursive);
5193                                                                }
5194
5195                                                                if ($param['plain'] != "True"){
5196
5197                                                                        // Begin load array lang
5198                                                                        ob_start();
5199                                                                        //@include($module_name.'/inc/load_lang.php');
5200                                                                        $load_lang_vars = ob_get_contents();
5201                                                                        ob_end_clean();
5202                                                                        // End load array_lang
5203                                                                }
5204
5205                                                                $var['participants'] = array
5206                                                                (
5207                                                                        'field' => '
5208                                                                        <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\'>
5209        <iframe src=\'#\' id=\'frame_disponibility\' width=\'500\' marginHeight=\'0\' marginWidth=\'0\' height=\'200px\'></iframe>
5210</div>
5211                                                                        '.lang('Participants'),
5212                                                                        'data'  => '
5213                                                                                        <input type="hidden" id="txt_loading" value="'.lang("Loading").'">' .
5214                                                                                        '<input type="hidden" id="txt_searching" value="'.lang("Searching").'">' .
5215                                                                                        '<input type="hidden" id="txt_users" value="'.lang("Users").'">' .                                                     
5216                                                                                        '<input type="hidden" id="txt_groups" value="'.lang("Groups").'">' .
5217                                                                                        '<table width="100%" border="0">'.
5218                                                                                        '<tr>'.
5219                                                                                        '<td width="25%"><br><br>'.
5220                                                                                        '<br><br>&nbsp;&nbsp;<b>'.lang("Event's participants").'</b><br>'.
5221                                                                                        '       <select id="user_list" name="participants[]" style="width: 300px" multiple size="13">'.$str.'</select>'.
5222                                                                                        '</td>'.
5223                                                                                        '<td width="30px" valign="middle" align="center">&nbsp;'.
5224                                                                                        '</td>'.
5225                                                                                        '<td valign="bottom">'.
5226                                                                                        '       '.lang("Organization").': '.
5227                                                                                        '       <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>'.
5228                                                                                        '       <br>'.
5229                                                                                        '       <font color="red"><span id="cal_span_searching">&nbsp;</span></font>'.                                                                 
5230                                                                                        '       <br>'.lang("Search for").':'.
5231                                                                                        '       <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>'.
5232                                                                                        '       <b>'.lang("Available users and groups").'</b><br>'.
5233                                                                                        '       <select id="user_list_in" style="width: 300px" multiple size="13"></select>'.
5234                                                                                        '</td>'.
5235                                                                                        '</tr>'.
5236                                            '<tr>'.
5237                                            '<td width="25%">'.
5238                                            '<button type="button" id="time_map" onClick="javascript:show_disponibility();">'.lang("Disponibility map").'</button>'.
5239                                            '</td>'.
5240                                            '<td width="30px" valign="middle" align="center">&nbsp;'.
5241                                                                                        '</td>'.
5242                                            '<td valign="bottom">'.
5243                                            '<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>'.
5244                                                                                        '&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>'.
5245                                            '</td>'.
5246                                                                                        '</tr>'.
5247                                                                                        '</table>'.
5248                                                                                        '<script type="text/javascript" src="phpgwapi/js/wz_dragdrop/wz_dragdrop.js"></script>'.
5249                                                                                        '<script type="text/javascript" src="phpgwapi/js/dJSWin/dJSWin.js"></script>'.         
5250                                                                                        "<script src='calendar/js/edit_exmail.js' type='text/javascript'></script>" .
5251                                                                                        $load_lang_vars.                                                                                                                                                       
5252                                                                                        "<script src='".$module_name."/js/connector.js' type='text/javascript'></script>".
5253                                                                                        "<script type='text/javascript'>var DEFAULT_URL = '".$module_name."/controller.php?action=';</script> ".                                                                                       
5254                                                                                        "<script type='text/javascript'>" .
5255                                                                                        "var timeout_get_available_users = setTimeout('get_available_users(\"".$module_name."\",\'".$user_context."\',\'".($recursive ? "" : "search")."\',\'".$GLOBALS['phpgw_info']['server']['auto_search']."\')',1000);".
5256                                                                                        "</script> "
5257                                                                );
5258                                                        }                                               
5259                                                }                                               
5260                                               
5261                                                $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" .
5262                                                        " 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" ' .
5263                                                        '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">'.
5264                                                        '<tr>'.
5265                                                        '<td>'.
5266                                                        '&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">' .
5267                                                        '&nbsp;&nbsp;<a title="'.lang("Close").'" name="b_ext_participants" onClick="javascript:hideExParticipants(this,\''.$module_name.'\')" href="#a_ext_participants">['.lang("Close").']</a>&nbsp;'.                                                                                                               
5268                                                        '</td>'.
5269                                                        '</tr>'.
5270                                                        '<tr>'.
5271                                                        '<td>'.
5272                                                        '&nbsp;&nbsp;>> '.lang("It types below the email addresses, if you want to invite other people out of this system").':'.
5273                                                        '&nbsp;&nbsp;<br><textarea name="ex_participants" id="ex_participants" cols="70" rows="2">'.$event['ex_participants'].'</textarea><br>&nbsp;&nbsp;'.
5274                                                        $footer_ext_participantes.
5275                                                        '</tr>'.                                                       
5276                                                        '</table>';
5277                                                break;
5278                                               
5279                                }
5280                                if((($event['id'] > 0) && isset($event['participants'][$event['owner']])) || !$event['id'])
5281                                {
5282                                        $checked = ' checked';
5283                                }
5284                                else
5285                                {
5286                                        $checked = '';
5287                                }
5288                                $var['owner'] = Array(
5289                                        'field' => $GLOBALS['phpgw']->common->grab_owner_name($event['owner']).' '.lang('Participates'),
5290                                        'data'  => '<input type="checkbox" id="usuarioParticipa" name="participants[]" value="'.$event['owner'].$event['participants'][$event['owner']].'"'.$checked.'>'
5291                                );
5292                        }
5293
5294// Reminder
5295                        // The user must use "Alarm Management" to change/modify an alarm
5296                        // so only display the email reminder fields if this is a new event
5297                        // i.e. not editing an existing event
5298
5299                        if ($event['id'] == 0) {
5300                                // get defaults
5301                                $days = $this->bo->prefs['calendar']['default_email_days'];
5302                                $hours = $this->bo->prefs['calendar']['default_email_hours'];
5303                                $min = $this->bo->prefs['calendar']['default_email_min'];
5304                                if (count($event['alarm']) > 1)
5305                                {
5306                                        // this should not happen because when creating a new event
5307                                        // only 1 alarm is displayed on the screen
5308                                        // if the user wants more than 1 alarm they should
5309                                        // use "Alarm Management"
5310                                        echo '<!-- how did this happen, too many alarms -->'."\n";
5311                                }
5312                                // if there was an error pick up what the user entered
5313                                if (@isset($event['alarm']))
5314                                {
5315                                        @reset($event['alarm']);
5316                                        // just get the first one see above!!!
5317                                        list($key,$alarm) = @each($event['alarm']);
5318
5319
5320                                        //if abaixo trata o caso de um evento repetido nao ter uma data final;
5321                                        //se isto acontecer, nao havera alarmes definidos;
5322                                        //$alarm['time'] recebe $start para $days, $hours e $min ficarem iguais a 0
5323                                        if(!$alarm['time']) {
5324                                                $alarm['time'] = $start;
5325                                        }
5326
5327                                        $diff  = $start - $alarm['time'];
5328                                        $days  = (int)($diff / (24*3600));
5329                                        $hours = (int)(($diff - ($days * 24 * 3600))/3600);
5330                                        $min   = (int)(($diff - ($days * 24 * 3600) - ($hours * 3600))/60);
5331
5332                                        if(@isset($_POST['edit_type']) && $_POST['edit_type'] == 'single') {
5333                                                $days = $diff;
5334                                        }
5335                                }
5336
5337                                // days
5338                                $dout = '<select name="cal[alarmdays]">'."\n";
5339                                for($i=0;$i<32;$i++)
5340                                {
5341                                        $dout .= '<option value="'.$i.'"'.($i==$days?' selected':'').'>'.$i.'</option>'."\n";
5342                                }
5343                                $dout .= '</select>'."\n".' '.lang('days').' ';
5344                                // hours
5345                                $hout = '<select name="cal[alarmhours]">'."\n";
5346                                for($i=0;$i<25;$i++)
5347                                {
5348                                        $hout .= '<option value="'.$i.'"'.($i==$hours?' selected':'').'>'.$i.'</option>'."\n";
5349                                }
5350                                $hout .= '</select>'."\n".' '.lang('hours').' ';
5351                                // minutes
5352                                $mout = '<select name="cal[alarmminutes]">'."\n";
5353                                for($i=0;$i<61;$i++)
5354                                {
5355                                        $mout .= '<option value="'.$i.'"'.($i==$min?' selected':'').'>'.$i.'</option>'."\n";
5356                                }
5357                                $mout .= '</select>'."\n".' '.lang('minutes').' ';
5358
5359                                $var['alarm'] = Array(
5360                                        'field' => lang('Alarm'),
5361                                        'data'  => $dout.$hout.$mout.lang('before the event')
5362                                );
5363
5364                        }
5365
5366// Repeat Type
5367                        $str = '';
5368                        foreach($this->bo->rpt_type as $type => $label)
5369                        {
5370                                $str .= '<option value="'.$type.'"'.($event['recur_type']==$type?' selected':'').'>'.lang($label).'</option>';
5371                        }
5372                        $var['recure_type'] = Array(
5373                                'field' => lang('Repeat Type'),
5374                                'data'  => '<select name="cal[recur_type]">'."\n".$str.'</select>'."\n"
5375                        );
5376
5377                        if($event['recur_enddate']['year'] != 0 && $event['recur_enddate']['month'] != 0 && $event['recur_enddate']['mday'] != 0)
5378                        {
5379                                $checked = ' checked';
5380                                $recur_end = $this->bo->maketime($event['recur_enddate']) - $GLOBALS['phpgw']->datetime->tz_offset;
5381                        }
5382                        else
5383                        {
5384                                $checked = '';
5385                                $recur_end = $this->bo->maketime($event['start']) + 86400 - $GLOBALS['phpgw']->datetime->tz_offset;
5386                        }
5387
5388                        $var['recure_enddate'] = Array(
5389                                'field' => lang('Repeat End Date'),
5390                                'data'  => '<input type="checkbox" name="cal[rpt_use_end]" value="y"'.$checked.'>'.lang('Use End Date').'  '.
5391/*
5392                                        $GLOBALS['phpgw']->common->dateformatorder(
5393                                                $sb->getYears('recur_enddate[year]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'Y')),
5394                                                $sb->getMonthText('recur_enddate[month]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'n')),
5395                                                $sb->getDays('recur_enddate[mday]',(int)$GLOBALS['phpgw']->common->show_date($recur_end,'d'))
5396                                        )
5397*/
5398                                        $jscal->input('recur_enddate[str]',$recur_end)
5399                        );
5400
5401                        $i = 0; $boxes = '';
5402                        foreach ($this->bo->rpt_day as $mask => $name)
5403                        {
5404                                $boxes .= '<input type="checkbox" name="cal[rpt_day][]" value="'.$mask.'"'.($event['recur_data'] & $mask ? ' checked' : '').'>&nbsp;'.lang($name)."\n";
5405                                if (++$i == 5) $boxes .= '<br>';
5406                        }
5407                        $var['recure_day'] = Array(
5408                                'field' => lang('Repeat Day').'<br>'.lang('(required for weekly recursivity)'),
5409                                'data'  => $boxes
5410                        );
5411
5412                        $var['recure_interval'] = Array(
5413                                'field' => lang('Interval'),
5414                                'data'  => '<input name="cal[recur_interval]" size="4" maxlength="4" value="'.$event['recur_interval'].'">'
5415                        );
5416//                      $this->output_template_array($p,'row','list',Array('data' => '<script src="simple_show_hide.js" type="text/javascript"></script>'));
5417
5418                        if (!isset($this->fields))
5419                        {
5420                                $this->custom_fields = CreateObject('calendar.bocustom_fields');
5421                                $this->fields = &$this->custom_fields->fields;
5422                                $this->stock_fields = &$this->custom_fields->stock_fields;
5423                        }
5424                        $this->output_template_array($p,'row','list',$var['access']);
5425                        unset($var['access']);
5426
5427                        $preserved = False;
5428                        foreach($this->fields as $field => $data)
5429                        {
5430                                if (!$data['disabled'])
5431                                {
5432                                        if (isset($var[$field]))
5433                                        {
5434                                                switch($field)
5435                                                {
5436                                                        case 'startdate':
5437                                                                $this->output_template_array($p,'row','list',$var['startdate']);
5438                                                                $this->output_template_array($p,'row','list',$var['starttime']);
5439                                                                break;
5440                                                        case 'enddate':
5441                                                                $this->output_template_array($p,'row','list',$var['enddate']);
5442                                                                $this->output_template_array($p,'row','list',$var['endtime']);
5443                                                                break;
5444                                                        case 'recure_type':
5445                                                                $p->set_var('tr_color',$this->theme['th_bg']);
5446                                                                $p->set_var('hr_text','<center id="rpt_label"><b>'.lang('Repeating Event Information').'</b></center>');
5447                                                                $p->parse('row','hr',True);
5448                                                                $this->output_template_array($p,'row','list',$var['recure_type']);
5449                                                                $this->output_template_array($p,'row','list',$var['recure_enddate']);
5450                                                                $this->output_template_array($p,'row','list',$var['recure_day']);
5451                                                                $this->output_template_array($p,'row','list',$var['recure_interval']);
5452                                                                break;
5453                                                        default:
5454                                                                $this->output_template_array($p,'row','list',$var[$field]);
5455                                                }
5456                                        }
5457                                        elseif (!isset($this->stock_fields[$field]))    // Custom field
5458                                        {
5459                                                $lang = lang($name = substr($field,1));
5460                                                $size = 'SIZE='.($data['shown'] ? $data['shown'] : ($data['length'] ? $data['length'] : 30)).
5461                                                        ' MAXLENGTH='.($data['length'] ? $data['length'] : 255);
5462                                                $v = array(
5463                                                        'field' => $lang == $name.'*' ? $name : $lang,
5464                                                        'data'  => '<input name="cal['.htmlspecialchars($field).']" '.$size.' value="'.$event['#'.$name].'">'
5465                                                );
5466                                                if ($data['title'])
5467                                                {
5468                                                        $v['tr_color'] = $this->theme['th_bg'];
5469                                                }
5470                                                if (!$data['length'] && $data['title'])
5471                                                {
5472                                                        $p->set_var('tr_color',$this->theme['th_bg']);
5473                                                        $p->set_var('hr_text','<center><b>'.$v['field'].'</b></center>');
5474                                                        $p->parse('row','hr',True);
5475                                                }
5476                                                else
5477                                                {
5478                                                        $this->output_template_array($p,'row','list',$v);
5479                                                }
5480                                        }
5481                                }
5482                                else    // preserve disabled fields
5483                                {
5484                                        switch ($field)
5485                                        {
5486                                                case 'owner':
5487                                                        $preserved[$field] = $event['id'] ? $event['participants'][$event['owner']] : 'A';
5488                                                        break;
5489                                                case 'recure_type':
5490                                                        foreach(array('recur_type','recur_enddate','recur_data','recur_interval') as $field)
5491                                                        {
5492                                                                $preserved[$field] = $event[$field];
5493                                                        }
5494                                                        break;
5495                                                case 'startdate':
5496                                                case 'enddate':
5497                                                        $field = substr($field,0,-4);
5498                                                default:
5499                                                        $preserved[$field] = $event[$field];
5500                                        }
5501                                }
5502                        }
5503                        unset($var);
5504                        if (is_array($preserved))
5505                        {
5506                                //echo "preserving<pre>"; print_r($preserved); echo "</pre>\n";
5507                                $p->set_var('common_hidden',$p->get_var('common_hidden').'<input type="hidden" name="preserved" value="'.htmlspecialchars(serialize($preserved)).'">'."\n");
5508                        }
5509                        $p->set_var('submit_button',lang('Save'));
5510
5511                        $delete_button = $cancel_button = '';
5512                        if ($event['id'] > 0)
5513                        {
5514                                $var = Array(
5515                                        'action_url_button'     => $this->page('delete','&cal_id='.$event['id']),
5516                                        'action_text_button'    => lang('Delete'),
5517                                        'action_confirm_button' => "onClick=\"return confirm('".lang('Are you sure want to delete this entry?\\nThis will delete this entry for all users.')."')\"",
5518                                        'action_extra_field'    => '',
5519                                        'button_id'     =>      'delete_button'
5520                                );
5521                                $p->set_var($var);
5522                                $delete_button = $p->fp('out','form_button');
5523                        }
5524                        $p->set_var('delete_button',$delete_button);
5525                        $p->set_var('alert_msg',lang('Required field (category) is empty'));
5526
5527                        if ($this->bo->return_to)
5528                        {
5529                                $var = Array(
5530                                        'action_url_button'     => $GLOBALS['phpgw']->link('/index.php','menuaction='.$this->bo->return_to),
5531                                        'action_text_button'    => lang('Cancel'),
5532                                        'action_confirm_button' => '',
5533                                        'action_extra_field'    => '',
5534                                        'button_id'     =>      'cancel_button'
5535                                );
5536                                $p->set_var($var);
5537                                $cancel_button = $p->fp('out','form_button');
5538                        }
5539                        $p->set_var('cancel_button',$cancel_button);
5540                        $p->pparse('out','edit_entry');
5541                }
5542               
5543                // modify list of an event's external participants (i.e. non pgpgw users)
5544                //
5545                function modify_ext_partlist()
5546                {
5547                        $GLOBALS['phpgw_info']['flags']['noheader'] = True;
5548                        $GLOBALS['phpgw_info']['flags']['nonavbar'] = True;
5549                        $GLOBALS['phpgw_info']['flags']['noappheader'] = True;
5550                        $GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
5551
5552                        $total_contacts = 0;
5553                        $participant = array();
5554                        $control_data= array();
5555
5556                        $control_data['action'] = '';
5557                        $control_data['delete'] = array();
5558                        $control_data['part'] = array();
5559
5560                        $p = CreateObject('phpgwapi.Template',$this->template_dir);
5561                        $p->set_file(
5562                                Array(
5563                                        'T_edit_partlist' => 'edit_partlist.tpl',
5564                                        'T_edit_partlist_blocks' => 'edit_partlist_blocks.tpl'
5565                                )
5566                        );
5567
5568                        $p->set_block('T_edit_partlist_blocks','B_alert_msg','V_alert_msg');
5569                        $p->set_block('T_edit_partlist_blocks','B_partlist','V_partlist');
5570                        $p->set_block('T_edit_partlist_blocks','B_participants_none','V_participants_none');
5571                        $p->set_block('T_edit_partlist_blocks','B_delete_btn','V_delete_btn');
5572
5573                        global $query_addr;
5574                        $sb = CreateObject('phpgwapi.sbox2');
5575                        $addy = $sb->getAddress('addr','',$query_addr);
5576
5577                        $add_ext  = $addy['doSearchFkt'];
5578                        $add_ext .= $addy['addr_title']!=lang('Address Book')?$addy['addr_title']:'';
5579                        $add_ext .= "&nbsp;".$addy['addr'].$addy['addr_nojs'];
5580
5581                        $p->set_var('text_add_name',$add_ext);
5582
5583                        if(isset($_GET['part']) && $_GET['part'])
5584                        {
5585                                $control_data['part'] = split(",", $_GET['part']);
5586                        }
5587                        else
5588                        {
5589                                $control_data['part'] = $_POST['participant'];
5590                                $control_data['action'] = $_POST['action'];
5591                                $control_data['delete'] = $_POST['delete'];
5592                        }
5593
5594                        for ($i=0; $i<count($control_data['part']); $i++)
5595                        {
5596                                $id = $control_data['part'][$i];
5597                                list($contact) = $this->read_contact($id);
5598
5599                                $participant[$id] = array();
5600                                $participant[$id]['name'] = $contact['n_given'].' '.$contact['n_family'];
5601                        }
5602
5603                        if ($control_data['action'] == lang('Delete selected contacts'))
5604                        {
5605                                for ($i=0; $i<count($control_data['delete']); $i++)
5606                                {
5607                                        $id = $control_data['delete'][$i];
5608                                        unset($participant[$id]);
5609                                }
5610                        }
5611
5612                        if ($control_data['action'] == lang('Add Contact'))
5613                        {
5614                                $id = $_POST['id_addr'];
5615                                if (isset($id) && (int)$id != 0)
5616                                {
5617                                        list($contact) = $this->read_contact($id);
5618                                        $participant[$id] = array();
5619                                        $participant[$id]['name'] = $contact['n_given'].' '.$contact['n_family'];
5620                                }
5621                        }
5622
5623                        // create list of currently selected contacts
5624                        //
5625                        while(list($id,$contact) = each($participant))
5626                        {
5627                                $p->set_var('hidden_delete_name','participant[]');
5628                                $p->set_var('hidden_delete_value',$id);
5629                                $p->set_var('ckbox_delete_name','delete[]');
5630                                $p->set_var('ckbox_delete_value',$id);
5631                                $p->set_var('ckbox_delete_participant',$contact['name']);
5632                                $p->parse('V_partlist','B_partlist',True);
5633                                $total_contacts++;
5634                        }
5635
5636                        if ($total_contacts == 0)
5637                        {
5638                                // no contacts have been selected
5639                                // => clear the delete form, remove delete button and show the none block
5640                                //
5641                                $p->set_var('V_partlist','');
5642                                $p->set_var('V_delete_btn','');
5643                                $p->set_var('text_none',lang('None'));
5644                                $p->parse('V_participants_none','B_participants_none');
5645                        }
5646                        else
5647                        {
5648                                // at least one contact has been selected
5649                                // => clear the none block, fill the delete form and add delete button
5650                                //
5651                                $p->set_var('V_participants_none','');
5652                                $p->set_var('btn_delete_name','action');
5653                                $p->set_var('btn_delete_value',lang('Delete selected contacts'));
5654                                $p->parse('V_delete_btn','B_delete_btn');
5655                        }
5656
5657                        $body_tags  = 'bgcolor="'.$GLOBALS['phpgw_info']['theme']['bg_color']
5658                                                        . '" alink="'.$GLOBALS['phpgw_info']['theme']['alink']
5659                                                        . '" link="'.$GLOBALS['phpgw_info']['theme']['link']
5660                                                        .'" vlink="'.$GLOBALS['phpgw_info']['theme']['vlink'].'"';
5661
5662                        $form_action = $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 'calendar.uicalendar.modify'));
5663
5664                        $charset = lang('charset');
5665                        $p->set_var('charset',$charset);
5666                        $p->set_var('page_title',$GLOBALS['phpgw_flags']['currentapp']
5667                                . ' - ' .lang('External Participants'));
5668                        $p->set_var('font_family',$GLOBALS['phpgw_info']['theme']['font']);
5669                        $p->set_var('body_tags',$body_tags);
5670                        $p->set_var('form_method','POST');
5671                        $p->set_var('form_action',$form_action);
5672                        $p->set_var('text_add_contact',lang('External Participants'));
5673                        $p->set_var('text_contacts_selected',lang('Selected contacts (%1)',$total_contacts));
5674                        $p->set_var('btn_add_name','action');
5675                        $p->set_var('btn_add_value',lang('Add Contact'));
5676                        $p->set_var('btn_done_name','done');
5677                        $p->set_var('btn_done_value',lang('Done'));
5678                        $p->set_var('btn_done_js','copyback()');
5679                        $p->set_var('form1_name','ext_form');
5680
5681                        $p->pfp('out','T_edit_partlist');
5682                }
5683
5684                function read_contact($id)
5685                {
5686                        $query_fields = Array(
5687                                'n_given' => 'n_given',
5688                                'n_family' => 'n_family',
5689                                'email' => 'email',
5690                                'email_home' => 'email_home'
5691                        );
5692
5693                        /*
5694                        if ($this->rights & PHPGW_ACL_READ)
5695                        {
5696                                return $this->contacts->read_single_entry($id,$fields);
5697                        }
5698                        else
5699                        {
5700                                $rtrn = array(0 => array('No access' => 'No access'));
5701                                return $rtrn;
5702                        }
5703                        */
5704
5705                        $contacts = CreateObject('phpgwapi.contacts', False);
5706                        return $contacts->read_single_entry($id,$query_fields);
5707                }
5708
5709                function build_part_list(&$users,$accounts,$owner)
5710                {
5711                        if(!is_array($accounts))
5712                        {
5713                                return;
5714                        }
5715                        foreach($accounts as $id)
5716                        {
5717                                $id = (int)$id;
5718                                if($id == $owner)
5719                                {
5720                                        continue;
5721                                }
5722                                elseif(!isset($users[$id]))
5723                                {
5724                                        if($GLOBALS['phpgw']->accounts->exists($id) == True)
5725                                        {
5726                                                $users[$id] = Array(
5727                                                        'name'  => $GLOBALS['phpgw']->common->grab_owner_name($id),
5728                                                        'type'  => $GLOBALS['phpgw']->accounts->get_type($id)
5729                                                );
5730                                        }
5731                                        if($GLOBALS['phpgw']->accounts->get_type($id) == 'g')
5732                                        {
5733                                                //$this->build_part_list($users,$GLOBALS['phpgw']->acl->get_ids_for_location($id,1,'phpgw_group'),$owner);
5734                                        }
5735                                }
5736                        }
5737                        if (!function_exists('strcmp_name'))
5738                        {
5739                                function strcmp_name($arr1,$arr2)
5740                                {
5741                                        if ($diff = strcmp($arr1['type'],$arr2['type']))
5742                                        {
5743                                                return $diff;   // groups before users
5744                                        }
5745                                        return strnatcasecmp($arr1['name'],$arr2['name']);
5746                                }
5747                        }
5748                        uasort($users,'strcmp_name');
5749                }
5750
5751                function set_week_array($startdate,$cellcolor,$weekly)
5752                {
5753                        $data = date("m");
5754                        for ($j=0,$datetime=$startdate;$j<7;$j++,$datetime += 86400)
5755                        {
5756                                $date = date('Ymd',$datetime + (60 * 60 * 2)); // +2h to be save when switching to and from dst, $datetime is alreay + TZ-Offset
5757                                print_debug('set_week_array : Date ',$date);
5758
5759                                if($events = $this->bo->cached_events[$date])
5760                                {
5761                                        print_debug('Date',$date);
5762                                        print_debug('Appointments Found',count($events));
5763
5764                                        if (!$this->bo->prefs['calendar']['show_rejected'])
5765                                        {
5766                                                $appts = False;
5767                                                foreach($events as $event)      // check for a not-rejected event
5768                                                {
5769                                                        if (!$this->bo->rejected_no_show($event))
5770                                                        {
5771                                                                $appts = True;
5772                                                                break;
5773                                                        }
5774                                                }
5775                                        }
5776                                        else
5777                                        {
5778                                                $appts = True;
5779                                        }
5780                                }
5781                                else
5782                                {
5783                                        $appts = False;
5784                                }
5785                                $holidays = $this->bo->cached_holidays[$date];
5786                                if($weekly)
5787                                {
5788                                        $cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
5789                                }
5790
5791                                $day_image = '';
5792                                if($holidays)
5793                                {
5794                                        $extra = ' bgcolor="'.$this->bo->holiday_color.'"';
5795                                        $class = ($appts?'b':'').'minicalhol';
5796                                        if ($date == $this->bo->today)
5797                                        {
5798                                                $day_image = ' background="'.$GLOBALS['phpgw']->common->image('calendar','mini_day_block').'"';
5799                                        }
5800                                }
5801                                elseif ($date != $this->bo->today)
5802                                {
5803                                        $extra = ' bgcolor="'.$cellcolor.'"';
5804                                        $class = ($appts?'b':'').'minicalendar';
5805                                }
5806                                else
5807                                {
5808                                        $extra = ' bgcolor="'.$GLOBALS['phpgw_info']['theme']['cal_today'].'"';
5809                                        $class = ($appts?'b':'').'minicalendar';
5810                                        $day_image = ' background="'.$GLOBALS['phpgw']->common->image('calendar','mini_day_block').'"';
5811                                }
5812
5813                                if($this->bo->printer_friendly && @$this->bo->prefs['calendar']['print_black_white'])
5814                                {
5815                                        $extra = '';
5816                                }
5817
5818                                if(!$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_ADD))
5819                                {
5820                                        $new_event = True;
5821                                }
5822                                else
5823                                {
5824                                        $new_event = False;
5825                                }
5826                                $holiday_name = Array();
5827                                if($holidays)
5828                                {
5829                                        for($k=0;$k<count($holidays);$k++)
5830                                        {
5831                                                $holiday_name[] = $holidays[$k]['name'];
5832                                        }
5833                                }
5834                                $week = '';
5835                                if (!$j || (!$weekly && $j && substr($date,6,2) == '01'))
5836                                {
5837                                        $week = lang('week').' '.(int)((date('z',($startdate+(24*3600*4)))+7)/7);
5838                                }
5839                                $daily[$date] = Array(
5840                                        'extra'         => $extra,
5841                                        'new_event'     => $new_event,
5842                                        'holidays'      => $holiday_name,
5843                                        'appts'         => $appts,
5844                                        'week'          => $week,
5845                                        'day_image'     => $day_image,
5846                                        'class'         => $class
5847                                );
5848                        }
5849
5850                        if($this->debug)
5851                        {
5852                                _debug_array($daily);
5853                        }
5854
5855                        return $daily;
5856                }
5857               
5858                function get_organizations($context, $selected='', $recursive = false)
5859                {
5860                        $s = CreateObject('phpgwapi.sector_search_ldap');
5861                                               
5862                        return ($recursive ?
5863                                $s->get_organizations($context, $selected, false ,false) :
5864                                $s->get_sectors($selected, false, false));
5865                }               
5866        }
5867?>
Note: See TracBrowser for help on using the repository browser.