From: Evan Prodromou Date: Sat, 2 Jul 2011 03:06:16 +0000 (-0400) Subject: Add FIXME comments to remember to encode/decode important data about a X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2998033816d12c50eb87a46228c806e53e311819;p=quix0rs-gnu-social.git Add FIXME comments to remember to encode/decode important data about a happening in ActivityStreams format --- diff --git a/plugins/Event/EventPlugin.php b/plugins/Event/EventPlugin.php index a341c80732..98a7d895ed 100644 --- a/plugins/Event/EventPlugin.php +++ b/plugins/Event/EventPlugin.php @@ -180,6 +180,7 @@ class EventPlugin extends MicroappPlugin switch ($activity->verb) { case ActivityVerb::POST: + // FIXME: get startTime, endTime, location and URL $notice = Happening::saveNew($actor, $start_time, $end_time, @@ -261,6 +262,9 @@ class EventPlugin extends MicroappPlugin array('xmlns' => 'urn:ietf:params:xml:ns:xcal'), common_date_iso8601($happening->end_time)); + // FIXME: add location + // FIXME: add URL + // XXX: probably need other stuff here return $obj;