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-assets.php
217 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Assets manages the enqueuing of styles and scripts for the administration area. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.47.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Admin; |
| 11 | |
| 12 | use AdvancedAds\Constants; |
| 13 | use Advanced_Ads_AdSense_Admin; |
| 14 | use Advanced_Ads_Display_Conditions; |
| 15 | use AdvancedAds\Utilities\Conditional; |
| 16 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 17 | |
| 18 | defined( 'ABSPATH' ) || exit; |
| 19 | |
| 20 | /** |
| 21 | * Admin Assets. |
| 22 | */ |
| 23 | class Assets implements Integration_Interface { |
| 24 | |
| 25 | /** |
| 26 | * Hook into WordPress. |
| 27 | * |
| 28 | * @return void |
| 29 | */ |
| 30 | public function hooks(): void { |
| 31 | add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_styles' ], 10, 0 ); |
| 32 | add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_scripts' ], 9, 0 ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Enqueue styles |
| 37 | * |
| 38 | * @return void |
| 39 | */ |
| 40 | public function enqueue_styles(): void { |
| 41 | $wp_screen = get_current_screen(); |
| 42 | |
| 43 | // Bail if we should bail. |
| 44 | if ( $this->should_bail() ) { |
| 45 | return; |
| 46 | } |
| 47 | |
| 48 | // TODO: made them load conditionaly. |
| 49 | if ( 'dashboard' !== $wp_screen->id ) { |
| 50 | wp_advads()->registry->enqueue_style( 'ui' ); |
| 51 | wp_advads()->registry->enqueue_style( 'admin' ); |
| 52 | } |
| 53 | |
| 54 | if ( Conditional::is_screen_advanced_ads() ) { |
| 55 | wp_advads()->registry->enqueue_style( 'notifications' ); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Enqueue scripts |
| 61 | * |
| 62 | * @return void |
| 63 | */ |
| 64 | public function enqueue_scripts(): void { |
| 65 | global $post; |
| 66 | |
| 67 | $screen = get_current_screen(); |
| 68 | $this->enqueue_endpoints(); |
| 69 | $this->enqueue_security(); |
| 70 | $this->enqueue_site_info(); |
| 71 | $this->enqueue_i18n(); |
| 72 | |
| 73 | // Bail if we should bail. |
| 74 | if ( $this->should_bail() ) { |
| 75 | return; |
| 76 | } |
| 77 | |
| 78 | // TODO: add conditional loading. |
| 79 | wp_advads()->registry->enqueue_script( 'admin-global' ); |
| 80 | wp_advads()->registry->enqueue_script( 'commands' ); |
| 81 | |
| 82 | $params = [ |
| 83 | 'ajax_nonce' => wp_create_nonce( 'advanced-ads-admin-ajax-nonce' ), |
| 84 | 'create_ad_url' => esc_url( admin_url( 'post-new.php?post_type=advanced_ads' ) ), |
| 85 | 'create_your_first_ad' => __( 'Create your first ad', 'advanced-ads' ), |
| 86 | ]; |
| 87 | wp_advads_json_add( $params, 'advadsglobal' ); |
| 88 | |
| 89 | // TODO: remove later start using global data variable. |
| 90 | wp_advads_json_add( 'ajax_nonce', wp_create_nonce( 'advanced-ads-admin-ajax-nonce' ), 'advadsglobal' ); |
| 91 | |
| 92 | if ( Conditional::is_screen_advanced_ads() ) { |
| 93 | wp_advads()->registry->enqueue_script( 'admin' ); |
| 94 | wp_advads()->registry->enqueue_script( 'conditions' ); |
| 95 | wp_advads()->registry->enqueue_script( 'adblocker-image-data' ); |
| 96 | wp_advads()->registry->enqueue_script( 'notifications-center' ); |
| 97 | |
| 98 | $translation_array = [ |
| 99 | 'condition_or' => __( 'or', 'advanced-ads' ), |
| 100 | 'condition_and' => __( 'and', 'advanced-ads' ), |
| 101 | 'after_paragraph_promt' => __( 'After which paragraph?', 'advanced-ads' ), |
| 102 | 'page_level_ads_enabled' => Advanced_Ads_AdSense_Admin::get_auto_ads_messages()['enabled'], |
| 103 | 'today' => __( 'Today', 'advanced-ads' ), |
| 104 | 'yesterday' => __( 'Yesterday', 'advanced-ads' ), |
| 105 | 'this_month' => __( 'This Month', 'advanced-ads' ), |
| 106 | /* translators: 1: The number of days. */ |
| 107 | 'last_n_days' => __( 'Last %1$d days', 'advanced-ads' ), |
| 108 | /* translators: 1: An error message. */ |
| 109 | 'error_message' => __( 'An error occurred: %1$s', 'advanced-ads' ), |
| 110 | 'all' => __( 'All', 'advanced-ads' ), |
| 111 | 'active' => __( 'Active', 'advanced-ads' ), |
| 112 | 'no_results' => __( 'There were no results returned for this ad. Please make sure it is active, generating impressions and double check your ad parameters.', 'advanced-ads' ), |
| 113 | 'show_inactive_ads' => __( 'Show inactive ads', 'advanced-ads' ), |
| 114 | 'hide_inactive_ads' => __( 'Hide inactive ads', 'advanced-ads' ), |
| 115 | 'display_conditions_form_name' => Advanced_Ads_Display_Conditions::FORM_NAME, // not meant for translation. |
| 116 | 'close' => __( 'Close', 'advanced-ads' ), |
| 117 | 'close_save' => __( 'Close and save', 'advanced-ads' ), |
| 118 | 'confirmation' => __( 'Data you have entered has not been saved. Are you sure you want to discard your changes?', 'advanced-ads' ), |
| 119 | 'admin_page' => $screen->id, |
| 120 | 'placements_allowed_ads' => [ |
| 121 | 'action' => 'advads_placements_allowed_ads', |
| 122 | 'nonce' => wp_create_nonce( 'advads-create-new-placement' ), |
| 123 | ], |
| 124 | ]; |
| 125 | |
| 126 | // TODO: remove later start using global data variable. |
| 127 | wp_advads_json_add( $translation_array, 'advadstxt' ); |
| 128 | } |
| 129 | |
| 130 | if ( Constants::POST_TYPE_AD === $screen->id ) { |
| 131 | wp_enqueue_media( [ 'post' => $post ] ); |
| 132 | } |
| 133 | |
| 134 | // Ad edit screen. |
| 135 | if ( 'post' === $screen->base && Constants::POST_TYPE_AD === $screen->post_type ) { |
| 136 | wp_advads()->registry->enqueue_script( 'ad-positioning' ); |
| 137 | } |
| 138 | |
| 139 | if ( in_array( $screen->id, [ 'edit-post', 'edit-page' ], true ) && current_user_can( 'edit_posts' ) ) { |
| 140 | wp_advads()->registry->enqueue_script( 'page-quick-edit' ); |
| 141 | wp_advads_json_add( 'page_quick_edit', [ 'nonce' => wp_create_nonce( 'advads-post-quick-edit' ) ] ); |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Global variables: advancedAds |
| 147 | * |
| 148 | * @return void |
| 149 | */ |
| 150 | private function enqueue_security() { |
| 151 | $security = [ |
| 152 | 'ajaxNonce' => wp_create_nonce( 'advanced-ads-admin-ajax-nonce' ), |
| 153 | ]; |
| 154 | |
| 155 | wp_advads_json_add( 'security', $security ); |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Global variables: advancedAds |
| 160 | * |
| 161 | * @return void |
| 162 | */ |
| 163 | private function enqueue_site_info() { |
| 164 | $endpoints = [ |
| 165 | 'blogId' => get_current_blog_id(), |
| 166 | 'homeUrl' => get_home_url(), |
| 167 | ]; |
| 168 | |
| 169 | wp_advads_json_add( 'siteInfo', $endpoints ); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Global variables: advancedAds |
| 174 | * |
| 175 | * @return void |
| 176 | */ |
| 177 | private function enqueue_endpoints() { |
| 178 | $endpoints = [ |
| 179 | 'adminUrl' => esc_url( admin_url( '/' ) ), |
| 180 | 'ajaxUrl' => esc_url( admin_url( 'admin-ajax.php' ) ), |
| 181 | 'assetsUrl' => esc_url( ADVADS_BASE_URL ), |
| 182 | 'editAd' => esc_url( admin_url( 'post.php?action=edit&post=' ) ), |
| 183 | ]; |
| 184 | |
| 185 | wp_advads_json_add( 'endpoints', $endpoints ); |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Localize i18n strings |
| 190 | * |
| 191 | * @return void |
| 192 | */ |
| 193 | private function enqueue_i18n() { |
| 194 | $data = [ |
| 195 | 'btnCloseLabel' => __( 'Close', 'advanced-ads' ), |
| 196 | 'searchResultsLabel' => __( 'Showing search results for', 'advanced-ads' ), |
| 197 | ]; |
| 198 | |
| 199 | wp_advads_json_add( 'i18n', $data ); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Check if we should bail from enqueueing assets. |
| 204 | * |
| 205 | * @return bool |
| 206 | */ |
| 207 | private function should_bail(): bool { |
| 208 | $wp_screen = get_current_screen(); |
| 209 | |
| 210 | $bail_screens = [ |
| 211 | 'advanced-ads_page_advanced-ads-tools', |
| 212 | ]; |
| 213 | |
| 214 | return in_array( $wp_screen->id, $bail_screens, true ); |
| 215 | } |
| 216 | } |
| 217 |