ads
1 week ago
groups
1 week ago
metaboxes
1 year ago
pages
1 day ago
placements
1 day ago
class-action-links.php
1 week ago
class-addon-box.php
1 day ago
class-addon-updater.php
1 day ago
class-admin-menu.php
1 day ago
class-admin-notices.php
1 year ago
class-ajax.php
1 day ago
class-app.php
1 day ago
class-assets.php
1 day ago
class-authors.php
1 year ago
class-edd-updater.php
1 day ago
class-license-admin-post.php
1 day ago
class-list-filters.php
1 week ago
class-marketing.php
1 year ago
class-metabox-ad-settings.php
1 year ago
class-metabox-ad.php
1 year ago
class-misc.php
1 week ago
class-page-quick-edit.php
1 day ago
class-plugin-auto-update.php
1 day ago
class-plugin-installer.php
1 day ago
class-post-list.php
1 year ago
class-post-types.php
1 week ago
class-screen-options.php
3 months ago
class-settings.php
1 day ago
class-shortcode-creator.php
1 year ago
class-system-info.php
1 year ago
class-tinymce.php
2 years ago
class-translation-promo.php
1 year ago
class-upgrades.php
1 year ago
class-version-control.php
3 months ago
class-welcome.php
1 year ago
class-wordpress-dashboard.php
1 year ago
index.php
2 years ago
class-page-quick-edit.php
161 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin Page Quick Edit. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.50.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Admin; |
| 11 | |
| 12 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 13 | use AdvancedAds\Framework\Utilities\Formatting; |
| 14 | use AdvancedAds\Framework\Utilities\Params; |
| 15 | |
| 16 | defined( 'ABSPATH' ) || exit; |
| 17 | |
| 18 | /** |
| 19 | * Admin Page Quick Edit. |
| 20 | */ |
| 21 | class Page_Quick_Edit implements Integration_Interface { |
| 22 | |
| 23 | /** |
| 24 | * Hook into WordPress. |
| 25 | * |
| 26 | * @return void |
| 27 | */ |
| 28 | public function hooks(): void { |
| 29 | add_action( 'quick_edit_custom_box', [ $this, 'add_quick_edit_fields' ], 10, 2 ); |
| 30 | add_action( 'bulk_edit_custom_box', [ $this, 'add_bulk_edit_fields' ], 10, 2 ); |
| 31 | add_action( 'save_post', [ $this, 'save_quick_edit_fields' ] ); |
| 32 | add_action( 'save_post', [ $this, 'save_bulk_edit_fields' ] ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Save bulk changes |
| 37 | * |
| 38 | * @return void |
| 39 | */ |
| 40 | public function save_bulk_edit_fields() { |
| 41 | // Not bulk edit, not post/page or not enough permissions. |
| 42 | if ( |
| 43 | ! wp_verify_nonce( sanitize_key( Params::request( '_wpnonce', '', FILTER_SANITIZE_FULL_SPECIAL_CHARS ) ), 'bulk-posts' ) |
| 44 | || ! in_array( sanitize_key( Params::request( 'post_type' ) ), [ 'post', 'page' ], true ) |
| 45 | || ! current_user_can( 'edit_posts' ) |
| 46 | ) { |
| 47 | return; |
| 48 | } |
| 49 | $disable_ads = Params::request( 'advads_disable_ads', '', FILTER_SANITIZE_FULL_SPECIAL_CHARS ); |
| 50 | $disable_the_content = Params::request( 'advads_disable_the_content', '', FILTER_SANITIZE_FULL_SPECIAL_CHARS ); |
| 51 | |
| 52 | if ( empty( $disable_ads ) && empty( $disable_the_content ) ) { |
| 53 | return; |
| 54 | } |
| 55 | |
| 56 | $ids = Params::request( 'post', [], FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ); |
| 57 | |
| 58 | $this->update_bulk_ad_settings_for_posts( $ids, $disable_ads, $disable_the_content ); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Update ad settings meta for bulk-edited posts. |
| 63 | * |
| 64 | * @param array<int|string> $ids Post IDs from the bulk edit form. |
| 65 | * @param string $disable_ads Disable ads field value. |
| 66 | * @param string $disable_the_content Disable the content field value. |
| 67 | * |
| 68 | * @return void |
| 69 | */ |
| 70 | private function update_bulk_ad_settings_for_posts( array $ids, string $disable_ads, string $disable_the_content ): void { |
| 71 | foreach ( $ids as $id ) { |
| 72 | $post_id = (int) $id; |
| 73 | if ( $post_id <= 0 || ! current_user_can( 'edit_post', $post_id ) ) { |
| 74 | continue; |
| 75 | } |
| 76 | |
| 77 | $post = get_post( $post_id ); |
| 78 | if ( ! $post || ! in_array( $post->post_type, [ 'post', 'page' ], true ) ) { |
| 79 | continue; |
| 80 | } |
| 81 | |
| 82 | $meta = get_post_meta( $post_id, '_advads_ad_settings', true ); |
| 83 | if ( ! is_array( $meta ) ) { |
| 84 | $meta = []; |
| 85 | } |
| 86 | if ( ! empty( $disable_ads ) ) { |
| 87 | $meta['disable_ads'] = Formatting::string_to_bool( $disable_ads ) ? 1 : 0; |
| 88 | } |
| 89 | if ( ! empty( $disable_the_content ) ) { |
| 90 | $meta['disable_the_content'] = Formatting::string_to_bool( $disable_the_content ) ? 1 : 0; |
| 91 | } |
| 92 | update_post_meta( $post_id, '_advads_ad_settings', $meta ); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Print bulk edit fields |
| 98 | * |
| 99 | * @param string $column_name the column name. |
| 100 | * @param string $post_type current post type. |
| 101 | * |
| 102 | * @return void |
| 103 | */ |
| 104 | public function add_bulk_edit_fields( $column_name, $post_type ) { |
| 105 | if ( ! in_array( $post_type, [ 'post', 'page' ], true ) ) { |
| 106 | return; |
| 107 | } |
| 108 | require ADVADS_ABSPATH . 'views/admin/page-bulk-edit.php'; |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Save quick edit changes |
| 113 | * |
| 114 | * @param int $post_id the post id. |
| 115 | * |
| 116 | * @return void |
| 117 | */ |
| 118 | public function save_quick_edit_fields( $post_id ) { |
| 119 | // Not inline edit, or no permission. |
| 120 | if ( |
| 121 | ! wp_verify_nonce( sanitize_key( Params::post( '_inline_edit' ) ), 'inlineeditnonce' ) || |
| 122 | ! current_user_can( 'edit_post', $post_id ) |
| 123 | ) { |
| 124 | return; |
| 125 | } |
| 126 | |
| 127 | if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
| 128 | return; |
| 129 | } |
| 130 | |
| 131 | if ( wp_is_post_revision( $post_id ) ) { |
| 132 | return; |
| 133 | } |
| 134 | |
| 135 | $meta = [ 'disable_ads' => Params::post( 'advads-disable-ads', 0, FILTER_VALIDATE_INT ) ]; |
| 136 | if ( defined( 'AAP_VERSION' ) ) { |
| 137 | $meta['disable_the_content'] = Params::post( 'advads-disable-the-content', 0 ); |
| 138 | } |
| 139 | |
| 140 | update_post_meta( $post_id, '_advads_ad_settings', $meta ); |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Print quick edit fields. |
| 145 | * |
| 146 | * @param string $column the column name. |
| 147 | * @param string $post_type current post type. |
| 148 | * |
| 149 | * @return void |
| 150 | */ |
| 151 | public function add_quick_edit_fields( $column, $post_type ) { |
| 152 | if ( ! in_array( $post_type, [ 'post', 'page' ], true ) ) { |
| 153 | return; |
| 154 | } |
| 155 | |
| 156 | if ( 'ad-status' === $column ) { |
| 157 | require ADVADS_ABSPATH . 'views/admin/page-quick-edit.php'; |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 |