@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | use EventEspresso\core\interfaces\ResettableInterface; |
| 3 | 3 | |
| 4 | 4 | if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
| 5 | - exit('No direct script access allowed'); |
|
| 5 | + exit('No direct script access allowed'); |
|
| 6 | 6 | } |
| 7 | 7 | do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
| 8 | 8 | |
@@ -23,421 +23,421 @@ discard block |
||
| 23 | 23 | class EE_Cart implements ResettableInterface |
| 24 | 24 | { |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * instance of the EE_Cart object |
|
| 28 | - * |
|
| 29 | - * @access private |
|
| 30 | - * @var EE_Cart $_instance |
|
| 31 | - */ |
|
| 32 | - private static $_instance; |
|
| 33 | - |
|
| 34 | - /** |
|
| 35 | - * instance of the EE_Session object |
|
| 36 | - * |
|
| 37 | - * @access protected |
|
| 38 | - * @var EE_Session $_session |
|
| 39 | - */ |
|
| 40 | - protected $_session; |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * The total Line item which comprises all the children line-item subtotals, |
|
| 44 | - * which in turn each have their line items. |
|
| 45 | - * Typically, the line item structure will look like: |
|
| 46 | - * grand total |
|
| 47 | - * -tickets-sub-total |
|
| 48 | - * --ticket1 |
|
| 49 | - * --ticket2 |
|
| 50 | - * --... |
|
| 51 | - * -taxes-sub-total |
|
| 52 | - * --tax1 |
|
| 53 | - * --tax2 |
|
| 54 | - * |
|
| 55 | - * @var EE_Line_Item |
|
| 56 | - */ |
|
| 57 | - private $_grand_total; |
|
| 58 | - |
|
| 59 | - |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * @singleton method used to instantiate class object |
|
| 63 | - * @access public |
|
| 64 | - * @param EE_Line_Item $grand_total |
|
| 65 | - * @param EE_Session $session |
|
| 66 | - * @return \EE_Cart |
|
| 67 | - * @throws \EE_Error |
|
| 68 | - */ |
|
| 69 | - public static function instance(EE_Line_Item $grand_total = null, EE_Session $session = null) |
|
| 70 | - { |
|
| 71 | - if ( ! empty($grand_total)) { |
|
| 72 | - self::$_instance = new self($grand_total, $session); |
|
| 73 | - } |
|
| 74 | - // or maybe retrieve an existing one ? |
|
| 75 | - if ( ! self::$_instance instanceof EE_Cart) { |
|
| 76 | - // try getting the cart out of the session |
|
| 77 | - $saved_cart = $session instanceof EE_Session ? $session->cart() : null; |
|
| 78 | - self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self($grand_total, $session); |
|
| 79 | - unset($saved_cart); |
|
| 80 | - } |
|
| 81 | - // verify that cart is ok and grand total line item exists |
|
| 82 | - if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item) { |
|
| 83 | - self::$_instance = new self($grand_total, $session); |
|
| 84 | - } |
|
| 85 | - self::$_instance->get_grand_total(); |
|
| 86 | - // once everything is all said and done, save the cart to the EE_Session |
|
| 87 | - add_action('shutdown', array(self::$_instance, 'save_cart'), 90); |
|
| 88 | - return self::$_instance; |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - |
|
| 92 | - |
|
| 93 | - /** |
|
| 94 | - * private constructor to prevent direct creation |
|
| 95 | - * |
|
| 96 | - * @Constructor |
|
| 97 | - * @access private |
|
| 98 | - * @param EE_Line_Item $grand_total |
|
| 99 | - * @param EE_Session $session |
|
| 100 | - */ |
|
| 101 | - private function __construct(EE_Line_Item $grand_total = null, EE_Session $session = null) |
|
| 102 | - { |
|
| 103 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 104 | - $this->set_session($session); |
|
| 105 | - if ($grand_total instanceof EE_Line_Item && $grand_total->is_total()) { |
|
| 106 | - $this->set_grand_total_line_item($grand_total); |
|
| 107 | - } |
|
| 108 | - } |
|
| 109 | - |
|
| 110 | - |
|
| 111 | - |
|
| 112 | - /** |
|
| 113 | - * Resets the cart completely (whereas empty_cart |
|
| 114 | - * |
|
| 115 | - * @param EE_Line_Item $grand_total |
|
| 116 | - * @param EE_Session $session |
|
| 117 | - * @return EE_Cart |
|
| 118 | - * @throws \EE_Error |
|
| 119 | - */ |
|
| 120 | - public static function reset(EE_Line_Item $grand_total = null, EE_Session $session = null) |
|
| 121 | - { |
|
| 122 | - remove_action('shutdown', array(self::$_instance, 'save_cart'), 90); |
|
| 123 | - if ($session instanceof EE_Session) { |
|
| 124 | - $session->reset_cart(); |
|
| 125 | - } |
|
| 126 | - self::$_instance = null; |
|
| 127 | - return self::instance($grand_total, $session); |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - |
|
| 131 | - |
|
| 132 | - /** |
|
| 133 | - * @return \EE_Session |
|
| 134 | - */ |
|
| 135 | - public function session() |
|
| 136 | - { |
|
| 137 | - if ( ! $this->_session instanceof EE_Session) { |
|
| 138 | - $this->set_session(); |
|
| 139 | - } |
|
| 140 | - return $this->_session; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - |
|
| 144 | - |
|
| 145 | - /** |
|
| 146 | - * @param EE_Session $session |
|
| 147 | - */ |
|
| 148 | - public function set_session(EE_Session $session = null) |
|
| 149 | - { |
|
| 150 | - $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core('Session'); |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - |
|
| 154 | - |
|
| 155 | - /** |
|
| 156 | - * Sets the cart to match the line item. Especially handy for loading an old cart where you |
|
| 157 | - * know the grand total line item on it |
|
| 158 | - * |
|
| 159 | - * @param EE_Line_Item $line_item |
|
| 160 | - */ |
|
| 161 | - public function set_grand_total_line_item(EE_Line_Item $line_item) |
|
| 162 | - { |
|
| 163 | - $this->_grand_total = $line_item; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - |
|
| 167 | - |
|
| 168 | - /** |
|
| 169 | - * get_cart_from_reg_url_link |
|
| 170 | - * |
|
| 171 | - * @access public |
|
| 172 | - * @param EE_Transaction $transaction |
|
| 173 | - * @param EE_Session $session |
|
| 174 | - * @return \EE_Cart |
|
| 175 | - * @throws \EE_Error |
|
| 176 | - */ |
|
| 177 | - public static function get_cart_from_txn(EE_Transaction $transaction, EE_Session $session = null) |
|
| 178 | - { |
|
| 179 | - $grand_total = $transaction->total_line_item(); |
|
| 180 | - $grand_total->get_items(); |
|
| 181 | - $grand_total->tax_descendants(); |
|
| 182 | - return EE_Cart::instance($grand_total, $session); |
|
| 183 | - } |
|
| 184 | - |
|
| 185 | - |
|
| 186 | - |
|
| 187 | - /** |
|
| 188 | - * Creates the total line item, and ensures it has its 'tickets' and 'taxes' sub-items |
|
| 189 | - * |
|
| 190 | - * @return EE_Line_Item |
|
| 191 | - * @throws \EE_Error |
|
| 192 | - */ |
|
| 193 | - private function _create_grand_total() |
|
| 194 | - { |
|
| 195 | - $this->_grand_total = EEH_Line_Item::create_total_line_item(); |
|
| 196 | - return $this->_grand_total; |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - |
|
| 200 | - |
|
| 201 | - /** |
|
| 202 | - * Gets all the line items of object type Ticket |
|
| 203 | - * |
|
| 204 | - * @access public |
|
| 205 | - * @return \EE_Line_Item[] |
|
| 206 | - */ |
|
| 207 | - public function get_tickets() |
|
| 208 | - { |
|
| 209 | - if ($this->_grand_total === null ) { |
|
| 210 | - return array(); |
|
| 211 | - } |
|
| 212 | - return EEH_Line_Item::get_ticket_line_items($this->_grand_total); |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - |
|
| 216 | - |
|
| 217 | - /** |
|
| 218 | - * returns the total quantity of tickets in the cart |
|
| 219 | - * |
|
| 220 | - * @access public |
|
| 221 | - * @return int |
|
| 222 | - * @throws \EE_Error |
|
| 223 | - */ |
|
| 224 | - public function all_ticket_quantity_count() |
|
| 225 | - { |
|
| 226 | - $tickets = $this->get_tickets(); |
|
| 227 | - if (empty($tickets)) { |
|
| 228 | - return 0; |
|
| 229 | - } |
|
| 230 | - $count = 0; |
|
| 231 | - foreach ($tickets as $ticket) { |
|
| 232 | - $count += $ticket->get('LIN_quantity'); |
|
| 233 | - } |
|
| 234 | - return $count; |
|
| 235 | - } |
|
| 236 | - |
|
| 237 | - |
|
| 238 | - |
|
| 239 | - /** |
|
| 240 | - * Gets all the tax line items |
|
| 241 | - * |
|
| 242 | - * @return \EE_Line_Item[] |
|
| 243 | - * @throws \EE_Error |
|
| 244 | - */ |
|
| 245 | - public function get_taxes() |
|
| 246 | - { |
|
| 247 | - return EEH_Line_Item::get_taxes_subtotal($this->_grand_total)->children(); |
|
| 248 | - } |
|
| 249 | - |
|
| 250 | - |
|
| 251 | - |
|
| 252 | - /** |
|
| 253 | - * Gets the total line item (which is a parent of all other line items) on this cart |
|
| 254 | - * |
|
| 255 | - * @return EE_Line_Item |
|
| 256 | - * @throws \EE_Error |
|
| 257 | - */ |
|
| 258 | - public function get_grand_total() |
|
| 259 | - { |
|
| 260 | - return $this->_grand_total instanceof EE_Line_Item ? $this->_grand_total : $this->_create_grand_total(); |
|
| 261 | - } |
|
| 262 | - |
|
| 263 | - |
|
| 264 | - |
|
| 265 | - /** |
|
| 266 | - * @process items for adding to cart |
|
| 267 | - * @access public |
|
| 268 | - * @param EE_Ticket $ticket |
|
| 269 | - * @param int $qty |
|
| 270 | - * @return TRUE on success, FALSE on fail |
|
| 271 | - * @throws \EE_Error |
|
| 272 | - */ |
|
| 273 | - public function add_ticket_to_cart(EE_Ticket $ticket, $qty = 1) |
|
| 274 | - { |
|
| 275 | - EEH_Line_Item::add_ticket_purchase($this->get_grand_total(), $ticket, $qty); |
|
| 276 | - return $this->save_cart() ? true : false; |
|
| 277 | - } |
|
| 278 | - |
|
| 279 | - |
|
| 280 | - |
|
| 281 | - /** |
|
| 282 | - * get_cart_total_before_tax |
|
| 283 | - * |
|
| 284 | - * @access public |
|
| 285 | - * @return float |
|
| 286 | - * @throws \EE_Error |
|
| 287 | - */ |
|
| 288 | - public function get_cart_total_before_tax() |
|
| 289 | - { |
|
| 290 | - return $this->get_grand_total()->recalculate_pre_tax_total(); |
|
| 291 | - } |
|
| 292 | - |
|
| 293 | - |
|
| 294 | - |
|
| 295 | - /** |
|
| 296 | - * gets the total amount of tax paid for items in this cart |
|
| 297 | - * |
|
| 298 | - * @access public |
|
| 299 | - * @return float |
|
| 300 | - * @throws \EE_Error |
|
| 301 | - */ |
|
| 302 | - public function get_applied_taxes() |
|
| 303 | - { |
|
| 304 | - return EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 305 | - } |
|
| 306 | - |
|
| 307 | - |
|
| 308 | - |
|
| 309 | - /** |
|
| 310 | - * Gets the total amount to be paid for the items in the cart, including taxes and other modifiers |
|
| 311 | - * |
|
| 312 | - * @access public |
|
| 313 | - * @return float |
|
| 314 | - * @throws \EE_Error |
|
| 315 | - */ |
|
| 316 | - public function get_cart_grand_total() |
|
| 317 | - { |
|
| 318 | - EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 319 | - return $this->get_grand_total()->total(); |
|
| 320 | - } |
|
| 321 | - |
|
| 322 | - |
|
| 323 | - |
|
| 324 | - /** |
|
| 325 | - * Gets the total amount to be paid for the items in the cart, including taxes and other modifiers |
|
| 326 | - * |
|
| 327 | - * @access public |
|
| 328 | - * @return float |
|
| 329 | - * @throws \EE_Error |
|
| 330 | - */ |
|
| 331 | - public function recalculate_all_cart_totals() |
|
| 332 | - { |
|
| 333 | - $pre_tax_total = $this->get_cart_total_before_tax(); |
|
| 334 | - $taxes_total = EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 335 | - $this->_grand_total->set_total($pre_tax_total + $taxes_total); |
|
| 336 | - $this->_grand_total->save_this_and_descendants_to_txn(); |
|
| 337 | - return $this->get_grand_total()->total(); |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - |
|
| 341 | - |
|
| 342 | - /** |
|
| 343 | - * deletes an item from the cart |
|
| 344 | - * |
|
| 345 | - * @access public |
|
| 346 | - * @param array|bool|string $line_item_codes |
|
| 347 | - * @return int on success, FALSE on fail |
|
| 348 | - * @throws \EE_Error |
|
| 349 | - */ |
|
| 350 | - public function delete_items($line_item_codes = false) |
|
| 351 | - { |
|
| 352 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 353 | - return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes); |
|
| 354 | - } |
|
| 355 | - |
|
| 356 | - |
|
| 357 | - |
|
| 358 | - /** |
|
| 359 | - * @remove ALL items from cart and zero ALL totals |
|
| 360 | - * @access public |
|
| 361 | - * @return bool |
|
| 362 | - * @throws \EE_Error |
|
| 363 | - */ |
|
| 364 | - public function empty_cart() |
|
| 365 | - { |
|
| 366 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 367 | - $this->_grand_total = $this->_create_grand_total(); |
|
| 368 | - return $this->save_cart(true); |
|
| 369 | - } |
|
| 370 | - |
|
| 371 | - |
|
| 372 | - |
|
| 373 | - /** |
|
| 374 | - * @remove ALL items from cart and delete total as well |
|
| 375 | - * @access public |
|
| 376 | - * @return bool |
|
| 377 | - * @throws \EE_Error |
|
| 378 | - */ |
|
| 379 | - public function delete_cart() |
|
| 380 | - { |
|
| 381 | - if ($this->_grand_total instanceof EE_Line_Item) { |
|
| 382 | - $deleted = EEH_Line_Item::delete_all_child_items($this->_grand_total); |
|
| 383 | - if ($deleted) { |
|
| 384 | - $deleted += $this->_grand_total->delete(); |
|
| 385 | - $this->_grand_total = null; |
|
| 386 | - return true; |
|
| 387 | - } |
|
| 388 | - } |
|
| 389 | - return false; |
|
| 390 | - } |
|
| 391 | - |
|
| 392 | - |
|
| 393 | - |
|
| 394 | - /** |
|
| 395 | - * @save cart to session |
|
| 396 | - * @access public |
|
| 397 | - * @param bool $apply_taxes |
|
| 398 | - * @return TRUE on success, FALSE on fail |
|
| 399 | - * @throws \EE_Error |
|
| 400 | - */ |
|
| 401 | - public function save_cart($apply_taxes = true) |
|
| 402 | - { |
|
| 403 | - if ($apply_taxes && $this->_grand_total instanceof EE_Line_Item) { |
|
| 404 | - EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 405 | - //make sure we don't cache the transaction because it can get stale |
|
| 406 | - if ($this->_grand_total->get_one_from_cache('Transaction') instanceof EE_Transaction |
|
| 407 | - && $this->_grand_total->get_one_from_cache('Transaction')->ID() |
|
| 408 | - ) { |
|
| 409 | - $this->_grand_total->clear_cache('Transaction', null, true); |
|
| 410 | - } |
|
| 411 | - } |
|
| 412 | - if ($this->session() instanceof EE_Session) { |
|
| 413 | - return $this->session()->set_cart($this); |
|
| 414 | - } else { |
|
| 415 | - return false; |
|
| 416 | - } |
|
| 417 | - } |
|
| 418 | - |
|
| 419 | - |
|
| 420 | - |
|
| 421 | - public function __wakeup() |
|
| 422 | - { |
|
| 423 | - if ( ! $this->_grand_total instanceof EE_Line_Item && absint($this->_grand_total) !== 0) { |
|
| 424 | - // $this->_grand_total is actually just an ID, so use it to get the object from the db |
|
| 425 | - $this->_grand_total = EEM_Line_Item::instance()->get_one_by_ID($this->_grand_total); |
|
| 426 | - } |
|
| 427 | - } |
|
| 428 | - |
|
| 429 | - |
|
| 430 | - |
|
| 431 | - /** |
|
| 432 | - * @return array |
|
| 433 | - */ |
|
| 434 | - public function __sleep() |
|
| 435 | - { |
|
| 436 | - if ($this->_grand_total instanceof EE_Line_Item && $this->_grand_total->ID()) { |
|
| 437 | - $this->_grand_total = $this->_grand_total->ID(); |
|
| 438 | - } |
|
| 439 | - return array('_grand_total'); |
|
| 440 | - } |
|
| 26 | + /** |
|
| 27 | + * instance of the EE_Cart object |
|
| 28 | + * |
|
| 29 | + * @access private |
|
| 30 | + * @var EE_Cart $_instance |
|
| 31 | + */ |
|
| 32 | + private static $_instance; |
|
| 33 | + |
|
| 34 | + /** |
|
| 35 | + * instance of the EE_Session object |
|
| 36 | + * |
|
| 37 | + * @access protected |
|
| 38 | + * @var EE_Session $_session |
|
| 39 | + */ |
|
| 40 | + protected $_session; |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * The total Line item which comprises all the children line-item subtotals, |
|
| 44 | + * which in turn each have their line items. |
|
| 45 | + * Typically, the line item structure will look like: |
|
| 46 | + * grand total |
|
| 47 | + * -tickets-sub-total |
|
| 48 | + * --ticket1 |
|
| 49 | + * --ticket2 |
|
| 50 | + * --... |
|
| 51 | + * -taxes-sub-total |
|
| 52 | + * --tax1 |
|
| 53 | + * --tax2 |
|
| 54 | + * |
|
| 55 | + * @var EE_Line_Item |
|
| 56 | + */ |
|
| 57 | + private $_grand_total; |
|
| 58 | + |
|
| 59 | + |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * @singleton method used to instantiate class object |
|
| 63 | + * @access public |
|
| 64 | + * @param EE_Line_Item $grand_total |
|
| 65 | + * @param EE_Session $session |
|
| 66 | + * @return \EE_Cart |
|
| 67 | + * @throws \EE_Error |
|
| 68 | + */ |
|
| 69 | + public static function instance(EE_Line_Item $grand_total = null, EE_Session $session = null) |
|
| 70 | + { |
|
| 71 | + if ( ! empty($grand_total)) { |
|
| 72 | + self::$_instance = new self($grand_total, $session); |
|
| 73 | + } |
|
| 74 | + // or maybe retrieve an existing one ? |
|
| 75 | + if ( ! self::$_instance instanceof EE_Cart) { |
|
| 76 | + // try getting the cart out of the session |
|
| 77 | + $saved_cart = $session instanceof EE_Session ? $session->cart() : null; |
|
| 78 | + self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self($grand_total, $session); |
|
| 79 | + unset($saved_cart); |
|
| 80 | + } |
|
| 81 | + // verify that cart is ok and grand total line item exists |
|
| 82 | + if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item) { |
|
| 83 | + self::$_instance = new self($grand_total, $session); |
|
| 84 | + } |
|
| 85 | + self::$_instance->get_grand_total(); |
|
| 86 | + // once everything is all said and done, save the cart to the EE_Session |
|
| 87 | + add_action('shutdown', array(self::$_instance, 'save_cart'), 90); |
|
| 88 | + return self::$_instance; |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + |
|
| 92 | + |
|
| 93 | + /** |
|
| 94 | + * private constructor to prevent direct creation |
|
| 95 | + * |
|
| 96 | + * @Constructor |
|
| 97 | + * @access private |
|
| 98 | + * @param EE_Line_Item $grand_total |
|
| 99 | + * @param EE_Session $session |
|
| 100 | + */ |
|
| 101 | + private function __construct(EE_Line_Item $grand_total = null, EE_Session $session = null) |
|
| 102 | + { |
|
| 103 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 104 | + $this->set_session($session); |
|
| 105 | + if ($grand_total instanceof EE_Line_Item && $grand_total->is_total()) { |
|
| 106 | + $this->set_grand_total_line_item($grand_total); |
|
| 107 | + } |
|
| 108 | + } |
|
| 109 | + |
|
| 110 | + |
|
| 111 | + |
|
| 112 | + /** |
|
| 113 | + * Resets the cart completely (whereas empty_cart |
|
| 114 | + * |
|
| 115 | + * @param EE_Line_Item $grand_total |
|
| 116 | + * @param EE_Session $session |
|
| 117 | + * @return EE_Cart |
|
| 118 | + * @throws \EE_Error |
|
| 119 | + */ |
|
| 120 | + public static function reset(EE_Line_Item $grand_total = null, EE_Session $session = null) |
|
| 121 | + { |
|
| 122 | + remove_action('shutdown', array(self::$_instance, 'save_cart'), 90); |
|
| 123 | + if ($session instanceof EE_Session) { |
|
| 124 | + $session->reset_cart(); |
|
| 125 | + } |
|
| 126 | + self::$_instance = null; |
|
| 127 | + return self::instance($grand_total, $session); |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + |
|
| 131 | + |
|
| 132 | + /** |
|
| 133 | + * @return \EE_Session |
|
| 134 | + */ |
|
| 135 | + public function session() |
|
| 136 | + { |
|
| 137 | + if ( ! $this->_session instanceof EE_Session) { |
|
| 138 | + $this->set_session(); |
|
| 139 | + } |
|
| 140 | + return $this->_session; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + |
|
| 144 | + |
|
| 145 | + /** |
|
| 146 | + * @param EE_Session $session |
|
| 147 | + */ |
|
| 148 | + public function set_session(EE_Session $session = null) |
|
| 149 | + { |
|
| 150 | + $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core('Session'); |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + |
|
| 154 | + |
|
| 155 | + /** |
|
| 156 | + * Sets the cart to match the line item. Especially handy for loading an old cart where you |
|
| 157 | + * know the grand total line item on it |
|
| 158 | + * |
|
| 159 | + * @param EE_Line_Item $line_item |
|
| 160 | + */ |
|
| 161 | + public function set_grand_total_line_item(EE_Line_Item $line_item) |
|
| 162 | + { |
|
| 163 | + $this->_grand_total = $line_item; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + |
|
| 167 | + |
|
| 168 | + /** |
|
| 169 | + * get_cart_from_reg_url_link |
|
| 170 | + * |
|
| 171 | + * @access public |
|
| 172 | + * @param EE_Transaction $transaction |
|
| 173 | + * @param EE_Session $session |
|
| 174 | + * @return \EE_Cart |
|
| 175 | + * @throws \EE_Error |
|
| 176 | + */ |
|
| 177 | + public static function get_cart_from_txn(EE_Transaction $transaction, EE_Session $session = null) |
|
| 178 | + { |
|
| 179 | + $grand_total = $transaction->total_line_item(); |
|
| 180 | + $grand_total->get_items(); |
|
| 181 | + $grand_total->tax_descendants(); |
|
| 182 | + return EE_Cart::instance($grand_total, $session); |
|
| 183 | + } |
|
| 184 | + |
|
| 185 | + |
|
| 186 | + |
|
| 187 | + /** |
|
| 188 | + * Creates the total line item, and ensures it has its 'tickets' and 'taxes' sub-items |
|
| 189 | + * |
|
| 190 | + * @return EE_Line_Item |
|
| 191 | + * @throws \EE_Error |
|
| 192 | + */ |
|
| 193 | + private function _create_grand_total() |
|
| 194 | + { |
|
| 195 | + $this->_grand_total = EEH_Line_Item::create_total_line_item(); |
|
| 196 | + return $this->_grand_total; |
|
| 197 | + } |
|
| 198 | + |
|
| 199 | + |
|
| 200 | + |
|
| 201 | + /** |
|
| 202 | + * Gets all the line items of object type Ticket |
|
| 203 | + * |
|
| 204 | + * @access public |
|
| 205 | + * @return \EE_Line_Item[] |
|
| 206 | + */ |
|
| 207 | + public function get_tickets() |
|
| 208 | + { |
|
| 209 | + if ($this->_grand_total === null ) { |
|
| 210 | + return array(); |
|
| 211 | + } |
|
| 212 | + return EEH_Line_Item::get_ticket_line_items($this->_grand_total); |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + |
|
| 216 | + |
|
| 217 | + /** |
|
| 218 | + * returns the total quantity of tickets in the cart |
|
| 219 | + * |
|
| 220 | + * @access public |
|
| 221 | + * @return int |
|
| 222 | + * @throws \EE_Error |
|
| 223 | + */ |
|
| 224 | + public function all_ticket_quantity_count() |
|
| 225 | + { |
|
| 226 | + $tickets = $this->get_tickets(); |
|
| 227 | + if (empty($tickets)) { |
|
| 228 | + return 0; |
|
| 229 | + } |
|
| 230 | + $count = 0; |
|
| 231 | + foreach ($tickets as $ticket) { |
|
| 232 | + $count += $ticket->get('LIN_quantity'); |
|
| 233 | + } |
|
| 234 | + return $count; |
|
| 235 | + } |
|
| 236 | + |
|
| 237 | + |
|
| 238 | + |
|
| 239 | + /** |
|
| 240 | + * Gets all the tax line items |
|
| 241 | + * |
|
| 242 | + * @return \EE_Line_Item[] |
|
| 243 | + * @throws \EE_Error |
|
| 244 | + */ |
|
| 245 | + public function get_taxes() |
|
| 246 | + { |
|
| 247 | + return EEH_Line_Item::get_taxes_subtotal($this->_grand_total)->children(); |
|
| 248 | + } |
|
| 249 | + |
|
| 250 | + |
|
| 251 | + |
|
| 252 | + /** |
|
| 253 | + * Gets the total line item (which is a parent of all other line items) on this cart |
|
| 254 | + * |
|
| 255 | + * @return EE_Line_Item |
|
| 256 | + * @throws \EE_Error |
|
| 257 | + */ |
|
| 258 | + public function get_grand_total() |
|
| 259 | + { |
|
| 260 | + return $this->_grand_total instanceof EE_Line_Item ? $this->_grand_total : $this->_create_grand_total(); |
|
| 261 | + } |
|
| 262 | + |
|
| 263 | + |
|
| 264 | + |
|
| 265 | + /** |
|
| 266 | + * @process items for adding to cart |
|
| 267 | + * @access public |
|
| 268 | + * @param EE_Ticket $ticket |
|
| 269 | + * @param int $qty |
|
| 270 | + * @return TRUE on success, FALSE on fail |
|
| 271 | + * @throws \EE_Error |
|
| 272 | + */ |
|
| 273 | + public function add_ticket_to_cart(EE_Ticket $ticket, $qty = 1) |
|
| 274 | + { |
|
| 275 | + EEH_Line_Item::add_ticket_purchase($this->get_grand_total(), $ticket, $qty); |
|
| 276 | + return $this->save_cart() ? true : false; |
|
| 277 | + } |
|
| 278 | + |
|
| 279 | + |
|
| 280 | + |
|
| 281 | + /** |
|
| 282 | + * get_cart_total_before_tax |
|
| 283 | + * |
|
| 284 | + * @access public |
|
| 285 | + * @return float |
|
| 286 | + * @throws \EE_Error |
|
| 287 | + */ |
|
| 288 | + public function get_cart_total_before_tax() |
|
| 289 | + { |
|
| 290 | + return $this->get_grand_total()->recalculate_pre_tax_total(); |
|
| 291 | + } |
|
| 292 | + |
|
| 293 | + |
|
| 294 | + |
|
| 295 | + /** |
|
| 296 | + * gets the total amount of tax paid for items in this cart |
|
| 297 | + * |
|
| 298 | + * @access public |
|
| 299 | + * @return float |
|
| 300 | + * @throws \EE_Error |
|
| 301 | + */ |
|
| 302 | + public function get_applied_taxes() |
|
| 303 | + { |
|
| 304 | + return EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 305 | + } |
|
| 306 | + |
|
| 307 | + |
|
| 308 | + |
|
| 309 | + /** |
|
| 310 | + * Gets the total amount to be paid for the items in the cart, including taxes and other modifiers |
|
| 311 | + * |
|
| 312 | + * @access public |
|
| 313 | + * @return float |
|
| 314 | + * @throws \EE_Error |
|
| 315 | + */ |
|
| 316 | + public function get_cart_grand_total() |
|
| 317 | + { |
|
| 318 | + EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 319 | + return $this->get_grand_total()->total(); |
|
| 320 | + } |
|
| 321 | + |
|
| 322 | + |
|
| 323 | + |
|
| 324 | + /** |
|
| 325 | + * Gets the total amount to be paid for the items in the cart, including taxes and other modifiers |
|
| 326 | + * |
|
| 327 | + * @access public |
|
| 328 | + * @return float |
|
| 329 | + * @throws \EE_Error |
|
| 330 | + */ |
|
| 331 | + public function recalculate_all_cart_totals() |
|
| 332 | + { |
|
| 333 | + $pre_tax_total = $this->get_cart_total_before_tax(); |
|
| 334 | + $taxes_total = EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 335 | + $this->_grand_total->set_total($pre_tax_total + $taxes_total); |
|
| 336 | + $this->_grand_total->save_this_and_descendants_to_txn(); |
|
| 337 | + return $this->get_grand_total()->total(); |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + |
|
| 341 | + |
|
| 342 | + /** |
|
| 343 | + * deletes an item from the cart |
|
| 344 | + * |
|
| 345 | + * @access public |
|
| 346 | + * @param array|bool|string $line_item_codes |
|
| 347 | + * @return int on success, FALSE on fail |
|
| 348 | + * @throws \EE_Error |
|
| 349 | + */ |
|
| 350 | + public function delete_items($line_item_codes = false) |
|
| 351 | + { |
|
| 352 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 353 | + return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes); |
|
| 354 | + } |
|
| 355 | + |
|
| 356 | + |
|
| 357 | + |
|
| 358 | + /** |
|
| 359 | + * @remove ALL items from cart and zero ALL totals |
|
| 360 | + * @access public |
|
| 361 | + * @return bool |
|
| 362 | + * @throws \EE_Error |
|
| 363 | + */ |
|
| 364 | + public function empty_cart() |
|
| 365 | + { |
|
| 366 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 367 | + $this->_grand_total = $this->_create_grand_total(); |
|
| 368 | + return $this->save_cart(true); |
|
| 369 | + } |
|
| 370 | + |
|
| 371 | + |
|
| 372 | + |
|
| 373 | + /** |
|
| 374 | + * @remove ALL items from cart and delete total as well |
|
| 375 | + * @access public |
|
| 376 | + * @return bool |
|
| 377 | + * @throws \EE_Error |
|
| 378 | + */ |
|
| 379 | + public function delete_cart() |
|
| 380 | + { |
|
| 381 | + if ($this->_grand_total instanceof EE_Line_Item) { |
|
| 382 | + $deleted = EEH_Line_Item::delete_all_child_items($this->_grand_total); |
|
| 383 | + if ($deleted) { |
|
| 384 | + $deleted += $this->_grand_total->delete(); |
|
| 385 | + $this->_grand_total = null; |
|
| 386 | + return true; |
|
| 387 | + } |
|
| 388 | + } |
|
| 389 | + return false; |
|
| 390 | + } |
|
| 391 | + |
|
| 392 | + |
|
| 393 | + |
|
| 394 | + /** |
|
| 395 | + * @save cart to session |
|
| 396 | + * @access public |
|
| 397 | + * @param bool $apply_taxes |
|
| 398 | + * @return TRUE on success, FALSE on fail |
|
| 399 | + * @throws \EE_Error |
|
| 400 | + */ |
|
| 401 | + public function save_cart($apply_taxes = true) |
|
| 402 | + { |
|
| 403 | + if ($apply_taxes && $this->_grand_total instanceof EE_Line_Item) { |
|
| 404 | + EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
| 405 | + //make sure we don't cache the transaction because it can get stale |
|
| 406 | + if ($this->_grand_total->get_one_from_cache('Transaction') instanceof EE_Transaction |
|
| 407 | + && $this->_grand_total->get_one_from_cache('Transaction')->ID() |
|
| 408 | + ) { |
|
| 409 | + $this->_grand_total->clear_cache('Transaction', null, true); |
|
| 410 | + } |
|
| 411 | + } |
|
| 412 | + if ($this->session() instanceof EE_Session) { |
|
| 413 | + return $this->session()->set_cart($this); |
|
| 414 | + } else { |
|
| 415 | + return false; |
|
| 416 | + } |
|
| 417 | + } |
|
| 418 | + |
|
| 419 | + |
|
| 420 | + |
|
| 421 | + public function __wakeup() |
|
| 422 | + { |
|
| 423 | + if ( ! $this->_grand_total instanceof EE_Line_Item && absint($this->_grand_total) !== 0) { |
|
| 424 | + // $this->_grand_total is actually just an ID, so use it to get the object from the db |
|
| 425 | + $this->_grand_total = EEM_Line_Item::instance()->get_one_by_ID($this->_grand_total); |
|
| 426 | + } |
|
| 427 | + } |
|
| 428 | + |
|
| 429 | + |
|
| 430 | + |
|
| 431 | + /** |
|
| 432 | + * @return array |
|
| 433 | + */ |
|
| 434 | + public function __sleep() |
|
| 435 | + { |
|
| 436 | + if ($this->_grand_total instanceof EE_Line_Item && $this->_grand_total->ID()) { |
|
| 437 | + $this->_grand_total = $this->_grand_total->ID(); |
|
| 438 | + } |
|
| 439 | + return array('_grand_total'); |
|
| 440 | + } |
|
| 441 | 441 | |
| 442 | 442 | |
| 443 | 443 | } |
@@ -121,7 +121,7 @@ |
||
| 121 | 121 | |
| 122 | 122 | |
| 123 | 123 | /** |
| 124 | - * @return Version |
|
| 124 | + * @return string |
|
| 125 | 125 | */ |
| 126 | 126 | public function versionValueObject() |
| 127 | 127 | { |
@@ -21,112 +21,112 @@ |
||
| 21 | 21 | abstract class DomainBase implements DomainInterface |
| 22 | 22 | { |
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * Equivalent to `__FILE__` for main plugin file. |
|
| 26 | - * |
|
| 27 | - * @var FilePath |
|
| 28 | - */ |
|
| 29 | - private $plugin_file; |
|
| 30 | - |
|
| 31 | - /** |
|
| 32 | - * String indicating version for plugin |
|
| 33 | - * |
|
| 34 | - * @var string |
|
| 35 | - */ |
|
| 36 | - private $version; |
|
| 37 | - |
|
| 38 | - /** |
|
| 39 | - * @var string $plugin_basename |
|
| 40 | - */ |
|
| 41 | - private $plugin_basename; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * @var string $plugin_path |
|
| 45 | - */ |
|
| 46 | - private $plugin_path; |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * @var string $plugin_url |
|
| 50 | - */ |
|
| 51 | - private $plugin_url; |
|
| 52 | - |
|
| 53 | - |
|
| 54 | - |
|
| 55 | - /** |
|
| 56 | - * Initializes internal properties. |
|
| 57 | - * |
|
| 58 | - * @param FilePath $plugin_file |
|
| 59 | - * @param Version $version |
|
| 60 | - * @throws InvalidArgumentException |
|
| 61 | - * @throws DomainException |
|
| 62 | - */ |
|
| 63 | - public function __construct(FilePath $plugin_file, Version $version) |
|
| 64 | - { |
|
| 65 | - $this->plugin_file = $plugin_file; |
|
| 66 | - $this->version = $version; |
|
| 67 | - $this->plugin_basename = plugin_basename($this->pluginFile()); |
|
| 68 | - $this->plugin_path = plugin_dir_path($this->pluginFile()); |
|
| 69 | - $this->plugin_url = plugin_dir_url($this->pluginFile()); |
|
| 70 | - } |
|
| 71 | - |
|
| 72 | - |
|
| 73 | - /** |
|
| 74 | - * @return string |
|
| 75 | - */ |
|
| 76 | - public function pluginFile() |
|
| 77 | - { |
|
| 78 | - return (string) $this->plugin_file; |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - |
|
| 82 | - |
|
| 83 | - /** |
|
| 84 | - * @return string |
|
| 85 | - */ |
|
| 86 | - public function pluginBasename() |
|
| 87 | - { |
|
| 88 | - return $this->plugin_basename; |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - |
|
| 92 | - |
|
| 93 | - /** |
|
| 94 | - * @return string |
|
| 95 | - */ |
|
| 96 | - public function pluginPath() |
|
| 97 | - { |
|
| 98 | - return $this->plugin_path; |
|
| 99 | - } |
|
| 100 | - |
|
| 101 | - |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * @return string |
|
| 105 | - */ |
|
| 106 | - public function pluginUrl() |
|
| 107 | - { |
|
| 108 | - return $this->plugin_url; |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - |
|
| 112 | - |
|
| 113 | - /** |
|
| 114 | - * @return string |
|
| 115 | - */ |
|
| 116 | - public function version() |
|
| 117 | - { |
|
| 118 | - return (string) $this->version; |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - |
|
| 122 | - |
|
| 123 | - /** |
|
| 124 | - * @return Version |
|
| 125 | - */ |
|
| 126 | - public function versionValueObject() |
|
| 127 | - { |
|
| 128 | - return $this->version; |
|
| 129 | - } |
|
| 24 | + /** |
|
| 25 | + * Equivalent to `__FILE__` for main plugin file. |
|
| 26 | + * |
|
| 27 | + * @var FilePath |
|
| 28 | + */ |
|
| 29 | + private $plugin_file; |
|
| 30 | + |
|
| 31 | + /** |
|
| 32 | + * String indicating version for plugin |
|
| 33 | + * |
|
| 34 | + * @var string |
|
| 35 | + */ |
|
| 36 | + private $version; |
|
| 37 | + |
|
| 38 | + /** |
|
| 39 | + * @var string $plugin_basename |
|
| 40 | + */ |
|
| 41 | + private $plugin_basename; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * @var string $plugin_path |
|
| 45 | + */ |
|
| 46 | + private $plugin_path; |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * @var string $plugin_url |
|
| 50 | + */ |
|
| 51 | + private $plugin_url; |
|
| 52 | + |
|
| 53 | + |
|
| 54 | + |
|
| 55 | + /** |
|
| 56 | + * Initializes internal properties. |
|
| 57 | + * |
|
| 58 | + * @param FilePath $plugin_file |
|
| 59 | + * @param Version $version |
|
| 60 | + * @throws InvalidArgumentException |
|
| 61 | + * @throws DomainException |
|
| 62 | + */ |
|
| 63 | + public function __construct(FilePath $plugin_file, Version $version) |
|
| 64 | + { |
|
| 65 | + $this->plugin_file = $plugin_file; |
|
| 66 | + $this->version = $version; |
|
| 67 | + $this->plugin_basename = plugin_basename($this->pluginFile()); |
|
| 68 | + $this->plugin_path = plugin_dir_path($this->pluginFile()); |
|
| 69 | + $this->plugin_url = plugin_dir_url($this->pluginFile()); |
|
| 70 | + } |
|
| 71 | + |
|
| 72 | + |
|
| 73 | + /** |
|
| 74 | + * @return string |
|
| 75 | + */ |
|
| 76 | + public function pluginFile() |
|
| 77 | + { |
|
| 78 | + return (string) $this->plugin_file; |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + |
|
| 82 | + |
|
| 83 | + /** |
|
| 84 | + * @return string |
|
| 85 | + */ |
|
| 86 | + public function pluginBasename() |
|
| 87 | + { |
|
| 88 | + return $this->plugin_basename; |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + |
|
| 92 | + |
|
| 93 | + /** |
|
| 94 | + * @return string |
|
| 95 | + */ |
|
| 96 | + public function pluginPath() |
|
| 97 | + { |
|
| 98 | + return $this->plugin_path; |
|
| 99 | + } |
|
| 100 | + |
|
| 101 | + |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * @return string |
|
| 105 | + */ |
|
| 106 | + public function pluginUrl() |
|
| 107 | + { |
|
| 108 | + return $this->plugin_url; |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + |
|
| 112 | + |
|
| 113 | + /** |
|
| 114 | + * @return string |
|
| 115 | + */ |
|
| 116 | + public function version() |
|
| 117 | + { |
|
| 118 | + return (string) $this->version; |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + |
|
| 122 | + |
|
| 123 | + /** |
|
| 124 | + * @return Version |
|
| 125 | + */ |
|
| 126 | + public function versionValueObject() |
|
| 127 | + { |
|
| 128 | + return $this->version; |
|
| 129 | + } |
|
| 130 | 130 | |
| 131 | 131 | |
| 132 | 132 | } |
@@ -24,44 +24,44 @@ |
||
| 24 | 24 | class DomainFactory |
| 25 | 25 | { |
| 26 | 26 | |
| 27 | - /** |
|
| 28 | - * @param FullyQualifiedName $domain_fqcn [required] Fully Qualified Class Name for the Domain class |
|
| 29 | - * @param array $arguments [required] array of arguments to be passed to the Domain class |
|
| 30 | - * constructor. Must at least include the following two value objects: |
|
| 31 | - * array( |
|
| 32 | - * EventEspresso\core\domain\values\FilePath $plugin_file |
|
| 33 | - * EventEspresso\core\domain\values\Version $version |
|
| 34 | - * ) |
|
| 35 | - * @return mixed |
|
| 36 | - * @throws DomainException |
|
| 37 | - * @throws InvalidArgumentException |
|
| 38 | - * @throws InvalidDataTypeException |
|
| 39 | - * @throws InvalidInterfaceException |
|
| 40 | - */ |
|
| 41 | - public static function getShared(FullyQualifiedName $domain_fqcn, array $arguments) |
|
| 42 | - { |
|
| 43 | - if (! isset($arguments[0], $arguments[1])) { |
|
| 44 | - throw new InvalidArgumentException( |
|
| 45 | - esc_html__( |
|
| 46 | - 'You need to pass at least two arguments, representing the addon plugin file and version, in order to generate a Domain class', |
|
| 47 | - 'event_espresso' |
|
| 48 | - ) |
|
| 49 | - ); |
|
| 50 | - } |
|
| 51 | - $domain = LoaderFactory::getLoader()->getShared($domain_fqcn, $arguments); |
|
| 52 | - if (! $domain instanceof $domain_fqcn && ! $domain instanceof DomainBase) { |
|
| 53 | - throw new DomainException( |
|
| 54 | - sprintf( |
|
| 55 | - esc_html__( |
|
| 56 | - 'The requested Domain class "%1$s" could not be loaded.', |
|
| 57 | - 'event_espresso' |
|
| 58 | - ), |
|
| 59 | - $domain_fqcn |
|
| 60 | - ) |
|
| 61 | - ); |
|
| 62 | - } |
|
| 63 | - return $domain; |
|
| 64 | - } |
|
| 27 | + /** |
|
| 28 | + * @param FullyQualifiedName $domain_fqcn [required] Fully Qualified Class Name for the Domain class |
|
| 29 | + * @param array $arguments [required] array of arguments to be passed to the Domain class |
|
| 30 | + * constructor. Must at least include the following two value objects: |
|
| 31 | + * array( |
|
| 32 | + * EventEspresso\core\domain\values\FilePath $plugin_file |
|
| 33 | + * EventEspresso\core\domain\values\Version $version |
|
| 34 | + * ) |
|
| 35 | + * @return mixed |
|
| 36 | + * @throws DomainException |
|
| 37 | + * @throws InvalidArgumentException |
|
| 38 | + * @throws InvalidDataTypeException |
|
| 39 | + * @throws InvalidInterfaceException |
|
| 40 | + */ |
|
| 41 | + public static function getShared(FullyQualifiedName $domain_fqcn, array $arguments) |
|
| 42 | + { |
|
| 43 | + if (! isset($arguments[0], $arguments[1])) { |
|
| 44 | + throw new InvalidArgumentException( |
|
| 45 | + esc_html__( |
|
| 46 | + 'You need to pass at least two arguments, representing the addon plugin file and version, in order to generate a Domain class', |
|
| 47 | + 'event_espresso' |
|
| 48 | + ) |
|
| 49 | + ); |
|
| 50 | + } |
|
| 51 | + $domain = LoaderFactory::getLoader()->getShared($domain_fqcn, $arguments); |
|
| 52 | + if (! $domain instanceof $domain_fqcn && ! $domain instanceof DomainBase) { |
|
| 53 | + throw new DomainException( |
|
| 54 | + sprintf( |
|
| 55 | + esc_html__( |
|
| 56 | + 'The requested Domain class "%1$s" could not be loaded.', |
|
| 57 | + 'event_espresso' |
|
| 58 | + ), |
|
| 59 | + $domain_fqcn |
|
| 60 | + ) |
|
| 61 | + ); |
|
| 62 | + } |
|
| 63 | + return $domain; |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | 66 | } |
| 67 | 67 | |
@@ -38,217 +38,217 @@ |
||
| 38 | 38 | * @since 4.0 |
| 39 | 39 | */ |
| 40 | 40 | if (function_exists('espresso_version')) { |
| 41 | - if (! function_exists('espresso_duplicate_plugin_error')) { |
|
| 42 | - /** |
|
| 43 | - * espresso_duplicate_plugin_error |
|
| 44 | - * displays if more than one version of EE is activated at the same time |
|
| 45 | - */ |
|
| 46 | - function espresso_duplicate_plugin_error() |
|
| 47 | - { |
|
| 48 | - ?> |
|
| 41 | + if (! function_exists('espresso_duplicate_plugin_error')) { |
|
| 42 | + /** |
|
| 43 | + * espresso_duplicate_plugin_error |
|
| 44 | + * displays if more than one version of EE is activated at the same time |
|
| 45 | + */ |
|
| 46 | + function espresso_duplicate_plugin_error() |
|
| 47 | + { |
|
| 48 | + ?> |
|
| 49 | 49 | <div class="error"> |
| 50 | 50 | <p> |
| 51 | 51 | <?php |
| 52 | - echo esc_html__( |
|
| 53 | - 'Can not run multiple versions of Event Espresso! One version has been automatically deactivated. Please verify that you have the correct version you want still active.', |
|
| 54 | - 'event_espresso' |
|
| 55 | - ); ?> |
|
| 52 | + echo esc_html__( |
|
| 53 | + 'Can not run multiple versions of Event Espresso! One version has been automatically deactivated. Please verify that you have the correct version you want still active.', |
|
| 54 | + 'event_espresso' |
|
| 55 | + ); ?> |
|
| 56 | 56 | </p> |
| 57 | 57 | </div> |
| 58 | 58 | <?php |
| 59 | - espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
| 60 | - } |
|
| 61 | - } |
|
| 62 | - add_action('admin_notices', 'espresso_duplicate_plugin_error', 1); |
|
| 59 | + espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
| 60 | + } |
|
| 61 | + } |
|
| 62 | + add_action('admin_notices', 'espresso_duplicate_plugin_error', 1); |
|
| 63 | 63 | |
| 64 | 64 | } else { |
| 65 | - define('EE_MIN_PHP_VER_REQUIRED', '5.3.9'); |
|
| 66 | - if (! version_compare(PHP_VERSION, EE_MIN_PHP_VER_REQUIRED, '>=')) { |
|
| 67 | - /** |
|
| 68 | - * espresso_minimum_php_version_error |
|
| 69 | - * |
|
| 70 | - * @return void |
|
| 71 | - */ |
|
| 72 | - function espresso_minimum_php_version_error() |
|
| 73 | - { |
|
| 74 | - ?> |
|
| 65 | + define('EE_MIN_PHP_VER_REQUIRED', '5.3.9'); |
|
| 66 | + if (! version_compare(PHP_VERSION, EE_MIN_PHP_VER_REQUIRED, '>=')) { |
|
| 67 | + /** |
|
| 68 | + * espresso_minimum_php_version_error |
|
| 69 | + * |
|
| 70 | + * @return void |
|
| 71 | + */ |
|
| 72 | + function espresso_minimum_php_version_error() |
|
| 73 | + { |
|
| 74 | + ?> |
|
| 75 | 75 | <div class="error"> |
| 76 | 76 | <p> |
| 77 | 77 | <?php |
| 78 | - printf( |
|
| 79 | - esc_html__( |
|
| 80 | - 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', |
|
| 81 | - 'event_espresso' |
|
| 82 | - ), |
|
| 83 | - EE_MIN_PHP_VER_REQUIRED, |
|
| 84 | - PHP_VERSION, |
|
| 85 | - '<br/>', |
|
| 86 | - '<a href="http://php.net/downloads.php">http://php.net/downloads.php</a>' |
|
| 87 | - ); |
|
| 88 | - ?> |
|
| 78 | + printf( |
|
| 79 | + esc_html__( |
|
| 80 | + 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', |
|
| 81 | + 'event_espresso' |
|
| 82 | + ), |
|
| 83 | + EE_MIN_PHP_VER_REQUIRED, |
|
| 84 | + PHP_VERSION, |
|
| 85 | + '<br/>', |
|
| 86 | + '<a href="http://php.net/downloads.php">http://php.net/downloads.php</a>' |
|
| 87 | + ); |
|
| 88 | + ?> |
|
| 89 | 89 | </p> |
| 90 | 90 | </div> |
| 91 | 91 | <?php |
| 92 | - espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
| 93 | - } |
|
| 92 | + espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - add_action('admin_notices', 'espresso_minimum_php_version_error', 1); |
|
| 96 | - } else { |
|
| 97 | - define('EVENT_ESPRESSO_MAIN_FILE', __FILE__); |
|
| 98 | - /** |
|
| 99 | - * espresso_version |
|
| 100 | - * Returns the plugin version |
|
| 101 | - * |
|
| 102 | - * @return string |
|
| 103 | - */ |
|
| 104 | - function espresso_version() |
|
| 105 | - { |
|
| 106 | - return apply_filters('FHEE__espresso__espresso_version', '4.9.51.rc.005'); |
|
| 107 | - } |
|
| 95 | + add_action('admin_notices', 'espresso_minimum_php_version_error', 1); |
|
| 96 | + } else { |
|
| 97 | + define('EVENT_ESPRESSO_MAIN_FILE', __FILE__); |
|
| 98 | + /** |
|
| 99 | + * espresso_version |
|
| 100 | + * Returns the plugin version |
|
| 101 | + * |
|
| 102 | + * @return string |
|
| 103 | + */ |
|
| 104 | + function espresso_version() |
|
| 105 | + { |
|
| 106 | + return apply_filters('FHEE__espresso__espresso_version', '4.9.51.rc.005'); |
|
| 107 | + } |
|
| 108 | 108 | |
| 109 | - /** |
|
| 110 | - * espresso_plugin_activation |
|
| 111 | - * adds a wp-option to indicate that EE has been activated via the WP admin plugins page |
|
| 112 | - */ |
|
| 113 | - function espresso_plugin_activation() |
|
| 114 | - { |
|
| 115 | - update_option('ee_espresso_activation', true); |
|
| 116 | - } |
|
| 109 | + /** |
|
| 110 | + * espresso_plugin_activation |
|
| 111 | + * adds a wp-option to indicate that EE has been activated via the WP admin plugins page |
|
| 112 | + */ |
|
| 113 | + function espresso_plugin_activation() |
|
| 114 | + { |
|
| 115 | + update_option('ee_espresso_activation', true); |
|
| 116 | + } |
|
| 117 | 117 | |
| 118 | - register_activation_hook(EVENT_ESPRESSO_MAIN_FILE, 'espresso_plugin_activation'); |
|
| 119 | - /** |
|
| 120 | - * espresso_load_error_handling |
|
| 121 | - * this function loads EE's class for handling exceptions and errors |
|
| 122 | - */ |
|
| 123 | - function espresso_load_error_handling() |
|
| 124 | - { |
|
| 125 | - static $error_handling_loaded = false; |
|
| 126 | - if ($error_handling_loaded) { |
|
| 127 | - return; |
|
| 128 | - } |
|
| 129 | - // load debugging tools |
|
| 130 | - if (WP_DEBUG === true && is_readable(EE_HELPERS . 'EEH_Debug_Tools.helper.php')) { |
|
| 131 | - require_once EE_HELPERS . 'EEH_Debug_Tools.helper.php'; |
|
| 132 | - \EEH_Debug_Tools::instance(); |
|
| 133 | - } |
|
| 134 | - // load error handling |
|
| 135 | - if (is_readable(EE_CORE . 'EE_Error.core.php')) { |
|
| 136 | - require_once EE_CORE . 'EE_Error.core.php'; |
|
| 137 | - } else { |
|
| 138 | - wp_die(esc_html__('The EE_Error core class could not be loaded.', 'event_espresso')); |
|
| 139 | - } |
|
| 140 | - $error_handling_loaded = true; |
|
| 141 | - } |
|
| 118 | + register_activation_hook(EVENT_ESPRESSO_MAIN_FILE, 'espresso_plugin_activation'); |
|
| 119 | + /** |
|
| 120 | + * espresso_load_error_handling |
|
| 121 | + * this function loads EE's class for handling exceptions and errors |
|
| 122 | + */ |
|
| 123 | + function espresso_load_error_handling() |
|
| 124 | + { |
|
| 125 | + static $error_handling_loaded = false; |
|
| 126 | + if ($error_handling_loaded) { |
|
| 127 | + return; |
|
| 128 | + } |
|
| 129 | + // load debugging tools |
|
| 130 | + if (WP_DEBUG === true && is_readable(EE_HELPERS . 'EEH_Debug_Tools.helper.php')) { |
|
| 131 | + require_once EE_HELPERS . 'EEH_Debug_Tools.helper.php'; |
|
| 132 | + \EEH_Debug_Tools::instance(); |
|
| 133 | + } |
|
| 134 | + // load error handling |
|
| 135 | + if (is_readable(EE_CORE . 'EE_Error.core.php')) { |
|
| 136 | + require_once EE_CORE . 'EE_Error.core.php'; |
|
| 137 | + } else { |
|
| 138 | + wp_die(esc_html__('The EE_Error core class could not be loaded.', 'event_espresso')); |
|
| 139 | + } |
|
| 140 | + $error_handling_loaded = true; |
|
| 141 | + } |
|
| 142 | 142 | |
| 143 | - /** |
|
| 144 | - * espresso_load_required |
|
| 145 | - * given a class name and path, this function will load that file or throw an exception |
|
| 146 | - * |
|
| 147 | - * @param string $classname |
|
| 148 | - * @param string $full_path_to_file |
|
| 149 | - * @throws EE_Error |
|
| 150 | - */ |
|
| 151 | - function espresso_load_required($classname, $full_path_to_file) |
|
| 152 | - { |
|
| 153 | - if (is_readable($full_path_to_file)) { |
|
| 154 | - require_once $full_path_to_file; |
|
| 155 | - } else { |
|
| 156 | - throw new \EE_Error ( |
|
| 157 | - sprintf( |
|
| 158 | - esc_html__( |
|
| 159 | - 'The %s class file could not be located or is not readable due to file permissions.', |
|
| 160 | - 'event_espresso' |
|
| 161 | - ), |
|
| 162 | - $classname |
|
| 163 | - ) |
|
| 164 | - ); |
|
| 165 | - } |
|
| 166 | - } |
|
| 143 | + /** |
|
| 144 | + * espresso_load_required |
|
| 145 | + * given a class name and path, this function will load that file or throw an exception |
|
| 146 | + * |
|
| 147 | + * @param string $classname |
|
| 148 | + * @param string $full_path_to_file |
|
| 149 | + * @throws EE_Error |
|
| 150 | + */ |
|
| 151 | + function espresso_load_required($classname, $full_path_to_file) |
|
| 152 | + { |
|
| 153 | + if (is_readable($full_path_to_file)) { |
|
| 154 | + require_once $full_path_to_file; |
|
| 155 | + } else { |
|
| 156 | + throw new \EE_Error ( |
|
| 157 | + sprintf( |
|
| 158 | + esc_html__( |
|
| 159 | + 'The %s class file could not be located or is not readable due to file permissions.', |
|
| 160 | + 'event_espresso' |
|
| 161 | + ), |
|
| 162 | + $classname |
|
| 163 | + ) |
|
| 164 | + ); |
|
| 165 | + } |
|
| 166 | + } |
|
| 167 | 167 | |
| 168 | - /** |
|
| 169 | - * @since 4.9.27 |
|
| 170 | - * @throws \EE_Error |
|
| 171 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 172 | - * @throws \EventEspresso\core\exceptions\InvalidEntityException |
|
| 173 | - * @throws \EventEspresso\core\exceptions\InvalidIdentifierException |
|
| 174 | - * @throws \EventEspresso\core\exceptions\InvalidClassException |
|
| 175 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 176 | - * @throws \EventEspresso\core\services\container\exceptions\ServiceExistsException |
|
| 177 | - * @throws \EventEspresso\core\services\container\exceptions\ServiceNotFoundException |
|
| 178 | - * @throws \OutOfBoundsException |
|
| 179 | - */ |
|
| 180 | - function bootstrap_espresso() |
|
| 181 | - { |
|
| 182 | - require_once __DIR__ . '/core/espresso_definitions.php'; |
|
| 183 | - try { |
|
| 184 | - espresso_load_error_handling(); |
|
| 185 | - espresso_load_required( |
|
| 186 | - 'EEH_Base', |
|
| 187 | - EE_CORE . 'helpers' . DS . 'EEH_Base.helper.php' |
|
| 188 | - ); |
|
| 189 | - espresso_load_required( |
|
| 190 | - 'EEH_File', |
|
| 191 | - EE_CORE . 'interfaces' . DS . 'EEHI_File.interface.php' |
|
| 192 | - ); |
|
| 193 | - espresso_load_required( |
|
| 194 | - 'EEH_File', |
|
| 195 | - EE_CORE . 'helpers' . DS . 'EEH_File.helper.php' |
|
| 196 | - ); |
|
| 197 | - espresso_load_required( |
|
| 198 | - 'EEH_Array', |
|
| 199 | - EE_CORE . 'helpers' . DS . 'EEH_Array.helper.php' |
|
| 200 | - ); |
|
| 201 | - // instantiate and configure PSR4 autoloader |
|
| 202 | - espresso_load_required( |
|
| 203 | - 'Psr4Autoloader', |
|
| 204 | - EE_CORE . 'Psr4Autoloader.php' |
|
| 205 | - ); |
|
| 206 | - espresso_load_required( |
|
| 207 | - 'EE_Psr4AutoloaderInit', |
|
| 208 | - EE_CORE . 'EE_Psr4AutoloaderInit.core.php' |
|
| 209 | - ); |
|
| 210 | - $AutoloaderInit = new EE_Psr4AutoloaderInit(); |
|
| 211 | - $AutoloaderInit->initializeAutoloader(); |
|
| 212 | - espresso_load_required( |
|
| 213 | - 'EE_Request', |
|
| 214 | - EE_CORE . 'request_stack' . DS . 'EE_Request.core.php' |
|
| 215 | - ); |
|
| 216 | - espresso_load_required( |
|
| 217 | - 'EE_Response', |
|
| 218 | - EE_CORE . 'request_stack' . DS . 'EE_Response.core.php' |
|
| 219 | - ); |
|
| 220 | - espresso_load_required( |
|
| 221 | - 'EE_Bootstrap', |
|
| 222 | - EE_CORE . 'EE_Bootstrap.core.php' |
|
| 223 | - ); |
|
| 224 | - // bootstrap EE and the request stack |
|
| 225 | - new EE_Bootstrap( |
|
| 226 | - new EE_Request($_GET, $_POST, $_COOKIE), |
|
| 227 | - new EE_Response() |
|
| 228 | - ); |
|
| 229 | - } catch (Exception $e) { |
|
| 230 | - require_once EE_CORE . 'exceptions' . DS . 'ExceptionStackTraceDisplay.php'; |
|
| 231 | - new EventEspresso\core\exceptions\ExceptionStackTraceDisplay($e); |
|
| 232 | - } |
|
| 233 | - } |
|
| 234 | - bootstrap_espresso(); |
|
| 235 | - } |
|
| 168 | + /** |
|
| 169 | + * @since 4.9.27 |
|
| 170 | + * @throws \EE_Error |
|
| 171 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 172 | + * @throws \EventEspresso\core\exceptions\InvalidEntityException |
|
| 173 | + * @throws \EventEspresso\core\exceptions\InvalidIdentifierException |
|
| 174 | + * @throws \EventEspresso\core\exceptions\InvalidClassException |
|
| 175 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 176 | + * @throws \EventEspresso\core\services\container\exceptions\ServiceExistsException |
|
| 177 | + * @throws \EventEspresso\core\services\container\exceptions\ServiceNotFoundException |
|
| 178 | + * @throws \OutOfBoundsException |
|
| 179 | + */ |
|
| 180 | + function bootstrap_espresso() |
|
| 181 | + { |
|
| 182 | + require_once __DIR__ . '/core/espresso_definitions.php'; |
|
| 183 | + try { |
|
| 184 | + espresso_load_error_handling(); |
|
| 185 | + espresso_load_required( |
|
| 186 | + 'EEH_Base', |
|
| 187 | + EE_CORE . 'helpers' . DS . 'EEH_Base.helper.php' |
|
| 188 | + ); |
|
| 189 | + espresso_load_required( |
|
| 190 | + 'EEH_File', |
|
| 191 | + EE_CORE . 'interfaces' . DS . 'EEHI_File.interface.php' |
|
| 192 | + ); |
|
| 193 | + espresso_load_required( |
|
| 194 | + 'EEH_File', |
|
| 195 | + EE_CORE . 'helpers' . DS . 'EEH_File.helper.php' |
|
| 196 | + ); |
|
| 197 | + espresso_load_required( |
|
| 198 | + 'EEH_Array', |
|
| 199 | + EE_CORE . 'helpers' . DS . 'EEH_Array.helper.php' |
|
| 200 | + ); |
|
| 201 | + // instantiate and configure PSR4 autoloader |
|
| 202 | + espresso_load_required( |
|
| 203 | + 'Psr4Autoloader', |
|
| 204 | + EE_CORE . 'Psr4Autoloader.php' |
|
| 205 | + ); |
|
| 206 | + espresso_load_required( |
|
| 207 | + 'EE_Psr4AutoloaderInit', |
|
| 208 | + EE_CORE . 'EE_Psr4AutoloaderInit.core.php' |
|
| 209 | + ); |
|
| 210 | + $AutoloaderInit = new EE_Psr4AutoloaderInit(); |
|
| 211 | + $AutoloaderInit->initializeAutoloader(); |
|
| 212 | + espresso_load_required( |
|
| 213 | + 'EE_Request', |
|
| 214 | + EE_CORE . 'request_stack' . DS . 'EE_Request.core.php' |
|
| 215 | + ); |
|
| 216 | + espresso_load_required( |
|
| 217 | + 'EE_Response', |
|
| 218 | + EE_CORE . 'request_stack' . DS . 'EE_Response.core.php' |
|
| 219 | + ); |
|
| 220 | + espresso_load_required( |
|
| 221 | + 'EE_Bootstrap', |
|
| 222 | + EE_CORE . 'EE_Bootstrap.core.php' |
|
| 223 | + ); |
|
| 224 | + // bootstrap EE and the request stack |
|
| 225 | + new EE_Bootstrap( |
|
| 226 | + new EE_Request($_GET, $_POST, $_COOKIE), |
|
| 227 | + new EE_Response() |
|
| 228 | + ); |
|
| 229 | + } catch (Exception $e) { |
|
| 230 | + require_once EE_CORE . 'exceptions' . DS . 'ExceptionStackTraceDisplay.php'; |
|
| 231 | + new EventEspresso\core\exceptions\ExceptionStackTraceDisplay($e); |
|
| 232 | + } |
|
| 233 | + } |
|
| 234 | + bootstrap_espresso(); |
|
| 235 | + } |
|
| 236 | 236 | } |
| 237 | 237 | if (! function_exists('espresso_deactivate_plugin')) { |
| 238 | - /** |
|
| 239 | - * deactivate_plugin |
|
| 240 | - * usage: espresso_deactivate_plugin( plugin_basename( __FILE__ )); |
|
| 241 | - * |
|
| 242 | - * @access public |
|
| 243 | - * @param string $plugin_basename - the results of plugin_basename( __FILE__ ) for the plugin's main file |
|
| 244 | - * @return void |
|
| 245 | - */ |
|
| 246 | - function espresso_deactivate_plugin($plugin_basename = '') |
|
| 247 | - { |
|
| 248 | - if (! function_exists('deactivate_plugins')) { |
|
| 249 | - require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 250 | - } |
|
| 251 | - unset($_GET['activate'], $_REQUEST['activate']); |
|
| 252 | - deactivate_plugins($plugin_basename); |
|
| 253 | - } |
|
| 238 | + /** |
|
| 239 | + * deactivate_plugin |
|
| 240 | + * usage: espresso_deactivate_plugin( plugin_basename( __FILE__ )); |
|
| 241 | + * |
|
| 242 | + * @access public |
|
| 243 | + * @param string $plugin_basename - the results of plugin_basename( __FILE__ ) for the plugin's main file |
|
| 244 | + * @return void |
|
| 245 | + */ |
|
| 246 | + function espresso_deactivate_plugin($plugin_basename = '') |
|
| 247 | + { |
|
| 248 | + if (! function_exists('deactivate_plugins')) { |
|
| 249 | + require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 250 | + } |
|
| 251 | + unset($_GET['activate'], $_REQUEST['activate']); |
|
| 252 | + deactivate_plugins($plugin_basename); |
|
| 253 | + } |
|
| 254 | 254 | } |