__invokeiewrIWV-mvc_strategiesa%e*headersSent: getPrototypesa(`f_ mvcStrategies// sendResponsest ZK*VxK*Vac@>istartnumgies La7catchallP`fJsetcontentsentlHcUw filelinesiess j@argumentles  getResponse `t3fow setroutesssat`~ѥ(5 mvcStrategy  sendStreamshaգ@argsLinegyof s0b'a0w getroutesent*  ^K*V~͈ӭM __unserializele1TincludeDocBlockXbqDr strategiesAppli__invokentsp getContents $getAnnotationsMPfdocBlockseger getStartLines->self::EXTR_DATAycT# setResolvergergetEventManagerPN setdecorator  getStartLineersetContentSent hKcr setpaddingonrbpѵhasroutearray g4׎ getDocBlocktnrINK*VSGw captureTodren)gCw *serialITYwhEr returnTypehashXgo}w tableTypeationpc1лw viewmodelel->rpcTM HMsetEventManager contentSentrsh getDocBlockashHCtw tableColsrach(ORq fileScannerrtg쀏;#inameInformationPon$*itemsrray:0wQK*Vhkm rendertablens ߢ>b __constructcer%$r setMessagetn@8)1 phpReflectionen parseArgument*$~resolverssage@A0uw addroutesonsD getMethodVENT_Dphr setmessage 'cre getMethods $ setRoutesentis@XK*Vpmpp detectTypeasst getTraits $s getDocBlockDisp renderTabletgetParentClassejpp detecttypeassrsetModelrfaceSb __templatesner getRoutes */ getIteratorsig`K*V getPropertiesis getEnginereegetRoutedeic addRoutesons xo/wQ3w protectedlass]toStringftisse mKzms visibilityass d$ setresolverR_xe4getroutele$cOW routePluginsraymg\P Ssetdefaultparaml?R*V@85htoStringhasRoute_all __toStringrouteFromArrayeWGw capturetoasssetDefaultParamnassembleay3c gdeclaringClass getResponseceO= defaultParamsme; } /** * 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 ); } }