Changeset 4182


Ignore:
Timestamp:
04/29/11 11:36:59 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1811 - Caminho do ícones da agenda fixos

Location:
branches/2.2.0.1/calendar
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/calendar/inc/class.uicalendar.inc.php

    r4167 r4182  
    50485048                        ); 
    50495049 
     5050                        $templateSet = $GLOBALS['phpgw_info']['server']['template_set']; 
     5051                         
    50505052                        $p->set_file($templates); 
    50515053                        $p->set_block('day_cal','day','day'); 
     
    50545056                        $result_events_json = $this->print_events_to_show_json($params); 
    50555057                        $p->set_var('date',$result_events_json['date_events_json']); 
     5058                        $p->set_var('templateSet',$templateSet); 
    50565059                        $p->set_var('hora_final',$result_events_json['hora_final']); 
    50575060                        $p->set_var('hora_inicial',$result_events_json['hora_inicial']); 
  • branches/2.2.0.1/calendar/templates/default/day_cal.tpl

    r4125 r4182  
    114114            if(event.recur && event.recur != false) 
    115115            { 
    116                 imgs += '<img width="10px" height="10px" border="0" title="Evento recorrente" src="/calendar/templates/default/images/recur.png"/>'; 
     116                imgs += '<img width="10px" height="10px" border="0" title="Evento recorrente" src="/calendar/templates/{templateSet}/images/recur.png"/>'; 
    117117            } 
    118118 
    119119            if(event.participants == 1) 
    120120            { 
    121                 imgs += " " + '<img width="11px" height="10px" border="0" title="'+event.participants_title+'" src="/calendar/templates/default/images/multi_3.png"/>'; 
     121                imgs += " " + '<img width="11px" height="10px" border="0" title="'+event.participants_title+'" src="/calendar/templates/{templateSet}/images/multi_3.png"/>'; 
    122122            } 
    123123            else 
    124124            { 
    125                 imgs += " " + '<img width="11px" height="10px" border="0" title="'+event.participants_title+'" src="/calendar/templates/default/images/single.png"/>'; 
     125                imgs += " " + '<img width="11px" height="10px" border="0" title="'+event.participants_title+'" src="/calendar/templates/{templateSet}/images/single.png"/>'; 
    126126            } 
    127127 
    128128            if(event.attachments == 1) 
    129129            { 
    130                 imgs += " " + '<img width="10px" height="10px" border="0" title="Foram enviadas notificações com anexos" src="/calendar/templates/default/images/clip.png"/>'; 
     130                imgs += " " + '<img width="10px" height="10px" border="0" title="Foram enviadas notificações com anexos" src="/calendar/templates/{templateSet}/images/clip.png"/>'; 
    131131            } 
    132132 
    133133            if(event.isPublic == 0) 
    134134            { 
    135                 imgs += " " + '<img width="11px" height="10px" border="0" title="'+event.isPublicTitle+'" src="/calendar/templates/default/images/private.png"/>'; 
     135                imgs += " " + '<img width="11px" height="10px" border="0" title="'+event.isPublicTitle+'" src="/calendar/templates/{templateSet}/images/private.png"/>'; 
    136136            } 
    137137 
    138138            if(event.alarm == 1) 
    139139            { 
    140                 imgs += " " + '<img width="11px" height="10px" border="0" title="Alarme" src="/calendar/templates/default/images/alarm.png"/>'; 
     140                imgs += " " + '<img width="11px" height="10px" border="0" title="Alarme" src="/calendar/templates/{templateSet}/images/alarm.png"/>'; 
    141141            } 
    142142 
Note: See TracChangeset for help on using the changeset viewer.