Display DAY of week in Single Day view CALEND

medsupporter wrote on Tuesday, November 30, 2010:

Hello OpenEMR world!
Our staff would very much like it if it was possible to display the DAY of the week that is being viewed (Monday-Sunday) in the single day view of the calendar (outlook style) instead of just the numerical date and month and year.
I imagine this is a simple php edit - can someone point me in the right direction??
THANK YOU!
Tom

visolveemr wrote on Wednesday, December 01, 2010:

Hi,

In interface/main/calendar/modules/PostCalendar/pntemplates/default/views/day/ajax_template.html

<div id=“bigCalHeader”>

$atmp = array_keys($A_EVENTS);

echo date(‘d M Y’, strtotime($atmp));  (existing line)

//replace the above line with

echo date(‘D d M Y’, strtotime($atmp)); (This displays the date in the format Wed 01 Dec 2010)

</div>

This comes approximately @ line 280 in openemr4.0 dev version.

Hope this helps.

Thanks
ViCarePlus Team,
www.vicareplus.com
services@vicareplus.com