system
(system)
August 4, 2005, 9:41pm
1
cruiser01 wrote on Thursday, August 04, 2005 :
The first name of the patients are not showing up on the calendar, which module is this code in so I could add the fname. Also does anyone know if the description when making the appointment could be displayed on the calendar by the patient name .
system
(system)
August 4, 2005, 9:53pm
2
sunsetsystems wrote on Thursday, August 04, 2005 :
Suggestion: Get the current code from CVS, see $GLOBALS[‘calendar_appt_style’] in globals.php, and grep for the code that references it.
– Rod <rod at sunsetsystems dot com>
system
(system)
August 5, 2005, 4:43am
3
cruiser01 wrote on Friday, August 05, 2005 :
I ran grep with these settings
grep -r ‘calendar_appt_style’ *
and it just listed the global.php do I have the right options set for grep.
system
(system)
August 5, 2005, 5:32am
4
sunsetsystems wrote on Friday, August 05, 2005 :
Hmm, works for me:
~/rod/dev/openemr/openemr$ grep -r ‘calendar_appt_style’ *
interface/main/calendar/modules/PostCalendar/pntemplates/default/views/day/default.html: if ($GLOBALS[‘calendar_appt_style’] != 1) {
interface/main/calendar/modules/PostCalendar/pntemplates/default/views/day/default.html: if ($event[‘title’] && $GLOBALS[‘calendar_appt_style’] == 3)
interface/main/calendar/modules/PostCalendar/pntemplates/default/views/week/default.html: if ($GLOBALS[‘calendar_appt_style’] != 1) {
interface/main/calendar/modules/PostCalendar/pntemplates/default/views/week/default.html: if ($event[‘title’] && $GLOBALS[‘calendar_appt_style’] == 3)
interface/globals.php:$GLOBALS[‘calendar_appt_style’] = 2;
– Rod <rod at sunsetsystems dot com>
system
(system)
August 5, 2005, 5:36pm
5
sankar1234 wrote on Friday, August 05, 2005 :
is that the right command to search in all subfolders ? I believe we have to add some parameters to the grep command…
system
(system)
August 5, 2005, 8:11pm
6
cruiser01 wrote on Friday, August 05, 2005 :
I have opened that file and did a search on
calendar_appt_style
there is no code in the file that references the setting in the global file. I have looked in CVS and the file that is in there is
the correct file.
system
(system)
August 5, 2005, 8:43pm
7