abstracts
1 day ago
admin
1 day ago
ads
1 day ago
compatibility
1 week ago
crons
1 day ago
frontend
1 week ago
groups
1 day ago
importers
5 days ago
installation
1 day ago
interfaces
5 months ago
license
1 day ago
placements
1 day ago
rest
1 day ago
traits
1 day ago
utilities
1 day ago
cap_map.php
3 years ago
class-assets-registry.php
1 day ago
class-autoloader.php
1 week ago
class-cache-invalidator.php
1 day ago
class-constants.php
1 day ago
class-content-injector.php
1 month 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
1 day ago
class-post-data.php
10 months ago
class-shortcodes.php
1 week ago
class-upgrades.php
1 day ago
class-widget.php
11 months ago
default-hooks.php
5 months ago
functions-ad.php
1 day ago
functions-components.php
3 months ago
functions-conditional.php
1 year ago
functions-core.php
1 year ago
functions-group.php
1 day ago
functions-placement.php
1 day ago
functions.php
1 week ago
index.php
2 years ago
load_modules.php
2 years ago
class-assets-registry.php
173 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 | // App. |
| 85 | $this->register_style( 'app', 'assets/dist/app.css' ); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Register scripts |
| 90 | * |
| 91 | * @return void |
| 92 | */ |
| 93 | public function register_scripts(): void { |
| 94 | $this->register_public_scripts(); |
| 95 | $this->register_admin_scripts(); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Register public scripts |
| 100 | * |
| 101 | * @return void |
| 102 | */ |
| 103 | public function register_public_scripts(): void { |
| 104 | $this->register_script( 'advanced-js', 'assets/dist/advanced.js', null, false, [ 'in_footer' => false, '@asset' => true ] ); // phpcs:ignore |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Register admin scripts |
| 109 | * |
| 110 | * @return void |
| 111 | */ |
| 112 | public function register_admin_scripts(): void { |
| 113 | $this->register_script( 'admin-global', 'admin/assets/js/admin-global.js', [ 'jquery' ], false, true ); |
| 114 | |
| 115 | $this->register_script( 'ui', 'admin/assets/js/ui.js', [ 'jquery' ] ); |
| 116 | $this->register_script( 'conditions', 'admin/assets/js/conditions.js', [ 'jquery', self::prefix_it( 'ui' ) ] ); |
| 117 | $this->register_script( 'inline-edit-group-ads', 'admin/assets/js/inline-edit-group-ads.js', [ 'jquery' ], false, false ); |
| 118 | $this->register_script( 'ad-positioning', '/modules/ad-positioning/assets/js/ad-positioning.js', [], false, true ); |
| 119 | $this->register_script( 'adblocker-image-data', 'admin/assets/js/adblocker-image-data.js', [ 'jquery' ] ); |
| 120 | |
| 121 | $this->register_script( 'termination', 'admin/assets/js/termination.js', [ 'jquery' ], false, false ); |
| 122 | $this->register_script( 'modal', 'admin/assets/js/dialog-advads-modal.js', [ 'jquery' ], false, false ); |
| 123 | $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 ); |
| 124 | |
| 125 | // New JS files. |
| 126 | $onboarding_deps = [ |
| 127 | 'jquery', |
| 128 | 'lodash', |
| 129 | 'moment', |
| 130 | 'wp-data', |
| 131 | 'wp-compose', |
| 132 | 'wp-components', |
| 133 | 'wp-api-fetch', |
| 134 | ]; |
| 135 | $this->register_script( 'screen-onboarding', 'assets/js/screen-onboarding.js', $onboarding_deps, false, true ); |
| 136 | |
| 137 | // OneClick. |
| 138 | $deps = [ |
| 139 | 'jquery', |
| 140 | 'wp-dom-ready', |
| 141 | 'wp-components', |
| 142 | 'wp-notices', |
| 143 | 'wp-element', |
| 144 | 'wp-html-entities', |
| 145 | ]; |
| 146 | $this->register_script( 'oneclick-onboarding', 'assets/js/admin/oneclick-onboarding.js', $deps, false, true ); |
| 147 | |
| 148 | // 2026. |
| 149 | $this->register_script( 'find-adblocker', 'admin/assets/js/advertisement.js' ); |
| 150 | |
| 151 | // phpcs:disable |
| 152 | $use_assets = [ 'in_footer' => true, '@asset' => true ]; |
| 153 | |
| 154 | $this->register_script( 'commands', 'assets/dist/commands.js', null, false, $use_assets ); |
| 155 | $this->register_script( 'admin-common', 'assets/dist/admin-common.js', [ self::prefix_it( 'find-adblocker' ) ], false, $use_assets ); |
| 156 | $this->register_script( 'notifications-center', 'assets/dist/notifications.js', null, false, $use_assets ); |
| 157 | $this->register_script( 'page-quick-edit', 'assets/dist/post-quick-edit.js', null, false, $use_assets ); |
| 158 | $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 ); |
| 159 | $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 ); |
| 160 | $this->register_script( 'screen-dashboard', 'assets/dist/screen-dashboard.js', [ self::prefix_it( 'admin-common' ) ], false, $use_assets ); |
| 161 | $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 ); |
| 162 | $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 ); |
| 163 | $this->register_script( 'screen-settings', 'assets/dist/screen-settings.js', null, false, $use_assets ); |
| 164 | $this->register_script( 'screen-support', 'assets/dist/screen-support.js', null, false, $use_assets ); |
| 165 | $this->register_script( 'screen-tools', 'assets/dist/screen-tools.js', [ self::prefix_it( 'find-adblocker' ) ], false, $use_assets ); |
| 166 | $this->register_script( 'wp-dashboard', 'assets/dist/wp-dashboard.js', null, false, $use_assets ); |
| 167 | // phpcs:enable |
| 168 | |
| 169 | // App. |
| 170 | $this->register_script( 'app', 'assets/dist/app.js', null, false, $use_assets ); |
| 171 | } |
| 172 | } |
| 173 |