| 1 |
<?php |
| 2 |
/** |
| 3 |
* Constants |
| 4 |
* |
| 5 |
* @package SeQura/WC |
| 6 |
* @subpackage SeQura/WC/Services |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace SeQura\WC\Services; |
| 10 |
|
| 11 |
/** |
| 12 |
* Provides methods access application Constants. |
| 13 |
*/ |
| 14 |
class Constants implements Interface_Constants { |
| 15 |
|
| 16 |
/** |
| 17 |
* Plugin directory path. |
| 18 |
* |
| 19 |
* @var string |
| 20 |
*/ |
| 21 |
private $plugin_dir_path; |
| 22 |
|
| 23 |
/** |
| 24 |
* Plugin file path. |
| 25 |
* |
| 26 |
* @var string |
| 27 |
*/ |
| 28 |
private $plugin_file_path; |
| 29 |
|
| 30 |
/** |
| 31 |
* Plugin log file path. |
| 32 |
* |
| 33 |
* @var string |
| 34 |
*/ |
| 35 |
private $plugin_log_file_path; |
| 36 |
|
| 37 |
/** |
| 38 |
* Plugin basename. |
| 39 |
* |
| 40 |
* @var string |
| 41 |
*/ |
| 42 |
private $plugin_basename; |
| 43 |
|
| 44 |
/** |
| 45 |
* Plugin directory URL. |
| 46 |
* |
| 47 |
* @var string |
| 48 |
*/ |
| 49 |
private $plugin_dir_url; |
| 50 |
|
| 51 |
/** |
| 52 |
* Plugin rest namespace. |
| 53 |
* |
| 54 |
* @var string |
| 55 |
*/ |
| 56 |
private $plugin_rest_namespace; |
| 57 |
|
| 58 |
/** |
| 59 |
* Plugin data. |
| 60 |
* |
| 61 |
* @var array |
| 62 |
*/ |
| 63 |
private $plugin_data; |
| 64 |
|
| 65 |
/** |
| 66 |
* WooCommerce data. |
| 67 |
* |
| 68 |
* @var array |
| 69 |
*/ |
| 70 |
private $woocommerce_data; |
| 71 |
|
| 72 |
/** |
| 73 |
* Environment data. |
| 74 |
* |
| 75 |
* @var array |
| 76 |
*/ |
| 77 |
private $environment_data; |
| 78 |
|
| 79 |
/** |
| 80 |
* Plugin templates path. |
| 81 |
* |
| 82 |
* @var string |
| 83 |
*/ |
| 84 |
private $plugin_templates_path; |
| 85 |
|
| 86 |
/** |
| 87 |
* Plugin assets path. |
| 88 |
* |
| 89 |
* @var string |
| 90 |
*/ |
| 91 |
private $plugin_assets_path; |
| 92 |
|
| 93 |
/** |
| 94 |
* Plugin assets URL. |
| 95 |
* |
| 96 |
* @var string |
| 97 |
*/ |
| 98 |
private $plugin_assets_url; |
| 99 |
|
| 100 |
/** |
| 101 |
* Constructor. |
| 102 |
* |
| 103 |
* @param string $plugin_dir_path The plugin directory path. |
| 104 |
* @param string $plugin_file_path The plugin file path. |
| 105 |
* @param string $plugin_log_file_path The plugin log file path. |
| 106 |
* @param string $plugin_basename The plugin basename. |
| 107 |
* @param string $plugin_dir_url The plugin directory URL. |
| 108 |
* @param string $plugin_rest_namespace The plugin rest namespace. |
| 109 |
* @param array $plugin_data The plugin data. |
| 110 |
* @param array $woocommerce_data The WooCommerce data. |
| 111 |
* @param array $environment_data The environment data. |
| 112 |
* @param string $plugin_templates_path The plugin templates path. |
| 113 |
* @param string $plugin_assets_path The plugin assets path. |
| 114 |
* @param string $plugin_assets_url The plugin assets URL. |
| 115 |
*/ |
| 116 |
public function __construct( |
| 117 |
$plugin_dir_path, |
| 118 |
$plugin_file_path, |
| 119 |
$plugin_log_file_path, |
| 120 |
$plugin_basename, |
| 121 |
$plugin_dir_url, |
| 122 |
$plugin_rest_namespace, |
| 123 |
$plugin_data, |
| 124 |
$woocommerce_data, |
| 125 |
$environment_data, |
| 126 |
$plugin_templates_path, |
| 127 |
$plugin_assets_path, |
| 128 |
$plugin_assets_url |
| 129 |
) { |
| 130 |
$this->plugin_dir_path = (string) $plugin_dir_path; |
| 131 |
$this->plugin_file_path = (string) $plugin_file_path; |
| 132 |
$this->plugin_log_file_path = (string) $plugin_log_file_path; |
| 133 |
$this->plugin_basename = (string) $plugin_basename; |
| 134 |
$this->plugin_dir_url = (string) $plugin_dir_url; |
| 135 |
$this->plugin_rest_namespace = (string) $plugin_rest_namespace; |
| 136 |
$this->plugin_data = (array) $plugin_data; |
| 137 |
$this->woocommerce_data = (array) $woocommerce_data; |
| 138 |
$this->environment_data = (array) $environment_data; |
| 139 |
$this->plugin_templates_path = (string) $plugin_templates_path; |
| 140 |
$this->plugin_assets_path = (string) $plugin_assets_path; |
| 141 |
$this->plugin_assets_url = (string) $plugin_assets_url; |
| 142 |
} |
| 143 |
|
| 144 |
/** |
| 145 |
* Get the plugin directory path. |
| 146 |
*/ |
| 147 |
public function get_plugin_dir_path(): string { |
| 148 |
return $this->plugin_dir_path; |
| 149 |
} |
| 150 |
/** |
| 151 |
* Get the plugin file path. |
| 152 |
*/ |
| 153 |
public function get_plugin_file_path(): string { |
| 154 |
return $this->plugin_file_path; |
| 155 |
} |
| 156 |
/** |
| 157 |
* Get the plugin log file path. |
| 158 |
*/ |
| 159 |
public function get_plugin_log_file_path(): string { |
| 160 |
return $this->plugin_log_file_path; |
| 161 |
} |
| 162 |
/** |
| 163 |
* Get the plugin basename. |
| 164 |
*/ |
| 165 |
public function get_plugin_basename(): string { |
| 166 |
return $this->plugin_basename; |
| 167 |
} |
| 168 |
/** |
| 169 |
* Get the plugin directory URL. |
| 170 |
*/ |
| 171 |
public function get_plugin_dir_url(): string { |
| 172 |
return $this->plugin_dir_url; |
| 173 |
} |
| 174 |
/** |
| 175 |
* Get the plugin rest namespace. |
| 176 |
*/ |
| 177 |
public function get_plugin_rest_namespace(): string { |
| 178 |
return $this->plugin_rest_namespace; |
| 179 |
} |
| 180 |
/** |
| 181 |
* Get the WooCommerce data. |
| 182 |
*/ |
| 183 |
public function get_woocommerce_data(): array { |
| 184 |
return $this->woocommerce_data; |
| 185 |
} |
| 186 |
|
| 187 |
/** |
| 188 |
* Get the plugin data. |
| 189 |
*/ |
| 190 |
public function get_plugin_data(): array { |
| 191 |
return $this->plugin_data; |
| 192 |
} |
| 193 |
/** |
| 194 |
* Get the plugin rest version. |
| 195 |
*/ |
| 196 |
public function get_environment_data(): array { |
| 197 |
return $this->environment_data; |
| 198 |
} |
| 199 |
/** |
| 200 |
* Get the plugin templates path. |
| 201 |
*/ |
| 202 |
public function get_plugin_templates_path(): string { |
| 203 |
return $this->plugin_templates_path; |
| 204 |
} |
| 205 |
/** |
| 206 |
* Get the plugin assets path. |
| 207 |
*/ |
| 208 |
public function get_plugin_assets_path(): string { |
| 209 |
return $this->plugin_assets_path; |
| 210 |
} |
| 211 |
/** |
| 212 |
* Get the plugin assets URL. |
| 213 |
*/ |
| 214 |
public function get_plugin_assets_url(): string { |
| 215 |
return $this->plugin_assets_url; |
| 216 |
} |
| 217 |
} |
| 218 |
|