abstracts
9 months ago
admin
10 months ago
ads
9 months ago
compatibility
9 months ago
crons
1 year ago
frontend
11 months ago
groups
1 year ago
importers
1 year ago
installation
1 year ago
interfaces
1 year ago
placements
1 year ago
rest
1 year ago
traits
1 year ago
utilities
11 months ago
array_ad_conditions.php
1 year ago
cap_map.php
3 years ago
class-assets-registry.php
1 year ago
class-autoloader.php
1 year ago
class-constants.php
1 year ago
class-entities.php
1 year ago
class-modal.php
1 year ago
class-modules.php
1 year ago
class-options.php
1 year ago
class-plugin.php
1 year ago
class-post-data.php
10 months ago
class-shortcodes.php
1 year ago
class-upgrades.php
1 year ago
class-widget.php
11 months ago
default-hooks.php
1 year ago
functions-ad.php
1 year 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
1 year ago
index.php
2 years ago
load_modules.php
2 years ago
class-assets-registry.php
124 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 | * Register styles |
| 50 | * |
| 51 | * @return void |
| 52 | */ |
| 53 | public function register_styles(): void { |
| 54 | $this->register_style( 'ui', 'admin/assets/css/ui.css' ); |
| 55 | $this->register_style( 'admin', 'admin/assets/css/admin.css' ); |
| 56 | $this->register_style( 'ad-positioning', 'modules/ad-positioning/assets/css/ad-positioning.css', [ self::prefix_it( 'admin' ) ] ); |
| 57 | |
| 58 | // New CSS files. |
| 59 | $this->register_style( 'common', 'assets/css/admin/common.css' ); |
| 60 | $this->register_style( 'notifications', 'assets/css/admin/notifications.css' ); |
| 61 | $this->register_style( 'screen-ads-editing', 'assets/css/admin/screen-ads-editing.css', [ self::prefix_it( 'common' ) ] ); |
| 62 | $this->register_style( 'screen-ads-listing', 'assets/css/admin/screen-ads-listing.css', [] ); |
| 63 | $this->register_style( 'screen-dashboard', 'assets/css/admin/screen-dashboard.css', [ self::prefix_it( 'common' ), 'wp-components' ] ); |
| 64 | $this->register_style( 'screen-groups-listing', 'assets/css/admin/screen-groups-listing.css' ); |
| 65 | $this->register_style( 'screen-onboarding', 'assets/css/admin/screen-onboarding.css' ); |
| 66 | $this->register_style( 'screen-placements-listing', 'assets/css/admin/screen-placements-listing.css' ); |
| 67 | $this->register_style( 'screen-settings', 'assets/css/admin/screen-settings.css', [ self::prefix_it( 'common' ) ] ); |
| 68 | $this->register_style( 'screen-tools', 'assets/css/admin/screen-status.css', [ self::prefix_it( 'common' ) ] ); |
| 69 | $this->register_style( 'wp-dashboard', 'assets/css/admin/wp-dashboard.css', [ self::prefix_it( 'common' ) ] ); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Register scripts |
| 74 | * |
| 75 | * @return void |
| 76 | */ |
| 77 | public function register_scripts(): void { |
| 78 | $this->register_script( 'admin-global', 'admin/assets/js/admin-global.js', [ 'jquery' ], false, true ); |
| 79 | $this->register_script( 'find-adblocker', 'admin/assets/js/advertisement.js' ); |
| 80 | $this->register_script( 'ui', 'admin/assets/js/ui.js', [ 'jquery' ] ); |
| 81 | $this->register_script( 'conditions', 'admin/assets/js/conditions.js', [ 'jquery', self::prefix_it( 'ui' ) ] ); |
| 82 | $this->register_script( 'wizard', 'admin/assets/js/wizard.js', [ 'jquery' ] ); |
| 83 | $this->register_script( 'inline-edit-group-ads', 'admin/assets/js/inline-edit-group-ads.js', [ 'jquery' ], false, false ); |
| 84 | $this->register_script( 'ad-positioning', '/modules/ad-positioning/assets/js/ad-positioning.js', [], false, true ); |
| 85 | $this->register_script( 'admin', 'admin/assets/js/admin.min.js', [ 'jquery', self::prefix_it( 'ui' ), 'jquery-ui-autocomplete', 'wp-util' ], false, false ); |
| 86 | $this->register_script( 'groups', 'admin/assets/js/groups.js', [ 'jquery' ], false, true ); |
| 87 | $this->register_script( 'adblocker-image-data', 'admin/assets/js/adblocker-image-data.js', [ 'jquery' ] ); |
| 88 | |
| 89 | // New JS files. |
| 90 | $this->register_script( 'admin-common', 'assets/js/admin/admin-common.js', [ 'jquery' ], false, true ); |
| 91 | $this->register_script( 'screen-ads-listing', 'assets/js/admin/screen-ads-listing.js', [ 'jquery', 'inline-edit-post', 'wp-util', 'wp-api-fetch', self::prefix_it( 'admin-common' ) ], false, true ); |
| 92 | $this->register_script( 'screen-ads-editing', 'assets/js/admin/screen-ads-editing.js', [], false, true ); |
| 93 | $this->register_script( 'screen-dashboard', 'assets/js/admin/screen-dashboard.js', [ self::prefix_it( 'admin-common' ) ], false, true ); |
| 94 | $this->register_script( 'screen-groups-listing', 'assets/js/admin/screen-groups-listing.js', [ 'wp-api-fetch', self::prefix_it( 'admin-common' ) ], false, true ); |
| 95 | $this->register_script( 'screen-placements-listing', 'assets/js/admin/screen-placements-listing.js', [ 'wp-util', 'wp-api-fetch', self::prefix_it( 'admin-global' ), self::prefix_it( 'admin-common' ) ], false, true ); |
| 96 | $this->register_script( 'screen-settings', 'assets/js/admin/screen-settings.js', [], false, true ); |
| 97 | $this->register_script( 'screen-tools', 'assets/js/admin/screen-tools.js', [], false, true ); |
| 98 | $this->register_script( 'wp-dashboard', 'assets/js/admin/wp-dashboard.js', [ 'jquery' ], false, true ); |
| 99 | $this->register_script( 'notifications-center', 'assets/js/admin/notifications.js', [ 'jquery' ], false, true ); |
| 100 | $onboarding_deps = [ |
| 101 | 'jquery', |
| 102 | 'lodash', |
| 103 | 'moment', |
| 104 | 'wp-data', |
| 105 | 'wp-compose', |
| 106 | 'wp-components', |
| 107 | 'wp-api-fetch', |
| 108 | ]; |
| 109 | $this->register_script( 'screen-onboarding', 'assets/js/screen-onboarding.js', $onboarding_deps, false, true ); |
| 110 | $this->register_script( 'page-quick-edit', 'assets/js/admin/page-quick-edit.js', [ 'wp-api-fetch' ], false, true ); |
| 111 | |
| 112 | // OneClick. |
| 113 | $deps = [ |
| 114 | 'jquery', |
| 115 | 'wp-dom-ready', |
| 116 | 'wp-components', |
| 117 | 'wp-notices', |
| 118 | 'wp-element', |
| 119 | 'wp-html-entities', |
| 120 | ]; |
| 121 | $this->register_script( 'oneclick-onboarding', 'assets/js/admin/oneclick-onboarding.js', $deps, false, true ); |
| 122 | } |
| 123 | } |
| 124 |