activitypub_event = $activitypub_event; } /** * Save the ActivityPub event object as GatherPress Event. */ public function save() { // Insert new GatherPress Event post. $post_id = wp_insert_post( array( 'post_title' => $this->activitypub_event->get_name(), 'post_type' => 'gatherpress_event', 'post_content' => $this->activitypub_event->get_content(), 'post_excerpt' => $this->activitypub_event->get_summary(), 'post_status' => 'publish', ) ); if ( ! $post_id || is_wp_error( $post_id ) ) { return; } $event = new \GatherPress\Core\Event( $post_id ); $params = array( 'datetime_start' => $this->activitypub_event->get_start_time(), 'datetime_end' => $this->activitypub_event->get_end_time(), 'timezone' => $this->activitypub_event->get_timezone(), ); $event->save_datetimes( $params ); } }