.j]j`Ah0AhPAhkw#j jI6)vjvjI6);pd MZ0 kAh$UktaPk MZU MZU(0AhPAh MZU0 kAh;pdpAh0-PZUPMZUAhk0)PZUD4PZU MZUAhsXk MZUAhQk-{$%jdJ%jdJ%jdJ00;pdAh MZU0 kAh$Uk MZU MZU0 k0AhMZUPAhkMZU MZUPAh MZUAhMZUAhkAh PZUAhkhAhhAh8PZUAhhCj0)PZU0PZUAh)PZUMZUPMZU0 p ;pdpAhkиAh!kMax realtimeeout unlimited unlimited us %0AhAhAhj;pdAh`AhAhAhjj AhkAhиAhAhU ;kh;pdAh}k00@AhPAh;pdpAh0AhkPZUAh;pdQAhAhDqj;pd0AhWj`AhAhjjj`Ah{jAh.j`jkPZUQ?popuserpAh+k@ PZUU]U] ;k,pam_env :k kAhkystemd acct="popuser" exe="/usr/su"  ;k al=? res;pd:k MZU@AhksXk MZU AhQk+902,WCi20:fWCiZ;pd MZU0 k@Ah$Uk;pd MZUoPZUPAh MZUAhkAh MZU MZU7d3U AhRkDkMZU Ahk MZU;pd MZU MZU MZUg1d3UPAhH_k2d3U2d3UH2kAh+c3UNSOLE #g1d3U################### possible algorithms rs s. me; } /** * Retrieves the singular post type label. * * @param string $post_type Post type to retrieve label from. * * @return string The singular post type name. */ protected function get_post_type_label( $post_type ) { $post_type_object = get_post_type_object( $post_type ); // If the post type of this post wasn't registered default back to post. if ( $post_type_object === null ) { $post_type_object = get_post_type_object( 'post' ); } return $post_type_object->labels->singular_name; } /** * Checks whether the given post status is visible or not. * * @param string $post_status The post status to check. * * @return bool Whether or not the post is visible. */ protected function check_visible_post_status( $post_status ) { $visible_post_statuses = [ 'publish', 'static', 'private', ]; return in_array( $post_status, $visible_post_statuses, true ); } /** * Returns the message around changed URLs. * * @param string $first_sentence The first sentence of the notification. * * @return string The full notification. */ protected function get_message( $first_sentence ) { return '

' . __( 'Make sure you don\'t miss out on traffic!', 'wordpress-seo' ) . '

' . '

' . $first_sentence . ' ' . __( 'Search engines and other websites can still send traffic to your deleted post.', 'wordpress-seo' ) . ' ' . __( 'You should create a redirect to ensure your visitors do not get a 404 error when they click on the no longer working URL.', 'wordpress-seo' ) /* translators: %s expands to Yoast SEO Premium */ . ' ' . sprintf( __( 'With %s, you can easily create such redirects.', 'wordpress-seo' ), 'Yoast SEO Premium' ) . '

' . '

' /* translators: %s expands to Yoast SEO Premium */ . sprintf( __( 'Get %s', 'wordpress-seo' ), 'Yoast SEO Premium' ) . '' . __( '(Opens in a new browser tab)', 'wordpress-seo' ) . '' . '' . '

'; } /** * Adds a notification to be shown on the next page request since posts are updated in an ajax request. * * @param string $message The message to add to the notification. * * @return void */ protected function add_notification( $message ) { $notification = new Yoast_Notification( $message, [ 'type' => 'notice-warning is-dismissible', 'yoast_branding' => true, ] ); $notification_center = Yoast_Notification_Center::get(); $notification_center->add_notification( $notification ); } }