a/httpdocs/wp-content/plugins/wordpress-seo/vendor/composer/../../inc/options/class-wpseo-option-titles.php/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.ph @UK0UQ UU@Up/U[iuu/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titleM:Ԋu/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php @pKUUUU[iu/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/vendor/composer/../../inc/options/class-wpseo-option-social.php/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.phpd!5IUUIU໒j[iuuU/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-sociaY Pgu/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php A DUpUUU[iq/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/vendor/composer/../../inc/options/class-wpseo-option-ms.php/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.phpd U`UQ2IU໒j[iqq/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.ph_joq/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.phpU_"v/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-llmstxt.php`U!8UUUU[izdU/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/vendor/composer/../../inc/class-wpseo-meta.php/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.phpp UUa*IU໒j[iddU/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/class-wpseo-metaDUީd/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php!pUpU> U[i}g/var/www/vhosts/gambling-sites.ca/httpdocs/wp-content/plugins/woreturn; } /** * Fires before the Metabox saved the data from the current request. * * @since 5.11.0 * * @param int $post_id The post ID of the event currently being saved. * @param array The whole data received by the metabox. */ do_action( 'tribe_events_event_status_before_metabox_save', $post_id, $data ); $status = Arr::get( $data, 'status' ); if ( 'scheduled' !== $status ) { $this->update_fields( $post_id, $data ); } else { $this->delete_fields( $post_id, $data ); } /** * Fires after the Metabox saved the data from the current request. * * @since 5.11.0 * * @param int $post_id The post ID of the event currently being saved. * @param array The whole data received by the metabox. */ do_action( 'tribe_events_event_status_after_metabox_save', $post_id, $data ); } /** * Update event status meta fields. * * @since 5.11.0 * * @param int $post_id Which post ID we are dealing with when saving. * @param array $data An array of meta field values. */ public function update_fields( $post_id, $data ) { update_post_meta( $post_id, Event_Meta::$key_status, Arr::get( $data, 'status', false ) ); update_post_meta( $post_id, Event_Meta::$key_status_reason, Arr::get( $data, 'status-reason', false ) ); /** * Allows extensions and compatibilities to save their associated meta. * * @since 5.11.0 * * @param int $post_id ID of the post we're saving. * @param array $data The meta data we're trying to save. */ do_action( 'tribe_events_event_status_update_post_meta', $post_id, $data ); } /** * Delete event status meta fields. * * @since 5.11.0 * * @param int $post_id Which post ID we are dealing with when saving. * @param array $data An array of meta field values. */ public function delete_fields( $post_id, $data ) { foreach ( Event_Meta::$event_status_keys as $key ) { delete_post_meta( $post_id, $key ); } } }