abstracts
3 months ago
admin
3 months ago
ads
3 months ago
compatibility
3 months ago
crons
3 months ago
frontend
3 months ago
groups
3 months ago
importers
2 months ago
installation
1 year ago
interfaces
4 months ago
license
3 months ago
placements
3 months ago
rest
1 year ago
traits
4 months ago
utilities
3 months ago
array_ad_conditions.php
1 year ago
cap_map.php
3 years ago
class-assets-registry.php
3 months ago
class-autoloader.php
1 year ago
class-constants.php
1 year ago
class-entities.php
3 months ago
class-modal.php
1 year ago
class-modules.php
1 year ago
class-options.php
1 year ago
class-plugin.php
3 months ago
class-post-data.php
10 months ago
class-shortcodes.php
4 months ago
class-upgrades.php
1 year ago
class-widget.php
11 months ago
default-hooks.php
4 months ago
functions-ad.php
1 year ago
functions-components.php
3 months ago
functions-conditional.php
1 year ago
functions-core.php
1 year ago
functions-group.php
1 year ago
functions-placement.php
1 year ago
functions.php
3 months ago
index.php
2 years ago
load_modules.php
2 years ago
class-assets-registry.php
168 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Assets registry handles the registration of stylesheets and scripts required for plugin functionality. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.47.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds; |
| 11 | |
| 12 | use AdvancedAds\Framework; |
| 13 | |
| 14 | defined( 'ABSPATH' ) || exit; |
| 15 | |
| 16 | /** |
| 17 | * Assets Registry. |
| 18 | */ |
| 19 | class Assets_Registry extends Framework\Assets_Registry { |
| 20 | |
| 21 | /** |
| 22 | * Version for plugin local assets. |
| 23 | * |
| 24 | * @return string |
| 25 | */ |
| 26 | public function get_version(): string { |
| 27 | return ADVADS_VERSION; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Prefix to use in handle to make it unique. |
| 32 | * |
| 33 | * @return string |
| 34 | */ |
| 35 | public function get_prefix(): string { |
| 36 | return ADVADS_SLUG; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Base URL for plugin local assets. |
| 41 | * |
| 42 | * @return string |
| 43 | */ |
| 44 | public function get_base_url(): string { |
| 45 | return ADVADS_BASE_URL; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Base path for plugin local assets. |
| 50 | * |
| 51 | * @return string |
| 52 | */ |
| 53 | public function get_base_path(): string { |
| 54 | return ADVADS_ABSPATH; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Register styles |
| 59 | * |
| 60 | * @return void |
| 61 | */ |
| 62 | public function register_styles(): void { |
| 63 | $this->register_style( 'ui', 'admin/assets/css/ui.css' ); |
| 64 | $this->register_style( 'admin', 'admin/assets/css/admin.css' ); |
| 65 | $this->register_style( 'ad-positioning', 'modules/ad-positioning/assets/css/ad-positioning.css', [ self::prefix_it( 'admin' ) ] ); |
| 66 | |
| 67 | // New CSS files. |
| 68 | $this->register_style( 'common', 'assets/css/admin/common.css' ); |
| 69 | $this->register_style( 'screen-onboarding', 'assets/css/admin/screen-onboarding.css' ); |
| 70 | |
| 71 | // 2026. |
| 72 | $this->register_style( 'admin-common', 'assets/dist/admin-common.css' ); |
| 73 | $this->register_style( 'notifications', 'assets/dist/notifications.css' ); |
| 74 | $this->register_style( 'screen-ads-editing', 'assets/dist/screen-ads-editing.css', [ self::prefix_it( 'common' ) ] ); |
| 75 | $this->register_style( 'screen-ads-listing', 'assets/dist/screen-ads-listing.css' ); |
| 76 | $this->register_style( 'screen-dashboard', 'assets/dist/screen-dashboard.css', [ self::prefix_it( 'common' ), 'wp-components' ] ); |
| 77 | $this->register_style( 'screen-groups-listing', 'assets/dist/screen-groups-listing.css' ); |
| 78 | $this->register_style( 'screen-placements-listing', 'assets/dist/screen-placements-listing.css' ); |
| 79 | $this->register_style( 'screen-settings', 'assets/dist/screen-settings.css', [ self::prefix_it( 'common' ) ] ); |
| 80 | $this->register_style( 'screen-support', 'assets/dist/screen-support.css' ); |
| 81 | $this->register_style( 'screen-tools', 'assets/dist/screen-tools.css' ); |
| 82 | $this->register_style( 'wp-dashboard', 'assets/dist/wp-dashboard.css', [ self::prefix_it( 'common' ) ] ); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Register scripts |
| 87 | * |
| 88 | * @return void |
| 89 | */ |
| 90 | public function register_scripts(): void { |
| 91 | $this->register_public_scripts(); |
| 92 | $this->register_admin_scripts(); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Register public scripts |
| 97 | * |
| 98 | * @return void |
| 99 | */ |
| 100 | public function register_public_scripts(): void { |
| 101 | $this->register_script( 'advanced-js', 'assets/dist/advanced.js', null, false, [ 'in_footer' => false, '@asset' => true ] ); // phpcs:ignore |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Register admin scripts |
| 106 | * |
| 107 | * @return void |
| 108 | */ |
| 109 | public function register_admin_scripts(): void { |
| 110 | $this->register_script( 'admin-global', 'admin/assets/js/admin-global.js', [ 'jquery' ], false, true ); |
| 111 | |
| 112 | $this->register_script( 'ui', 'admin/assets/js/ui.js', [ 'jquery' ] ); |
| 113 | $this->register_script( 'conditions', 'admin/assets/js/conditions.js', [ 'jquery', self::prefix_it( 'ui' ) ] ); |
| 114 | $this->register_script( 'inline-edit-group-ads', 'admin/assets/js/inline-edit-group-ads.js', [ 'jquery' ], false, false ); |
| 115 | $this->register_script( 'ad-positioning', '/modules/ad-positioning/assets/js/ad-positioning.js', [], false, true ); |
| 116 | $this->register_script( 'groups', 'admin/assets/js/groups.js', [ 'jquery' ], false, true ); |
| 117 | $this->register_script( 'adblocker-image-data', 'admin/assets/js/adblocker-image-data.js', [ 'jquery' ] ); |
| 118 | |
| 119 | $this->register_script( 'termination', 'admin/assets/js/termination.js', [ 'jquery' ], false, false ); |
| 120 | $this->register_script( 'modal', 'admin/assets/js/dialog-advads-modal.js', [ 'jquery' ], false, false ); |
| 121 | $this->register_script( 'admin', 'admin/assets/js/admin.js', [ 'jquery', self::prefix_it( 'termination' ), self::prefix_it( 'modal' ), self::prefix_it( 'ui' ), 'jquery-ui-autocomplete', 'wp-util' ], false, false ); |
| 122 | |
| 123 | // New JS files. |
| 124 | $onboarding_deps = [ |
| 125 | 'jquery', |
| 126 | 'lodash', |
| 127 | 'moment', |
| 128 | 'wp-data', |
| 129 | 'wp-compose', |
| 130 | 'wp-components', |
| 131 | 'wp-api-fetch', |
| 132 | ]; |
| 133 | $this->register_script( 'screen-onboarding', 'assets/js/screen-onboarding.js', $onboarding_deps, false, true ); |
| 134 | |
| 135 | // OneClick. |
| 136 | $deps = [ |
| 137 | 'jquery', |
| 138 | 'wp-dom-ready', |
| 139 | 'wp-components', |
| 140 | 'wp-notices', |
| 141 | 'wp-element', |
| 142 | 'wp-html-entities', |
| 143 | ]; |
| 144 | $this->register_script( 'oneclick-onboarding', 'assets/js/admin/oneclick-onboarding.js', $deps, false, true ); |
| 145 | |
| 146 | // 2026. |
| 147 | $this->register_script( 'find-adblocker', 'admin/assets/js/advertisement.js' ); |
| 148 | |
| 149 | // phpcs:disable |
| 150 | $use_assets = [ 'in_footer' => true, '@asset' => true ]; |
| 151 | |
| 152 | $this->register_script( 'commands', 'assets/dist/commands.js', null, false, $use_assets ); |
| 153 | $this->register_script( 'admin-common', 'assets/dist/admin-common.js', [ self::prefix_it( 'find-adblocker' ) ], false, $use_assets ); |
| 154 | $this->register_script( 'notifications-center', 'assets/dist/notifications.js', null, false, $use_assets ); |
| 155 | $this->register_script( 'page-quick-edit', 'assets/dist/post-quick-edit.js', null, false, $use_assets ); |
| 156 | $this->register_script( 'screen-ads-editing', 'assets/dist/screen-ads-editing.js', [ self::prefix_it( 'find-adblocker' ), self::prefix_it( 'admin-common' ) ], false, $use_assets ); |
| 157 | $this->register_script( 'screen-ads-listing', 'assets/dist/screen-ads-listing.js', [ 'inline-edit-post', 'wp-util', 'wp-api-fetch', self::prefix_it( 'admin-common' ), self::prefix_it( 'find-adblocker' ) ], false, $use_assets ); |
| 158 | $this->register_script( 'screen-dashboard', 'assets/dist/screen-dashboard.js', [ self::prefix_it( 'admin-common' ) ], false, $use_assets ); |
| 159 | $this->register_script( 'screen-groups-listing', 'assets/dist/screen-groups-listing.js', [ self::prefix_it( 'find-adblocker' ), self::prefix_it( 'admin-common' ) ], false, $use_assets ); |
| 160 | $this->register_script( 'screen-placements-listing', 'assets/dist/screen-placements-listing.js', [ 'wp-util', self::prefix_it( 'find-adblocker' ), self::prefix_it( 'admin-global' ), self::prefix_it( 'admin-common' ) ], false, $use_assets ); |
| 161 | $this->register_script( 'screen-settings', 'assets/dist/screen-settings.js', null, false, $use_assets ); |
| 162 | $this->register_script( 'screen-support', 'assets/dist/screen-support.js', null, false, $use_assets ); |
| 163 | $this->register_script( 'screen-tools', 'assets/dist/screen-tools.js', [ self::prefix_it( 'find-adblocker' ) ], false, $use_assets ); |
| 164 | $this->register_script( 'wp-dashboard', 'assets/dist/wp-dashboard.js', null, false, $use_assets ); |
| 165 | // phpcs:enable |
| 166 | } |
| 167 | } |
| 168 |