Searched refs:time_info (Results 1 – 1 of 1) sorted by relevance
/plugin/hcalendar/syntax/ |
H A D | helper.php | 14 @list($time_info,$summary,$location) = explode('|',$match,3); 15 @list($start_info,$end_info) = explode(';',$time_info,2); 30 function hcal_parseEntry($time_info) { argument 32 if (!preg_match('/(\d{4}\/\d{2}\/\d{2})(\[\d{2}:\d{2}:\d{2}\])/',$time_info)) { 33 if (preg_match('/(\d{4}\/\d{2}\/\d{2})(\[\d{2}:\d{2}\])/',$time_info)) { 34 $time_info = str_replace(']',':00]',$time_info); 39 if (preg_match('/(\d{4}\/\d{2}\/\d{2})(\[\d{2}:\d{2}:\d{2}\])?/',$time_info,$times)) { 41 } else if (preg_match('/(\[\d{2}:\d{2}:\d{2}\])?/',$time_info,$times)) {
|