abstracts
2 years ago
admin
1 year ago
database
2 years ago
groups
2 years ago
installation
1 year ago
interfaces
2 years ago
traits
2 years ago
utilities
2 years ago
array_ad_conditions.php
3 years ago
cap_map.php
3 years ago
class-assets-registry.php
1 year ago
class-autoloader.php
2 years ago
class-entities.php
2 years ago
class-plugin.php
1 year ago
functions.php
3 years 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\Interfaces\Integration_Interface; |
| 13 | |
| 14 | defined( 'ABSPATH' ) || exit; |
| 15 | |
| 16 | /** |
| 17 | * Assets Registry. |
| 18 | */ |
| 19 | class Assets_Registry implements Integration_Interface { |
| 20 | |
| 21 | /** |
| 22 | * Enqueue stylesheet |
| 23 | * |
| 24 | * @param string $handle Name of the stylesheet. |
| 25 | * |
| 26 | * @return void |
| 27 | */ |
| 28 | public static function enqueue_style( $handle ): void { |
| 29 | wp_enqueue_style( self::prefix_it( $handle ) ); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Enqueue script |
| 34 | * |
| 35 | * @param string $handle Name of the script. |
| 36 | * |
| 37 | * @return void |
| 38 | */ |
| 39 | public static function enqueue_script( $handle ): void { |
| 40 | wp_enqueue_script( self::prefix_it( $handle ) ); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Prefix the handle |
| 45 | * |
| 46 | * @param string $handle Name of the asset. |
| 47 | * |
| 48 | * @return string |
| 49 | */ |
| 50 | public static function prefix_it( $handle ): string { |
| 51 | return ADVADS_SLUG . '-' . $handle; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Determines whether a script has been added to the queue. |
| 56 | * |
| 57 | * @param string $handle Name of the script. |
| 58 | * @param string $status Optional. Status of the script to check. Default 'enqueued'. |
| 59 | * Accepts 'enqueued', 'registered', 'queue', 'to_do', and 'done'. |
| 60 | * |
| 61 | * @return bool |
| 62 | */ |
| 63 | public static function script_is( $handle, $status = 'enqueued' ): bool { |
| 64 | return wp_script_is( self::prefix_it( $handle ), $status ); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Hook into WordPress. |
| 69 | * |
| 70 | * @return void |
| 71 | */ |
| 72 | public function hooks(): void { |
| 73 | add_action( 'admin_enqueue_scripts', [ $this, 'register_assets' ], 0 ); |
| 74 | add_action( 'wp_enqueue_scripts', [ $this, 'register_assets' ], 0 ); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Register assets |
| 79 | * |
| 80 | * @return void |
| 81 | */ |
| 82 | public function register_assets(): void { |
| 83 | $this->register_styles(); |
| 84 | $this->register_scripts(); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Register styles |
| 89 | * |
| 90 | * @return void |
| 91 | */ |
| 92 | public function register_styles(): void { |
| 93 | if ( ! is_admin() ) { |
| 94 | return; |
| 95 | } |
| 96 | $this->register_style( 'ui', 'admin/assets/css/ui.css' ); |
| 97 | $this->register_style( 'admin', 'admin/assets/css/admin.css' ); |
| 98 | if ( 'toplevel_page_advanced-ads' === ( get_current_screen() )->id ) { |
| 99 | $this->register_style( 'app', 'assets/css/app.css' ); |
| 100 | } |
| 101 | $this->register_style( 'ad-positioning', 'modules/ad-positioning/assets/css/ad-positioning.css', [ self::prefix_it( 'admin' ) ] ); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Register scripts |
| 106 | * |
| 107 | * @return void |
| 108 | */ |
| 109 | public function register_scripts(): void { |
| 110 | $this->register_script( 'ad-positioning', '/modules/ad-positioning/assets/js/ad-positioning.js', [], false, true ); |
| 111 | $this->register_script( 'wp-widget-adsense', 'modules/gadsense/admin/assets/js/wp-widget.js', [ 'jquery' ], false, true ); |
| 112 | $this->register_script( 'app', 'assets/js/app.js', [ 'jquery' ], false, true ); |
| 113 | |
| 114 | if ( ! is_admin() ) { |
| 115 | return; |
| 116 | } |
| 117 | |
| 118 | // Backend JS files go here. |
| 119 | $this->register_script( 'find-adblocker', 'admin/assets/js/advertisement.js' ); |
| 120 | $this->register_script( 'conditions', 'admin/assets/js/conditions.js', [ 'jquery', self::prefix_it( 'ui' ) ] ); |
| 121 | $this->register_script( 'wizard', 'admin/assets/js/wizard.js', [ 'jquery' ] ); |
| 122 | $this->register_script( 'inline-edit-group-ads', 'admin/assets/js/inline-edit-group-ads.js', [ 'jquery' ] ); |
| 123 | $this->register_script( 'admin', 'admin/assets/js/admin.min.js', [ 'jquery', self::prefix_it( 'ui' ), 'jquery-ui-autocomplete', 'wp-util' ] ); |
| 124 | $this->register_script( 'ui', 'admin/assets/js/ui.js', [ 'jquery' ] ); |
| 125 | $this->register_script( 'admin-global', 'admin/assets/js/admin-global.js', [ 'jquery' ], false, true ); |
| 126 | $this->register_script( 'page-quick-edit', 'assets/js/admin/page-quick-edit.js', [], false, true ); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Register stylesheet |
| 131 | * |
| 132 | * @param string $handle Name of the stylesheet. Should be unique. |
| 133 | * @param string|bool $src URL of the stylesheet. |
| 134 | * @param string[] $deps Optional. An array of registered stylesheet handles this stylesheet depends on. |
| 135 | * @param string|bool|null $ver Optional. String specifying stylesheet version number. |
| 136 | * @param string $media Optional. The media for which this stylesheet has been defined. |
| 137 | * |
| 138 | * @return void |
| 139 | */ |
| 140 | private function register_style( $handle, $src, $deps = [], $ver = false, $media = 'all' ) { |
| 141 | if ( false === $ver ) { |
| 142 | $ver = ADVADS_VERSION; |
| 143 | } |
| 144 | |
| 145 | wp_register_style( self::prefix_it( $handle ), ADVADS_BASE_URL . $src, $deps, $ver, $media ); |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Register script |
| 150 | * |
| 151 | * @param string $handle Name of the stylesheet. Should be unique. |
| 152 | * @param string|bool $src URL of the stylesheet. |
| 153 | * @param string[] $deps Optional. An array of registered stylesheet handles this stylesheet depends on. |
| 154 | * @param string|bool|null $ver Optional. String specifying stylesheet version number. |
| 155 | * @param bool $in_footer Optional. The media for which this stylesheet has been defined. |
| 156 | * |
| 157 | * @return void |
| 158 | */ |
| 159 | private function register_script( $handle, $src, $deps = [], $ver = false, $in_footer = false ) { |
| 160 | if ( false === $ver ) { |
| 161 | $ver = ADVADS_VERSION; |
| 162 | } |
| 163 | |
| 164 | $new_src = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? $src : str_replace( '.js', '.min.js', $src ); |
| 165 | wp_register_script( self::prefix_it( $handle ), ADVADS_BASE_URL . $src, $deps, $ver, $in_footer ); |
| 166 | } |
| 167 | } |
| 168 |