ads
1 week ago
groups
1 week ago
metaboxes
1 year ago
pages
2 days ago
placements
2 days ago
class-action-links.php
1 week ago
class-addon-box.php
2 days ago
class-addon-updater.php
2 days ago
class-admin-menu.php
2 days ago
class-admin-notices.php
1 year ago
class-ajax.php
2 days ago
class-app.php
2 days ago
class-assets.php
2 days ago
class-authors.php
1 year ago
class-edd-updater.php
2 days ago
class-license-admin-post.php
2 days 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
2 days ago
class-plugin-auto-update.php
2 days ago
class-plugin-installer.php
2 days 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
2 days 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-metabox-ad-settings.php
134 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Ad settings metabox. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.2 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Admin; |
| 11 | |
| 12 | use Advanced_Ads; |
| 13 | use AdvancedAds\Constants; |
| 14 | use AdvancedAds\Utilities\Validation; |
| 15 | use AdvancedAds\Utilities\Conditional; |
| 16 | use AdvancedAds\Framework\Utilities\Params; |
| 17 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 18 | |
| 19 | defined( 'ABSPATH' ) || exit; |
| 20 | |
| 21 | /** |
| 22 | * Ad settings metabox. |
| 23 | */ |
| 24 | class Metabox_Ad_Settings implements Integration_Interface { |
| 25 | |
| 26 | /** |
| 27 | * Ad setting post meta key |
| 28 | * |
| 29 | * @var string |
| 30 | */ |
| 31 | const SETTING_METAKEY = '_advads_ad_settings'; |
| 32 | |
| 33 | |
| 34 | /** |
| 35 | * Hook into WordPress. |
| 36 | * |
| 37 | * @return void |
| 38 | */ |
| 39 | public function hooks(): void { |
| 40 | add_action( 'add_meta_boxes', [ $this, 'add_meta_box' ] ); |
| 41 | add_action( 'save_post', [ $this, 'save_settings' ], 10, 2 ); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Add a meta box to post type edit screens with ad settings |
| 46 | * |
| 47 | * @param string $post_type current post type. |
| 48 | * |
| 49 | * @return void |
| 50 | */ |
| 51 | public function add_meta_box( $post_type = '' ): void { |
| 52 | // Early bail!! |
| 53 | if ( ! Conditional::user_can( 'advanced_ads_edit_ads' ) || ! is_post_type_viewable( $post_type ) ) { |
| 54 | return; |
| 55 | } |
| 56 | |
| 57 | $options = Advanced_Ads::get_instance()->options(); |
| 58 | $disabled_post_types = $options['pro']['general']['disable-by-post-types'] ?? []; |
| 59 | $render_what = in_array( $post_type, $disabled_post_types, true ) ? 'display_disable_notice' : 'display_settings'; |
| 60 | |
| 61 | add_meta_box( |
| 62 | 'advads-ad-settings', |
| 63 | __( 'Ad Settings', 'advanced-ads' ), |
| 64 | [ $this, $render_what ], |
| 65 | $post_type, |
| 66 | 'side', |
| 67 | 'low' |
| 68 | ); |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Render meta box for ad settings notice when ads disabled for post type |
| 73 | * |
| 74 | * @param WP_Post $post The post object. |
| 75 | * |
| 76 | * @return void |
| 77 | */ |
| 78 | public function display_disable_notice( $post ): void { |
| 79 | $labels = get_post_type_object( $post->post_type )->labels; |
| 80 | include ADVADS_ABSPATH . 'views/notices/ad-disable-post-type.php'; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Render meta box for ad settings on a per post basis |
| 85 | * |
| 86 | * @param WP_Post $post The post object. |
| 87 | * |
| 88 | * @return void |
| 89 | */ |
| 90 | public function display_settings( $post ): void { |
| 91 | $values = get_post_meta( $post->ID, self::SETTING_METAKEY, true ); |
| 92 | |
| 93 | include ADVADS_ABSPATH . 'views/admin/metaboxes/ads/post-ad-settings.php'; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Save the ad settings when the post is saved. |
| 98 | * |
| 99 | * @param int $post_id Post ID. |
| 100 | * @param object $post Post object. |
| 101 | * |
| 102 | * @return void |
| 103 | */ |
| 104 | public function save_settings( $post_id, $post ): void { |
| 105 | $post_id = absint( $post_id ); |
| 106 | |
| 107 | // Check the nonce. |
| 108 | $nonce = Params::post( 'advads_post_meta_box_nonce' ); |
| 109 | if ( ! $nonce || ! wp_verify_nonce( $nonce, 'advads_post_meta_box' ) ) { |
| 110 | return; |
| 111 | } |
| 112 | |
| 113 | // Don’t display for non admins. |
| 114 | if ( |
| 115 | ! Conditional::user_can( 'advanced_ads_edit_ads' ) || |
| 116 | ! Validation::check_save_post( $post_id, $post ) |
| 117 | ) { |
| 118 | return; |
| 119 | } |
| 120 | |
| 121 | // Check user has permission to edit. |
| 122 | $perm = 'page' === get_post_type( $post_id ) ? 'edit_page' : 'edit_post'; |
| 123 | if ( ! current_user_can( $perm, $post_id ) ) { |
| 124 | return; |
| 125 | } |
| 126 | |
| 127 | $data['disable_ads'] = absint( $_POST['advanced_ads']['disable_ads'] ?? 0 ); |
| 128 | |
| 129 | $data = apply_filters( 'advanced_ads_save_post_meta_box', $data ); |
| 130 | |
| 131 | update_post_meta( $post_id, self::SETTING_METAKEY, $data ); |
| 132 | } |
| 133 | } |
| 134 |