remove unused calendar styles
[openemr.git] / interface / main / calendar / modules / PostCalendar / pntemplates / default / views / header.html
blobbfb6cbd0fd50a0a371654dab9b8e123b6fdbf84a
1 <html>
2 <head>
3 <!-- Get the style sheet for the theme defined in globals.php -->
4 <link rel="stylesheet" href="[-php-]echo $GLOBALS['css_header'][-/php-]" type="text/css">
5 <link rel="stylesheet" href="[-php-]echo $GLOBALS['assets_static_relative'][-/php-]/font-awesome-4-6-3/css/font-awesome.min.css">
7 <!-- this style sheet is used for the ajax_* style calendars -->
8 <link rel="stylesheet" href="[-php-]echo $GLOBALS['webroot'].'/interface/themes/ajax_calendar.css';[-/php-]" type="text/css">
9 <!--[if IE]>
10 <link rel="stylesheet" href="[-php-]echo $GLOBALS['webroot'].'/interface/themes/ajax_calendar_ie.css';[-/php-]" type="text/css"/>
11 <![endif]-->
13 <!-- the javascript used for the ajax_* style calendars -->
14 <script type="text/javascript" src="[-php-] echo $GLOBALS['webroot'] [-/php-]/library/dialog.js?v=[-php-] echo $v_js_includes; [-/php-]"></script>
15 <script type="text/javascript" src="[-php-] echo $GLOBALS['webroot'] [-/php-]/library/textformat.js"></script>
16 <script type="text/javascript" src="[-php-] echo $GLOBALS['assets_static_relative'] [-/php-]/jquery-min-1-6-4/index.js"></script>
17 <script type="text/javascript" src="[-php-] echo $GLOBALS['webroot'] [-/php-]/library/js/calendarDirectSelect.js"></script>
18 <script>function event_time_click(elem){EditEvent($(elem).parents("div.event_appointment").get(0))} </script>
19 [-php-]
20 /**
21 * @param string $displayString This is the text to be displayed(most likely representing the time of an event). It is the responsibility of the caller to escape any entities as needed. This allows html tags to be used in the $displayString if desired.
22 * @return string html anchor element with javascript onclick event that edits an appointment
24 function create_event_time_anchor($displayString)
26 $title=htmlspecialchars(xl('Click to edit'));
27 return "<a class='event_time' onclick='event_time_click(this)' title='" .$title."'>".$displayString."</a>";
29 [-/php-]
31 </head>
32 [-php-]
33 echo "<body style='background-color:".$GLOBALS['style']['BGCOLOR2']."'>";
34 [-/php-]