!`PņņšU OņņšU @ĀOņņšUeÄÉo f'ŊIMG_AFFINE_SHEAR_HORIZONTAL!ĀPņņšUPņņšU @ PņņšUÕ8Čnö–IMG_AFFINE_SHEAR_VERTICAL!QņņšU`PņņšU 0°NņņšUíWŒ–z}kō GD_BUNDLED!pQņņšUĀPņņšU @€PņņšU:íÕ;‘ˆIMG_FILTER_NEGATE!ĐQņņšUQņņšU @0QņņšUAŖĮãbļÙIMG_FILTER_GRAYSCALE!0RņņšUpQņņšU @QņņšU~(û¯9ŌIMG_FILTER_BRIGHTNESS!RņņšUĐQņņšU @đQņņšUÔ,ŖuœũCņIMG_FILTER_CONTRAST!đRņņšU0RņņšU @PRņņšU탞pœũCņIMG_FILTER_COLORIZE!PSņņšURņņšU @°RņņšUTY :ŌIMG_FILTER_EDGEDETECT!°SņņšUđRņņšU @SņņšUÕ5€œ8{+œIMG_FILTER_GAUSSIAN_BLUR!TņņšUPSņņšU @pSņņšUūōV}Ÿ ĄÅIMG_FILTER_SELECTIVE_BLUR!pTņņšU°SņņšU @ĐSņņšU/Áe'‘ˆIMG_FILTER_EMBOSS!ĐTņņšUTņņšU @0TņņšUŧŋŋy™ÄÔÎIMG_FILTER_MEAN_REMOVAL!0UņņšUpTņņšU @TņņšUH‘ˆIMG_FILTER_SMOOTH!UņņšUĐTņņšU @đTņņšUBl^ŊūCņIMG_FILTER_PIXELATE!đUņņšU0UņņšU @PUņņšU|Kj2|´šIMG_FILTER_SCATTER!pVņņšUUņņšU 0āPņņšU xÜR€2.0.351VņņšU5u€}kō GD_VERSION!ĐVņņšUđUņņšU @°UņņšU­uėŧ\ĶGD_MAJOR_VERSION!0WņņšUpVņņšU @VņņšUš5˛˙ūŲGD_MINOR_VERSION!WņņšUĐVņņšU @đVņņšUÕR¸Ë…GD_RELEASE_VERSION!đWņņšU0WņņšU @PWņņšU8Ôp…ë4‰ĒGD_EXTRA_VERSION!@XņņšUWņņšU 0@VņņšUËĀ+AĮ)1ú PNG_NO_FILTER!XņņšUđWņņšU 0XņņšU>K9āöĘPNG_FILTER_NONE!āXņņšU@XņņšU 0`XņņšUØeO/šUĀPNG_FILTER_SUB!0YņņšUXņņšU 0°XņņšU Ž}J1ú PNG_FILTER_UP!€YņņšUāXņņšU 0YņņšUlO/šUĀPNG_FILTER_AVG!āYņņšU0YņņšU @°WņņšU @ã—šŠPNG_FILTER_PAETH!0ZņņšU€YņņšU 0PYņņšUÚˇčfÛĘPNG_ALL_FILTERSá` õņšUāYņņšU˜Ũ_^NÁ€ņņšU0öņšU Pp]ņņšU@DĒiNĢ­ŦĢpPĀ^ņņšUā@€œņņšU+ÛgœŦX{åImagickPixelExceptionTRST˙˙˙˙ņ ”ōšU`ËíņšUo×ņšUpo×ņšUc×ņšUq0œāņšUP^ņņšU ājņņšUkņņšU@0^ņņšUgeMagick-6/policy.xml°PđdņņšUĢ­ŦĢ1PZņņšUā;ĪkN`“ņņšU@0ĀfņņšUgeMagick-6/policy.xmlpPp_ņņšUĢ­ŦĢaPZņņšUā;ĪkN`\ņņšU`^ņņšU`^ņņšUTRST˙˙˙˙!@ėîņšUPZņņšU`P0aņņšU@DĒiNĢ­Ŧ̰PĀ\ņņšUĢ­ŦĢaPZņņšUā;ĪkNc[%p]: %m/%f/%l/%d\n %eTRST˙˙˙˙q SōšU@hņņšU `hņņšU <ĪkN@0`iņņšU<ĪkNĢ­Ŧ̰PĀ]ņņšUĢ­ŦĢaЖāņšUPáņšUc[%p]: %m/%f/%l/%d\n %eTRST˙˙˙˙!€kņņšUP*ōšU PĀ_ņņšUpP\ņņšU ) { return false; } $current_screen = \get_current_screen(); return $current_screen->base === 'post' && $current_screen->action === 'add'; } /** * Determines if we are currently editing a post with Classic editor. * * @return bool Whether we are currently editing a post with Classic editor. */ public function is_classic_editor() { if ( ! $this->is_edit_post_screen() && ! $this->is_new_post_screen() ) { return false; } $screen = \get_current_screen(); if ( $screen->is_block_editor() ) { return false; } return true; } /** * Determines if the original post has changed since the creation of the copy. * * @param WP_Post $post The post object. * * @return bool Whether the original post has changed since the creation of the copy. */ public function has_original_changed( WP_Post $post ) { if ( ! $this->is_rewrite_and_republish_copy( $post ) ) { return false; } $original = Utils::get_original( $post ); $copy_creation_date_gmt = \get_post_meta( $post->ID, '_dp_creation_date_gmt', true ); if ( $original && $copy_creation_date_gmt ) { if ( \strtotime( $original->post_modified_gmt ) > \strtotime( $copy_creation_date_gmt ) ) { return true; } } return false; } /** * Determines if duplicate links for the post can be displayed. * * @param WP_Post $post The post object. * * @return bool Whether the links can be displayed. */ public function should_links_be_displayed( WP_Post $post ) { /** * Filter allowing displaying duplicate post links for current post. * * @param bool $display_links Whether the duplicate links will be displayed. * @param WP_Post $post The post object. * * @return bool Whether or not to display the duplicate post links. */ $display_links = \apply_filters( 'duplicate_post_show_link', $this->is_current_user_allowed_to_copy() && $this->is_post_type_enabled( $post->post_type ), $post ); return ! $this->is_rewrite_and_republish_copy( $post ) && $display_links; } /** * Determines if the Rewrite & Republish link for the post should be displayed. * * @param WP_Post $post The post object. * * @return bool Whether the links should be displayed. */ public function should_rewrite_and_republish_be_allowed( WP_Post $post ) { return $post->post_status === 'publish' && ! $this->is_rewrite_and_republish_copy( $post ) && ! $this->has_rewrite_and_republish_copy( $post ); } /** * Determines whether the passed post type is public and shows an admin bar. * * @param string $post_type The post_type to copy. * * @return bool Whether or not the post can be copied to a new draft. */ public function post_type_has_admin_bar( $post_type ) { $post_type_object = \get_post_type_object( $post_type ); if ( empty( $post_type_object ) ) { return false; } return $post_type_object->public && $post_type_object->show_in_admin_bar; } /** * Determines whether a Rewrite & Republish copy can be republished. * * @param WP_Post $post The post object. * * @return bool Whether the Rewrite & Republish copy can be republished. */ public function is_copy_allowed_to_be_republished( WP_Post $post ) { return \in_array( $post->post_status, [ 'dp-rewrite-republish', 'private' ], true ); } /** * Determines if the post has a trashed copy intended for Rewrite & Republish. * * @param WP_Post $post The post object. * * @return bool Whether the post has a trashed copy intended for Rewrite & Republish. */ public function has_trashed_rewrite_and_republish_copy( WP_Post $post ) { $copy_id = \get_post_meta( $post->ID, '_dp_has_rewrite_republish_copy', true ); if ( ! $copy_id ) { return false; } $copy = \get_post( $copy_id ); return ( $copy && $copy->post_status === 'trash' ); } }