context = $context; } /** * Determine whether we should output an Event piece. * * @return bool */ public function is_needed(): bool { if ( ! is_page( 1376069 ) ) { return false; } return true; } /** * Generates our Event data. * * @return array */ public function generate() { $this->data = [ '@type' => 'BusinessEvent', '@id' => $this->context->canonical . '#yoastcon', 'mainEntityOfPage' => [ '@id' => $this->context->canonical . \WPSEO_Schema_IDs::WEBPAGE_HASH ], 'name' => get_post( $this->context->id )->post_title, 'description' => $this->context->description, 'organizer' => [ '@id' => $this->context->site_url . \WPSEO_Schema_IDs::ORGANIZATION_HASH ], 'startDate' => date( 'c', strtotime( '24 April 2020 08:00 CET' ) ), 'endDate' => date( 'c', strtotime( '24 April 2020 17:00 CET' ) ), 'url' => $this->context->canonical, 'image' => 'https://yoast.com/app/uploads/2019/10/YoastCon2020-600x338.png', 'location' => [ '@type' => 'Place', 'name' => 'Theater \'t Mozaïek', 'url' => 'https://www.mozaiekwijchen.nl/', 'address' => [ '@type' => 'PostalAddress', 'addressLocality' => 'Wijchen', 'addressRegion' => 'Gelderland', 'addressCountry' => 'The Netherlands', 'postalCode' => '6602 HX', 'streetAddress' => 'Campuslaan 6', ], ], ]; return $this->data; } }