ads
1 week ago
groups
1 week ago
metaboxes
1 year ago
pages
3 months ago
placements
1 week ago
class-action-links.php
1 week ago
class-addon-box.php
1 year ago
class-addon-updater.php
3 months ago
class-admin-menu.php
1 week ago
class-admin-notices.php
1 year ago
class-ajax.php
3 months ago
class-assets.php
1 week ago
class-authors.php
1 year ago
class-edd-updater.php
4 weeks 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 year ago
class-plugin-installer.php
1 year 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 year 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
135 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\Utilities\Params; |
| 13 | use AdvancedAds\Framework\Utilities\Formatting; |
| 14 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 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::get( '_wpnonce', '', FILTER_SANITIZE_FULL_SPECIAL_CHARS ) ), 'bulk-posts' ) |
| 44 | || ! in_array( sanitize_key( Params::get( 'post_type' ) ), [ 'post', 'page' ], true ) |
| 45 | || ! current_user_can( 'edit_posts' ) |
| 46 | ) { |
| 47 | return; |
| 48 | } |
| 49 | $disable_ads = Params::get( 'advads_disable_ads', '', FILTER_SANITIZE_FULL_SPECIAL_CHARS ); |
| 50 | $disable_the_content = Params::get( '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::get( 'post', [], FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ); |
| 57 | |
| 58 | foreach ( $ids as $id ) { |
| 59 | $meta = get_post_meta( (int) $id, '_advads_ad_settings', true ); |
| 60 | if ( ! empty( $disable_ads ) ) { |
| 61 | $meta['disable_ads'] = Formatting::string_to_bool( $disable_ads ) ? 1 : 0; |
| 62 | } |
| 63 | if ( ! empty( $disable_the_content ) ) { |
| 64 | $meta['disable_the_content'] = Formatting::string_to_bool( $disable_the_content ) ? 1 : 0; |
| 65 | } |
| 66 | update_post_meta( (int) $id, '_advads_ad_settings', $meta ); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Print bulk edit fields |
| 72 | * |
| 73 | * @param string $column_name the column name. |
| 74 | * @param string $post_type current post type. |
| 75 | * |
| 76 | * @return void |
| 77 | */ |
| 78 | public function add_bulk_edit_fields( $column_name, $post_type ) { |
| 79 | if ( ! in_array( $post_type, [ 'post', 'page' ], true ) ) { |
| 80 | return; |
| 81 | } |
| 82 | require ADVADS_ABSPATH . 'views/admin/page-bulk-edit.php'; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Save quick edit changes |
| 87 | * |
| 88 | * @param int $post_id the post id. |
| 89 | * |
| 90 | * @return void |
| 91 | */ |
| 92 | public function save_quick_edit_fields( $post_id ) { |
| 93 | // Not inline edit, or no permission. |
| 94 | if ( |
| 95 | ! wp_verify_nonce( sanitize_key( Params::post( '_inline_edit' ) ), 'inlineeditnonce' ) || |
| 96 | ! current_user_can( 'edit_post', $post_id ) |
| 97 | ) { |
| 98 | return; |
| 99 | } |
| 100 | |
| 101 | if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
| 102 | return; |
| 103 | } |
| 104 | |
| 105 | if ( wp_is_post_revision( $post_id ) ) { |
| 106 | return; |
| 107 | } |
| 108 | |
| 109 | $meta = [ 'disable_ads' => Params::post( 'advads-disable-ads', 0, FILTER_VALIDATE_INT ) ]; |
| 110 | if ( defined( 'AAP_VERSION' ) ) { |
| 111 | $meta['disable_the_content'] = Params::post( 'advads-disable-the-content', 0 ); |
| 112 | } |
| 113 | |
| 114 | update_post_meta( $post_id, '_advads_ad_settings', $meta ); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Print quick edit fields. |
| 119 | * |
| 120 | * @param string $column the column name. |
| 121 | * @param string $post_type current post type. |
| 122 | * |
| 123 | * @return void |
| 124 | */ |
| 125 | public function add_quick_edit_fields( $column, $post_type ) { |
| 126 | if ( ! in_array( $post_type, [ 'post', 'page' ], true ) ) { |
| 127 | return; |
| 128 | } |
| 129 | |
| 130 | if ( 'ad-status' === $column ) { |
| 131 | require ADVADS_ABSPATH . 'views/admin/page-quick-edit.php'; |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 |