PATH:
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
includes
<?php /** * Order Factory * * The Kkart order factory creating the right order objects. * * @version 3.0.0 * @package Kkart\Classes */ defined( 'ABSPATH' ) || exit; /** * Order factory class */ class KKART_Order_Factory { /** * Get order. * * @param mixed $order_id (default: false) Order ID to get. * @return KKART_Order|bool */ public static function get_order( $order_id = false ) { $order_id = self::get_order_id( $order_id ); if ( ! $order_id ) { return false; } $order_type = KKART_Data_Store::load( 'order' )->get_order_type( $order_id ); $order_type_data = kkart_get_order_type( $order_type ); if ( $order_type_data ) { $classname = $order_type_data['class_name']; } else { $classname = false; } // Filter classname so that the class can be overridden if extended. $classname = apply_filters( 'kkart_order_class', $classname, $order_type, $order_id ); if ( ! class_exists( $classname ) ) { return false; } try { return new $classname( $order_id ); } catch ( Exception $e ) { kkart_caught_exception( $e, __FUNCTION__, array( $order_id ) ); return false; } } /** * Get order item. * * @param int $item_id Order item ID to get. * @return KKART_Order_Item|false if not found */ public static function get_order_item( $item_id = 0 ) { if ( is_numeric( $item_id ) ) { $item_type = KKART_Data_Store::load( 'order-item' )->get_order_item_type( $item_id ); $id = $item_id; } elseif ( $item_id instanceof KKART_Order_Item ) { $item_type = $item_id->get_type(); $id = $item_id->get_id(); } elseif ( is_object( $item_id ) && ! empty( $item_id->order_item_type ) ) { $id = $item_id->order_item_id; $item_type = $item_id->order_item_type; } else { $item_type = false; $id = false; } if ( $id && $item_type ) { $classname = false; switch ( $item_type ) { case 'line_item': case 'product': $classname = 'KKART_Order_Item_Product'; break; case 'coupon': $classname = 'KKART_Order_Item_Coupon'; break; case 'fee': $classname = 'KKART_Order_Item_Fee'; break; case 'shipping': $classname = 'KKART_Order_Item_Shipping'; break; case 'tax': $classname = 'KKART_Order_Item_Tax'; break; } $classname = apply_filters( 'kkart_get_order_item_classname', $classname, $item_type, $id ); if ( $classname && class_exists( $classname ) ) { try { return new $classname( $id ); } catch ( Exception $e ) { return false; } } } return false; } /** * Get the order ID depending on what was passed. * * @since 3.0.0 * @param mixed $order Order data to convert to an ID. * @return int|bool false on failure */ public static function get_order_id( $order ) { global $post; if ( false === $order && is_a( $post, 'WP_Post' ) && 'shop_order' === get_post_type( $post ) ) { return absint( $post->ID ); } elseif ( is_numeric( $order ) ) { return $order; } elseif ( $order instanceof KKART_Abstract_Order ) { return $order->get_id(); } elseif ( ! empty( $order->ID ) ) { return $order->ID; } else { return false; } } }
[+]
..
[+]
log-handlers
[-] class-kkart-regenerate-images.php
[edit]
[-] class-kkart-order-item-shipping.php
[edit]
[-] class-kkart-order-item-product.php
[edit]
[-] class-kkart-privacy-background-process.php
[edit]
[-] class-kkart-data-exception.php
[edit]
[+]
traits
[-] class-kkart-embed.php
[edit]
[-] class-kkart-data-store.php
[edit]
[-] kkart-coupon-functions.php
[edit]
[+]
wccom-site
[-] class-kkart-frontend-scripts.php
[edit]
[-] class-kkart-regenerate-images-request.php
[edit]
[+]
gateways
[-] class-kkart-autoloader.php
[edit]
[-] kkart-order-item-functions.php
[edit]
[-] class-kkart-webhook.php
[edit]
[-] kkart-term-functions.php
[edit]
[+]
shipping
[-] class-kkart-product-grouped.php
[edit]
[-] class-kkart-ajax.php
[edit]
[-] class-kkart-privacy-erasers.php
[edit]
[+]
admin
[-] class-kkart-tracker.php
[edit]
[-] class-kkart-order-item-fee.php
[edit]
[+]
customizer
[-] kkart-conditional-functions.php
[edit]
[-] class-kkart-tax.php
[edit]
[-] class-kkart-product-variable.php
[edit]
[+]
widgets
[-] kkart-webhook-functions.php
[edit]
[-] class-kkart-api.php
[edit]
[+]
payment-tokens
[-] premium_functions.php
[edit]
[-] class-kkart-order-refund.php
[edit]
[-] class-kkart-shipping-zone.php
[edit]
[+]
tracks
[-] class-kkart-structured-data.php
[edit]
[-] class-kkart-form-handler.php
[edit]
[-] class-kkart-emails.php
[edit]
[-] class-kkart-post-data.php
[edit]
[-] class-kkart-rest-authentication.php
[edit]
[-] class-kkart-geolite-integration.php
[edit]
[-] kkart-attribute-functions.php
[edit]
[-] class-kkart-background-emailer.php
[edit]
[-] class-kkart-shipping-zones.php
[edit]
[-] class-kkart-comments.php
[edit]
[+]
legacy
[-] class-kkart-product-variation.php
[edit]
[+]
theme-support
[+]
data-stores
[-] class-kkart-cart-session.php
[edit]
[+]
integrations
[-] class-kkart-session-handler.php
[edit]
[-] class-kkart.php
[edit]
[-] class-kkart-geolocation.php
[edit]
[-] class-kkart-discounts.php
[edit]
[-] class-kkart-payment-gateways.php
[edit]
[-] class-kkart-install.php
[edit]
[+]
abstracts
[-] class-kkart-privacy.php
[edit]
[-] kkart-page-functions.php
[edit]
[-] class-kkart-background-updater.php
[edit]
[-] class-kkart-customer-download.php
[edit]
[-] shortcodes.php
[edit]
[-] class-kkart-deprecated-action-hooks.php
[edit]
[-] kkart-order-functions.php
[edit]
[+]
walkers
[-] kkart-widget-functions.php
[edit]
[-] class-kkart-countries.php
[edit]
[-] class-kkart-payment-tokens.php
[edit]
[-] class-kkart-rate-limiter.php
[edit]
[-] class-kkart-coupon.php
[edit]
[-] body-props-settings.php
[edit]
[-] class-kkart-order-item-meta.php
[edit]
[-] class-kkart-shortcodes.php
[edit]
[-] class-kkart-auth.php
[edit]
[-] class-kkart-logger.php
[edit]
[-] class-kkart-product-simple.php
[edit]
[-] class-kkart-order-item.php
[edit]
[-] class-kkart-log-levels.php
[edit]
[-] kkart-stock-functions.php
[edit]
[-] class-kkart-checkout.php
[edit]
[+]
emails
[+]
interfaces
[-] class-kkart-customer.php
[edit]
[-] class-kkart-geo-ip.php
[edit]
[-] class-kkart-customer-download-log.php
[edit]
[+]
rest-api
[+]
cli
[-] class-kkart-integrations.php
[edit]
[-] shortcode_functions.php
[edit]
[-] kkart-template-hooks.php
[edit]
[-] class-kkart-datetime.php
[edit]
[-] class-kkart-deprecated-filter-hooks.php
[edit]
[-] class-kkart-breadcrumb.php
[edit]
[-] class-kkart-shipping-rate.php
[edit]
[-] class-kkart-order-query.php
[edit]
[+]
import
[-] kkart-rest-functions.php
[edit]
[-] kkart-notice-functions.php
[edit]
[-] class-kkart-product-query.php
[edit]
[-] class-kkart-register-wp-admin-settings.php
[edit]
[-] class-kkart-product-attribute.php
[edit]
[+]
shortcodes
[-] kkart-user-functions.php
[edit]
[-] kkart-template-functions.php
[edit]
[-] class-kkart-download-handler.php
[edit]
[-] class-kkart-validation.php
[edit]
[-] class-kkart-order-item-tax.php
[edit]
[-] class-kkart-product-external.php
[edit]
[-] kkart-formatting-functions.php
[edit]
[-] class-kkart-privacy-exporters.php
[edit]
[-] class-kkart-post-types.php
[edit]
[-] class-kkart-cli.php
[edit]
[-] class-kkart-query.php
[edit]
[-] premium.php
[edit]
[-] kkart-cart-functions.php
[edit]
[-] class-kkart-cache-helper.php
[edit]
[-] class-kkart-https.php
[edit]
[-] kkart-core-functions.php
[edit]
[-] template.php
[edit]
[-] class-kkart-order-factory.php
[edit]
[+]
libraries
[-] class-kkart-cart.php
[edit]
[-] class-kkart-meta-data.php
[edit]
[-] kkart-account-functions.php
[edit]
[-] class-kkart-order-item-coupon.php
[edit]
[-] class-kkart-cart-totals.php
[edit]
[-] class-kkart-template-loader.php
[edit]
[+]
queue
[-] class-kkart-cart-fees.php
[edit]
[-] class-kkart-shipping.php
[edit]
[-] class-kkart-product-factory.php
[edit]
[+]
export
[-] class-kkart-product-download.php
[edit]
[-] kkart-product-functions.php
[edit]
[-] class-kkart-order.php
[edit]
[-] kkart-update-functions.php
[edit]
[-] class-kkart-rest-exception.php
[edit]