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-autoloader.php
214 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The class is responsible for locating and loading the autoloader file used in the plugin. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.47.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds; |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | |
| 14 | /** |
| 15 | * Autoloader. |
| 16 | */ |
| 17 | class Autoloader { |
| 18 | |
| 19 | /** |
| 20 | * Hold autoloader. |
| 21 | * |
| 22 | * @var mixed |
| 23 | */ |
| 24 | private $autoloader; |
| 25 | |
| 26 | /** |
| 27 | * Main instance |
| 28 | * |
| 29 | * Ensure only one instance is loaded or can be loaded. |
| 30 | * |
| 31 | * @return Autoloader |
| 32 | */ |
| 33 | public static function get(): Autoloader { |
| 34 | static $instance; |
| 35 | |
| 36 | if ( null === $instance ) { |
| 37 | $instance = new Autoloader(); |
| 38 | } |
| 39 | |
| 40 | return $instance; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Get hold autoloader. |
| 45 | * |
| 46 | * @return mixed |
| 47 | */ |
| 48 | public function get_autoloader() { |
| 49 | return $this->autoloader; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Get plugin directory. |
| 54 | * |
| 55 | * @return string |
| 56 | */ |
| 57 | public function get_directory(): string { |
| 58 | return dirname( ADVADS_FILE ); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Runs this initializer. |
| 63 | * |
| 64 | * @return void |
| 65 | */ |
| 66 | public function initialize(): void { |
| 67 | $locate = $this->locate(); |
| 68 | |
| 69 | if ( ! $locate ) { |
| 70 | add_action( 'admin_notices', [ $this, 'missing_autoloader' ] ); |
| 71 | return; |
| 72 | } |
| 73 | |
| 74 | $this->autoloader = require $locate; |
| 75 | $this->register_wordpress(); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Locate the autoload file |
| 80 | * |
| 81 | * This function searches for the autoload file in the packages directory and vendor directory. |
| 82 | * |
| 83 | * @return bool|string |
| 84 | */ |
| 85 | private function locate() { |
| 86 | $directory = $this->get_directory(); |
| 87 | $packages = $directory . '/packages/autoload.php'; |
| 88 | $vendors = $directory . '/vendor/autoload.php'; |
| 89 | $is_debug = $this->is_debug() || 'local' === $this->get_environment_type(); |
| 90 | |
| 91 | if ( is_readable( $packages ) && ( ! $is_debug || ! is_readable( $vendors ) ) ) { |
| 92 | return $packages; |
| 93 | } |
| 94 | |
| 95 | if ( is_readable( $vendors ) ) { |
| 96 | return $vendors; |
| 97 | } |
| 98 | |
| 99 | return false; |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Add WordPress classes to map |
| 104 | * |
| 105 | * @return void |
| 106 | */ |
| 107 | private function register_wordpress(): void { |
| 108 | $this->autoloader->addClassmap( |
| 109 | [ |
| 110 | 'WP_List_Table' => ABSPATH . 'wp-admin/includes/class-wp-list-table.php', |
| 111 | 'WP_Terms_List_Table' => ABSPATH . 'wp-admin/includes/class-wp-terms-list-table.php', |
| 112 | ] |
| 113 | ); |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * If the autoloader is missing, add an admin notice. |
| 118 | * |
| 119 | * @return void |
| 120 | */ |
| 121 | protected function missing_autoloader(): void { |
| 122 | ?> |
| 123 | <div class="notice notice-error"> |
| 124 | <p> |
| 125 | <?php |
| 126 | printf( |
| 127 | /* translators: 1: is a link to a support document. 2: closing link */ |
| 128 | esc_html__( 'Your installation of Advanced Ads is incomplete. If you installed Advanced Ads from GitHub, %1$s please refer to this document%2$s to set up your development environment.', 'advanced-ads' ), |
| 129 | '<a href="' . esc_url( 'https://github.com/advanced-ads/advanced-ads/wiki/How-to-set-up-development-environment' ) . '" target="_blank" rel="noopener noreferrer">', |
| 130 | '</a>' |
| 131 | ); |
| 132 | ?> |
| 133 | </p> |
| 134 | </div> |
| 135 | <?php |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Retrieves the current environment type. |
| 140 | * |
| 141 | * @return string |
| 142 | */ |
| 143 | public function get_environment_type(): string { |
| 144 | return function_exists( 'wp_get_environment_type' ) |
| 145 | ? wp_get_environment_type() |
| 146 | : $this->get_environment_type_fallback(); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Retrieves the current environment type. |
| 151 | * |
| 152 | * @return string |
| 153 | */ |
| 154 | private function get_environment_type_fallback(): string { |
| 155 | static $current_env = ''; |
| 156 | |
| 157 | if ( ! defined( 'WP_RUN_CORE_TESTS' ) && $current_env ) { |
| 158 | return $current_env; |
| 159 | } |
| 160 | |
| 161 | $wp_environments = [ |
| 162 | 'local', |
| 163 | 'development', |
| 164 | 'staging', |
| 165 | 'production', |
| 166 | ]; |
| 167 | |
| 168 | // Add a note about the deprecated WP_ENVIRONMENT_TYPES constant. |
| 169 | if ( defined( 'WP_ENVIRONMENT_TYPES' ) && function_exists( '_deprecated_argument' ) ) { |
| 170 | if ( function_exists( '__' ) ) { |
| 171 | /* translators: %s: WP_ENVIRONMENT_TYPES */ |
| 172 | $message = sprintf( __( 'The %s constant is no longer supported.', 'advanced-ads' ), 'WP_ENVIRONMENT_TYPES' ); |
| 173 | } else { |
| 174 | $message = sprintf( 'The %s constant is no longer supported.', 'WP_ENVIRONMENT_TYPES' ); |
| 175 | } |
| 176 | |
| 177 | _deprecated_argument( |
| 178 | 'define()', |
| 179 | '5.5.1', |
| 180 | $message // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 181 | ); |
| 182 | } |
| 183 | |
| 184 | // Check if the environment variable has been set, if `getenv` is available on the system. |
| 185 | if ( function_exists( 'getenv' ) ) { |
| 186 | $has_env = getenv( 'WP_ENVIRONMENT_TYPE' ); |
| 187 | if ( false !== $has_env ) { |
| 188 | $current_env = $has_env; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | // Fetch the environment from a constant, this overrides the global system variable. |
| 193 | if ( defined( 'WP_ENVIRONMENT_TYPE' ) && WP_ENVIRONMENT_TYPE ) { |
| 194 | $current_env = WP_ENVIRONMENT_TYPE; |
| 195 | } |
| 196 | |
| 197 | // Make sure the environment is an allowed one, and not accidentally set to an invalid value. |
| 198 | if ( ! in_array( $current_env, $wp_environments, true ) ) { |
| 199 | $current_env = 'production'; |
| 200 | } |
| 201 | |
| 202 | return $current_env; |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Is WordPress debug mode enabled |
| 207 | * |
| 208 | * @return bool |
| 209 | */ |
| 210 | private function is_debug(): bool { |
| 211 | return defined( 'WP_DEBUG' ) && WP_DEBUG; |
| 212 | } |
| 213 | } |
| 214 |