!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/packages/kkart-admin/src/Features/   drwxr-xr-x
Free 293.01 GB of 429.69 GB (68.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ShippingLabelBannerDisplayRules.php (5.2 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Kkart Shipping Label Banner Display Rules.
 * NOTE: DO NOT edit this file in Kkart core, this is generated from kkart-admin.
 */

namespace Automattic\Kkart\Admin\Features;

/**
 * Determines whether or not the Shipping Label Banner should be displayed
 */
class ShippingLabelBannerDisplayRules {

    
/**
     * Holds the installed Jetpack version.
     *
     * @var string
     */
    
private $jetpack_version;


    
/**
     * Whether or not the installed Jetpack is connected.
     *
     * @var bool
     */
    
private $jetpack_connected;

    
/**
     * Holds the installed Kkart Shipping & Tax version.
     *
     * @var string
     */
    
private $wcs_version;

    
/**
     * Whether or not there're plugins installed incompatible with the banner.
     *
     * @var bool
     */
    
private $no_incompatible_plugins_installed;

    
/**
     * Whether or not the Kkart Shipping & Tax ToS has been accepted.
     *
     * @var bool
     */
    
private $wcs_tos_accepted;

    
/**
     * Minimum supported Jetpack version.
     *
     * @var string
     */
    
private $min_jetpack_version '4.4';

    
/**
     * Minimum supported Kkart Shipping & Tax version.
     *
     * @var string
     */
    
private $min_wcs_version '1.22.5';

    
/**
     * Supported countries by USPS, see: https://webpmt.usps.gov/pmt010.cfm
     *
     * @var array
     */
    
private $supported_countries = array( 'US''AS''PR''VI''GU''MP''UM''FM''MH' );

    
/**
     * Array of supported currency codes.
     *
     * @var array
     */
    
private $supported_currencies = array( 'USD' );


    
/**
     * Constructor.
     *
     * @param string $jetpack_version Installed Jetpack version to check.
     * @param bool   $jetpack_connected Is Jetpack connected?.
     * @param string $wcs_version Installed Kkart Shipping & Tax version to check.
     * @param bool   $wcs_tos_accepted Kkart Shipping & Tax Terms of Service accepted?.
     * @param bool   $incompatible_plugins_installed Are there any incompatible plugins installed?.
     */
    
public function __construct$jetpack_version$jetpack_connected$wcs_version$wcs_tos_accepted$incompatible_plugins_installed ) {
        
$this->jetpack_version                   $jetpack_version;
        
$this->jetpack_connected                 $jetpack_connected;
        
$this->wcs_version                       $wcs_version;
        
$this->wcs_tos_accepted                  $wcs_tos_accepted;
        
$this->no_incompatible_plugins_installed = ! $incompatible_plugins_installed;
    }

    
/**
     * Determines whether banner is eligible for display (does not include a/b logic).
     */
    
public function should_display_banner() {
        return 
$this->banner_not_dismissed() &&
            
$this->jetpack_installed_and_active() &&
            
$this->jetpack_up_to_date() &&
            
$this->jetpack_connected &&
            
$this->no_incompatible_plugins_installed &&
            
$this->order_has_shippable_products() &&
            
$this->store_in_us_and_usd() &&
            ( 
$this->wcs_not_installed() || (
                
$this->wcs_up_to_date() && ! $this->wcs_tos_accepted
            
) );
    }

    
/**
     * Checks if the banner was not dismissed by the user.
     *
     * @return bool
     */
    
private function banner_not_dismissed() {
        
$dismissed_timestamp_ms get_option'kkart_shipping_dismissed_timestamp' );

        if ( ! 
is_numeric$dismissed_timestamp_ms ) ) {
            return 
true;
        }
        
$dismissed_timestamp_ms intval$dismissed_timestamp_ms );
        
$dismissed_timestamp    intvalround$dismissed_timestamp_ms 1000 ) );
        
$expired_timestamp      $dismissed_timestamp 24 60 60// 24 hours from click time

        
$dismissed_for_good = -=== $dismissed_timestamp_ms;
        
$dismissed_24h      time() < $expired_timestamp;

        return ! 
$dismissed_for_good && ! $dismissed_24h;
    }

    
/**
     * Checks if jetpack is installed and active.
     *
     * @return bool
     */
    
private function jetpack_installed_and_active() {
        return ! ! 
$this->jetpack_version;
    }

    
/**
     * Checks if Jetpack version is supported.
     *
     * @return bool
     */
    
private function jetpack_up_to_date() {
        return 
version_compare$this->jetpack_version$this->min_jetpack_version'>=' );
    }

    
/**
     * Checks if there's a shippable product in the current order.
     *
     * @return bool
     */
    
private function order_has_shippable_products() {
        
$post get_post();
        if ( ! 
$post ) {
            return 
false;
        }

        
$order kkart_get_orderget_post()->ID );

        if ( ! 
$order ) {
            return 
false;
        }
        
// At this point (no packaging data), only show if there's at least one existing and shippable product.
        
foreach ( $order->get_items() as $item ) {
            if ( 
$item instanceof \KKART_Order_Item_Product ) {
                
$product $item->get_product();

                if ( 
$product && $product->needs_shipping() ) {
                    return 
true;
                }
            }
        }

        return 
false;
    }

    
/**
     * Checks if the store is in the US and has its default currency set to USD.
     *
     * @return bool
     */
    
private function store_in_us_and_usd() {
        
$base_currency get_kkart_currency();
        
$base_location kkart_get_base_location();

        return 
in_array$base_currency$this->supported_currenciestrue ) && in_array$base_location['country'], $this->supported_countriestrue );
    }

    
/**
     * Checks if Kkart Shipping & Tax is not installed.
     *
     * @return bool
     */
    
private function wcs_not_installed() {
        return ! 
$this->wcs_version;
    }

    
/**
     * Checks if Kkart Shipping & Tax is up to date.
     */
    
private function wcs_up_to_date() {
        return 
$this->wcs_version && version_compare$this->wcs_version$this->min_wcs_version'>=' );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.004 ]--