0 P 3F 0 plE VJ p: C 0B =6 0KE k 0hK K kC C P F] @ F] C H p` 0 @@H @@H 0v( pUH 4A :] `:q =J ` :] `:q =J ` :] `:q =J ` :] `:q =J ` P 8] e F] C 9 z @* ) @@H @@H pE . C p t t 0 @@H @@H PJ 0r 0v C 0 9 ) @@H @@H pE 0 `, @ {& H pH c pH 0*E H 0H 0d pH H AE JE BI pd AI C g H s s @@H @@H PJ s 0 C 7 @@H @@H PJ 0 - C P- , - @@H @@H PJ r - C , @ , - @@H @@H PJ pr - 8] p :] R<0] FW]p ! ڢfdp j%`mfu implementation for stream sockets. This class supports the makefile() method on sockets. It provides the raw I/O interface on top of a socket object. ` 0=] u MH ~ xI :bF I ǔŇ4pH p P @@H 0 J `i TRANSIENT ); $this->indexing_helper->set_reason( Indexing_Reasons::REASON_TAXONOMY_MADE_PUBLIC ); $this->maybe_add_notification(); } // There are taxonomies that have been made private. if ( ! empty( $newly_made_non_public_taxonomies ) ) { // Schedule a cron job to remove all the terms whose taxonomy has been made private. $cleanup_not_yet_scheduled = ! \wp_next_scheduled( Cleanup_Integration::START_HOOK ); if ( $cleanup_not_yet_scheduled ) { \wp_schedule_single_event( ( \time() + ( \MINUTE_IN_SECONDS * 5 ) ), Cleanup_Integration::START_HOOK ); } } } /** * Decides if a notification should be added in the notification center. * * @return void */ private function maybe_add_notification() { $notification = $this->notification_center->get_notification_by_id( 'taxonomies-made-public' ); if ( \is_null( $notification ) ) { $this->add_notification(); } } /** * Adds a notification to be shown on the next page request since posts are updated in an ajax request. * * @return void */ private function add_notification() { $message = \sprintf( /* translators: 1: Opening tag of the link to the Search appearance settings page, 2: Link closing tag. */ \esc_html__( 'It looks like you\'ve added a new taxonomy to your website. We recommend that you review your %1$sSettings%2$s under Categories & tags.', 'wordpress-seo' ), '', '' ); $notification = new Yoast_Notification( $message, [ 'type' => Yoast_Notification::WARNING, 'id' => 'taxonomies-made-public', 'capabilities' => 'wpseo_manage_options', 'priority' => 0.8, ] ); $this->notification_center->add_notification( $notification ); } }