Ejemplo n.º 1
0
 static function getAddToYahooCal($row)
 {
     $eventData = JevExportHelper::getEventStringArray($row);
     $urlString['title'] = "title=" . $eventData['title'];
     $urlString['st'] = "st=" . $eventData['st'];
     $urlString['et'] = "et=" . $eventData['et'];
     $urlString['rawdetails'] = "desc=" . $eventData['details'];
     $urlString['location'] = "in_loc=" . $eventData['location'];
     $link = "http://calendar.yahoo.com/?v=60&view=d&type=20&" . implode("&", $urlString);
     return $link;
 }