4 function format_event_html($ev,$pre = '') {
6 require_once('include/bbcode.php');
8 if(! ((is_array($ev)) && count($ev)))
11 $bd_format = t('l F d, Y \@ g A') ; // Friday January 18, 2011 @ 8 AM
13 $o = '<div class="vevent">';
15 $o .= '<p class="description event-description">' . bbcode($ev['desc']) . '</p>';
17 $o .= '<p class="event-start">' . t('Starts:') . ' <abbr class="dtstart" title="'
18 . datetime_convert('UTC','UTC',$ev['start'], (($ev['adjust']) ? ATOM_TIME : 'Y-m-d\TH:i:s' ))
20 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(),
21 $ev['start'] , $bd_format ))
22 : day_translate(datetime_convert('UTC', 'UTC',
23 $ev['start'] , $bd_format)))
27 $o .= '<p class="event-end" >' . t('Finishes:') . ' <abbr class="dtend" title="'
28 . datetime_convert('UTC','UTC',$ev['finish'], (($ev['adjust']) ? ATOM_TIME : 'Y-m-d\TH:i:s' ))
30 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(),
31 $ev['finish'] , $bd_format ))
32 : day_translate(datetime_convert('UTC', 'UTC',
33 $ev['finish'] , $bd_format )))
36 if(strlen($ev['location']))
37 $o .= '<p class="event-location"> ' . t('Location:') . ' <span class="location">'
38 . bbcode($ev['location'])
46 function parse_event($h) {
48 require_once('include/Scrape.php');
49 require_once('library/HTMLPurifier.auto.php');
50 require_once('include/html2bbcode');
52 $h = '<html><body>' . $h . '</body></html>';
56 $dom = HTML5_Parser::parse($h);
61 $items = $dom->getElementsByTagName('*');
63 foreach($items as $item) {
64 if(attribute_contains($item->getAttribute('class'), 'vevent')) {
65 $level2 = $item->getElementsByTagName('*');
66 foreach($level2 as $x) {
67 if(attribute_contains($x->getAttribute('class'),'dtstart') && $x->getAttribute('title')) {
68 $ret['start'] = $x->getAttribute('title');
69 if(! strpos($ret['start'],'Z'))
70 $ret['adjust'] = true;
72 if(attribute_contains($x->getAttribute('class'),'dtend') && $x->getAttribute('title'))
73 $ret['finish'] = $x->getAttribute('title');
75 if(attribute_contains($x->getAttribute('class'),'description'))
76 $ret['desc'] = $x->textContent;
77 if(attribute_contains($x->getAttribute('class'),'location'))
78 $ret['location'] = $x->textContent;
85 if((x($ret,'desc')) && ((strpos($ret['desc'],'<') !== false) || (strpos($ret['desc'],'>') !== false))) {
86 $config = HTMLPurifier_Config::createDefault();
87 $config->set('Cache.DefinitionImpl', null);
88 $purifier = new HTMLPurifier($config);
89 $ret['desc'] = html2bbcode($purifier->purify($ret['desc']));
92 if((x($ret,'location')) && ((strpos($ret['location'],'<') !== false) || (strpos($ret['location'],'>') !== false))) {
93 $config = HTMLPurifier_Config::createDefault();
94 $config->set('Cache.DefinitionImpl', null);
95 $purifier = new HTMLPurifier($config);
96 $ret['location'] = html2bbcode($purifier->purify($ret['location']));
100 $ret['start'] = datetime_convert('UTC','UTC',$ret['start']);
102 $ret['finish'] = datetime_convert('UTC','UTC',$ret['finish']);
108 function format_event_bbcode($ev) {
113 $o .= '[event-description]' . $ev['desc'] . '[/event-description]';
116 $o .= '[event-start]' . $ev['start'] . '[/event-start]';
119 $o .= '[event-finish]' . $ev['finish'] . '[/event-finish]';
122 $o .= '[event-location]' . $ev['location'] . '[/event-location]';
125 $o .= '[event-adjust]' . $ev['adjust'] . '[/event-adjust]';
132 function bbtovcal($s) {
136 $o = format_event_html($ev);
141 function bbtoevent($s) {
146 if(preg_match("/\[event\-description\](.*?)\[\/event\-description\]/is",$s,$match))
147 $ev['desc'] = $match[1];
149 if(preg_match("/\[event\-start\](.*?)\[\/event\-start\]/is",$s,$match))
150 $ev['start'] = $match[1];
152 if(preg_match("/\[event\-finish\](.*?)\[\/event\-finish\]/is",$s,$match))
153 $ev['finish'] = $match[1];
155 if(preg_match("/\[event\-location\](.*?)\[\/event\-location\]/is",$s,$match))
156 $ev['location'] = $match[1];
158 if(preg_match("/\[event\-adjust\](.*?)\[\/event\-adjust\]/is",$s,$match))
159 $ev['adjust'] = $match[1];
167 function sort_by_date($a) {
169 usort($a,'ev_compare');
174 function ev_compare($a,$b) {
176 $date_a = (($a['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$a['start']) : $a['start']);
177 $date_b = (($b['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$b['start']) : $b['start']);
179 return strcmp($date_a,$date_b);