class-admin.php
192 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The class is responsible for adding widget in the WordPress admin area. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Modules\OneClick\Admin; |
| 11 | |
| 12 | use AdvancedAds\Utilities\WordPress; |
| 13 | use AdvancedAds\Modules\OneClick\Helpers; |
| 14 | use AdvancedAds\Modules\OneClick\Options; |
| 15 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 16 | |
| 17 | defined( 'ABSPATH' ) || exit; |
| 18 | |
| 19 | /** |
| 20 | * Admin. |
| 21 | */ |
| 22 | class Admin implements Integration_Interface { |
| 23 | |
| 24 | /** |
| 25 | * Hook into WordPress |
| 26 | * |
| 27 | * @return void |
| 28 | */ |
| 29 | public function hooks(): void { |
| 30 | add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ] ); |
| 31 | add_action( 'advanced-ads-overview-widgets-after', [ $this, 'add_metabox' ] ); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Enqueue scripts |
| 36 | * |
| 37 | * @param string $hook current page hook. |
| 38 | * |
| 39 | * @return void |
| 40 | */ |
| 41 | public function enqueue( $hook ): void { |
| 42 | if ( 'toplevel_page_advanced-ads' !== $hook ) { |
| 43 | return; |
| 44 | } |
| 45 | |
| 46 | $config = Options::pubguru_config(); |
| 47 | |
| 48 | wp_advads()->registry->enqueue_script( 'oneclick-onboarding' ); |
| 49 | wp_advads_json_add( |
| 50 | 'oneclick', |
| 51 | [ |
| 52 | 'security' => wp_create_nonce( 'pubguru_oneclick_security' ), |
| 53 | 'isConnected' => false !== Options::pubguru_config(), |
| 54 | 'btnCancel' => __( 'Cancel', 'advanced-ads' ), |
| 55 | 'btnClose' => __( 'Close', 'advanced-ads' ), |
| 56 | 'btnContinue' => __( 'Continue', 'advanced-ads' ), |
| 57 | 'btnRetry' => __( 'Retry', 'advanced-ads' ), |
| 58 | 'siteDomain' => WordPress::get_site_domain(), |
| 59 | 'spinner' => ADVADS_BASE_URL . 'admin/assets/img/loader.gif', |
| 60 | 'addonRow' => [ |
| 61 | 'icon' => ADVADS_BASE_URL . 'assets/img/add-ons/aa-addons-icons-m2pg.svg', |
| 62 | 'title' => __( 'MonetizeMore & PubGuru Integration', 'advanced-ads' ), |
| 63 | 'content' => __( 'Enables MonetizeMore users to link their settings with the PubGuru insights & analytics dashboard.', 'advanced-ads' ), |
| 64 | 'connect' => __( 'Connect now', 'advanced-ads' ), |
| 65 | 'disconnect' => __( 'Disconnect now', 'advanced-ads' ), |
| 66 | ], |
| 67 | 'metabox' => [ |
| 68 | 'title' => __( 'MonetizeMore & PubGuru Integration', 'advanced-ads' ), |
| 69 | 'visitText' => __( 'Visit the MonetizeMore website to learn about PubGuru', 'advanced-ads' ), |
| 70 | 'visitLink' => 'https://www.monetizemore.com/solutions/pubguru', |
| 71 | ], |
| 72 | 'step1' => [ |
| 73 | 'title' => __( 'Onboarding Step 1 of 3, Consent and Privacy Policy', 'advanced-ads' ), |
| 74 | 'content' => sprintf( |
| 75 | wp_kses_post( |
| 76 | /* translators: %s link to privacy policy */ |
| 77 | __( 'This form is designed exclusively for MonetizeMore customers who wish to integrate Advanced Ads with their PubGuru Dashboard. In alignment with our <a href="%s">Privacy Policy</a>, no information other than your domain name is exchanged, and Advanced Ads does not engage in any tracking activities.', 'advanced-ads' ) |
| 78 | ), |
| 79 | 'https://wpadvancedads.com/privacy-policy/' |
| 80 | ), |
| 81 | 'agreeText' => __( 'I agree to share my domain name to facilitate the connection with my PubGuru account.', 'advanced-ads' ), |
| 82 | 'btnAgree' => __( 'Connect with PubGuru', 'advanced-ads' ), |
| 83 | ], |
| 84 | 'step2' => [ |
| 85 | 'title' => __( 'Onboarding Step 2 of 3, Connecting to PubGuru', 'advanced-ads' ), |
| 86 | 'loading' => __( 'Fetching your domain information from PubGuru, please wait...', 'advanced-ads' ), |
| 87 | 'notRegistered' => __( 'The domain “{0}” is not registered with PubGuru', 'advanced-ads' ), |
| 88 | 'content' => sprintf( |
| 89 | /* translators: %1$s is contact link, %2$s is email link */ |
| 90 | __( 'If you are on a domain “unknow” to PubGuru, e.g., a staging site, please indicate the domain that you registered with PubGuru. If you need assistance, please <a href="%1$s">click here to contact PubGuru support</a> or <a href="%2$s">send an email to support@monetizemore.com</a>.', 'advanced-ads' ), |
| 91 | 'https://www.monetizemore.com/contact/', |
| 92 | 'mailto:support@monetizemore.com' |
| 93 | ), |
| 94 | 'inputLabel' => __( 'Registered domain', 'advanced-ads' ), |
| 95 | 'serverError' => __( 'The onboarding process has encountered an error: “{0}”', 'advanced-ads' ), |
| 96 | 'serverContent' => sprintf( |
| 97 | /* translators: %1$s is contact link, %2$s is email link */ |
| 98 | __( 'Please wait a few minutes and try again. If you need assistance, please <a href="%1$s">click here to contact PubGuru support</a> or <a href="%2$s">send an email to support@monetizemore.com</a>.', 'advanced-ads' ), |
| 99 | 'https://www.monetizemore.com/contact/', |
| 100 | 'mailto:support@monetizemore.com' |
| 101 | ), |
| 102 | ], |
| 103 | 'step3' => [ |
| 104 | 'title' => __( 'Onboarding Step 3 of 3, Test and Finalize Ad Unit Import', 'advanced-ads' ), |
| 105 | 'yourDomain' => __( 'Your domain “{0}” is connected to PubGuru.', 'advanced-ads' ), |
| 106 | 'btnImport' => __( 'Import PubGuru Ad Units', 'advanced-ads' ), |
| 107 | 'importContent' => wp_kses_post( |
| 108 | join( |
| 109 | '', |
| 110 | [ |
| 111 | '<p>' . __( 'This step is entirely optional. Your PubGuru configuration shows the following available ad units', 'advanced-ads' ) . '</p>', |
| 112 | '<ul class="list-disc ml-4">', |
| 113 | '<li>' . __( '3 In-Content Ads', 'advanced-ads' ) . '</li>', |
| 114 | '<li>' . __( '1 Leaderboard Ad', 'advanced-ads' ) . '</li>', |
| 115 | '</ul>', |
| 116 | '<p>' . __( 'You will be able to preview the ad units injections on a test page before and there is a rollback option after the import.', 'advanced-ads' ) . '</p>', |
| 117 | ] |
| 118 | ) |
| 119 | ), |
| 120 | 'previewContent' => __( 'You may preview or change the test page for the ad units’ injections, or finalize the PubGuru Ad Unit import.', 'advanced-ads' ), |
| 121 | 'finalContent' => sprintf( |
| 122 | /* translators: %s rollback page link */ |
| 123 | __( 'You have successfully imported your PubGuru Ad Units. If necessary, use the <a href="%s">Rollback Tool</a> to revert your ad setup to a previous state.', 'advanced-ads' ), |
| 124 | esc_url( admin_url( 'admin.php?page=advanced-ads-tools#import-history' ) ) |
| 125 | ), |
| 126 | ], |
| 127 | 'settings' => [ |
| 128 | 'title' => __( 'General Settings', 'advanced-ads' ), |
| 129 | 'help' => sprintf( |
| 130 | /* translators: %1$s is contact link, %2$s is email link */ |
| 131 | __( 'If you need assistance, please <a href="%1$s">click here to contact PubGuru support</a> or <a href="%2$s">send an email to support@monetizemore.com</a>.', 'advanced-ads' ), |
| 132 | 'https://www.monetizemore.com/contact/', |
| 133 | 'mailto:support@monetizemore.com' |
| 134 | ), |
| 135 | 'headerBidding' => __( 'Activate PubGuru Header Bidding', 'advanced-ads' ), |
| 136 | 'activateTags' => __( 'Activate Tag Conversion', 'advanced-ads' ), |
| 137 | 'trafficCop' => __( 'Activate Traffic Cop Invalid Traffic Protection', 'advanced-ads' ), |
| 138 | 'trafficCopTrial' => __( '7 Days Trial', 'advanced-ads' ), |
| 139 | 'adsTxt' => sprintf( |
| 140 | /* translators: %s is link to PubGuru */ |
| 141 | __( 'Redirect ads.txt calls to the <a href="%s" target="_blank" rel="noreferrer">PubGuru platform</a>', 'advanced-ads' ), |
| 142 | 'https://app.pubguru.com/ads-txt' |
| 143 | ), |
| 144 | 'scriptLocation' => __( 'Move the PubGuru Header Bidding script to the footer. <span class="muted">Keep this option disabled to maximize revenue. Only enable it if PageSpeed is your priority.</span>', 'advanced-ads' ), |
| 145 | 'onlyPreview' => __( '(Only enabled on Preview Page)', 'advanced-ads' ), |
| 146 | ], |
| 147 | 'options' => [ |
| 148 | 'headerBidding' => Options::module( 'header_bidding' ), |
| 149 | 'headerBiddingAtBody' => Options::module( 'header_bidding_at_body' ), |
| 150 | 'adsTxt' => Options::module( 'ads_txt' ), |
| 151 | 'trafficCop' => Options::module( 'traffic_cop' ), |
| 152 | 'tagConversion' => Options::module( 'tag_conversion' ), |
| 153 | 'connectedDomain' => $config['domain'] ?? '', |
| 154 | 'selectedMethod' => $config['method'] ?? 'page', |
| 155 | 'selectedPage' => $config['page'] ?? 0, |
| 156 | 'selectedPageTitle' => isset( $config['page'] ) ? get_the_title( $config['page'] ) : '', |
| 157 | 'hasTrafficCop' => Helpers::has_traffic_cop( $config ), |
| 158 | ], |
| 159 | 'modal' => [ |
| 160 | 'title' => __( 'Import PubGuru Ad Units', 'advanced-ads' ), |
| 161 | 'btnSave' => __( 'Close and update preview', 'advanced-ads' ), |
| 162 | 'btnFinal' => __( 'Finalize ad unit import', 'advanced-ads' ), |
| 163 | 'btnUpdate' => __( 'Update preview', 'advanced-ads' ), |
| 164 | 'btnGoto' => __( 'Go to the preview', 'advanced-ads' ), |
| 165 | 'labelImport' => __( 'Import method', 'advanced-ads' ), |
| 166 | 'labelSpecificPage' => __( 'Preview ad units on specific page', 'advanced-ads' ), |
| 167 | 'labelFinalImport' => __( 'Finalize ad units import', 'advanced-ads' ), |
| 168 | 'descFinalImport' => join( |
| 169 | '', |
| 170 | [ |
| 171 | '<ul class="list-disc ml-2">', |
| 172 | '<li>' . __( 'Your existing ads and placements will be set to ‘Draft’ mode', 'advanced-ads' ) . '</li>', |
| 173 | '<li>' . __( 'Your PubGuru ad units will be imported as suitable ads and placements, and published right away', 'advanced-ads' ) . '</li>', |
| 174 | '</ul>', |
| 175 | '<p>' . __( 'You can manually republish specific ads and placements or fully rollback at any time.', 'advanced-ads' ) . '</p>', |
| 176 | ] |
| 177 | ), |
| 178 | ], |
| 179 | ] |
| 180 | ); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Add metabox |
| 185 | * |
| 186 | * @return void |
| 187 | */ |
| 188 | public function add_metabox(): void { |
| 189 | echo '<div id="advads-oneclick-app"></div>'; |
| 190 | } |
| 191 | } |
| 192 |