$98 GRAYBYTE WORDPRESS FILE MANAGER $74

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/

HOME
Current File : /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes//body-props-settings.php
<?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;
}


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
21 Feb 2026 2.55 AM
root / root
0755
abstracts
--
21 Feb 2026 2.55 AM
root / root
0755
admin
--
21 Feb 2026 2.55 AM
root / root
0755
cli
--
21 Feb 2026 2.55 AM
root / root
0755
customizer
--
21 Feb 2026 2.55 AM
root / root
0755
data-stores
--
21 Feb 2026 2.55 AM
root / root
0755
emails
--
21 Feb 2026 2.55 AM
root / root
0755
export
--
21 Feb 2026 2.55 AM
root / root
0755
gateways
--
21 Feb 2026 2.55 AM
root / root
0755
import
--
21 Feb 2026 2.55 AM
root / root
0755
integrations
--
21 Feb 2026 2.55 AM
root / root
0755
interfaces
--
21 Feb 2026 2.55 AM
root / root
0755
legacy
--
21 Feb 2026 2.55 AM
root / root
0755
libraries
--
21 Feb 2026 2.55 AM
root / root
0755
log-handlers
--
21 Feb 2026 2.55 AM
root / root
0755
payment-tokens
--
21 Feb 2026 2.55 AM
root / root
0755
queue
--
21 Feb 2026 2.55 AM
root / root
0755
rest-api
--
21 Feb 2026 2.55 AM
root / root
0755
shipping
--
21 Feb 2026 2.55 AM
root / root
0755
shortcodes
--
21 Feb 2026 2.55 AM
root / root
0755
theme-support
--
21 Feb 2026 2.55 AM
root / root
0755
tracks
--
21 Feb 2026 2.55 AM
root / root
0755
traits
--
21 Feb 2026 2.55 AM
root / root
0755
walkers
--
21 Feb 2026 2.55 AM
root / root
0755
wccom-site
--
21 Feb 2026 2.55 AM
root / root
0755
widgets
--
21 Feb 2026 2.55 AM
root / root
0755
body-props-settings.php
8.183 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-ajax.php
128.261 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-api.php
4.971 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-auth.php
11.659 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-autoloader.php
2.775 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-background-emailer.php
4.593 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-background-updater.php
3.496 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-breadcrumb.php
9.465 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-cache-helper.php
10.71 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-cart-fees.php
3.416 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-cart-session.php
14.459 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-cart-totals.php
27.723 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-cart.php
63.235 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-checkout.php
44.586 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-cli.php
1.019 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-comments.php
12.993 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-countries.php
42.209 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-coupon.php
32.568 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-customer-download-log.php
3.377 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-customer-download.php
10.357 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-customer.php
27.24 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-data-exception.php
1.275 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-data-store.php
5.881 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-datetime.php
2.198 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-deprecated-action-hooks.php
6.54 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-deprecated-filter-hooks.php
6.263 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-discounts.php
30.963 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-download-handler.php
23.369 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-emails.php
22.166 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-embed.php
4.184 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-form-handler.php
43.727 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-frontend-scripts.php
25.999 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-geo-ip.php
30.435 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-geolite-integration.php
1.994 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-geolocation.php
10.338 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-https.php
4.294 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-install.php
53.838 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-integrations.php
1.285 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-log-levels.php
2.536 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-logger.php
8.208 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-meta-data.php
2.179 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-factory.php
3.137 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-item-coupon.php
4.021 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-item-fee.php
8.7 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-item-meta.php
5.8 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-item-product.php
13.053 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-item-shipping.php
7.747 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-item-tax.php
6.438 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-item.php
10.69 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-query.php
2.518 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order-refund.php
4.892 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-order.php
61.028 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-payment-gateways.php
5.241 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-payment-tokens.php
5.905 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-post-data.php
17.814 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-post-types.php
26.492 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-privacy-background-process.php
1.693 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-privacy-erasers.php
13.284 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-privacy-exporters.php
14.119 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-privacy.php
14.855 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-attribute.php
6.887 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-download.php
6.015 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-external.php
4.774 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-factory.php
3.597 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-grouped.php
5.194 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-query.php
2.17 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-simple.php
1.854 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-variable.php
21.468 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-product-variation.php
17.197 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-query.php
30.399 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-rate-limiter.php
2.083 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-regenerate-images-request.php
8.169 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-regenerate-images.php
15.241 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-register-wp-admin-settings.php
4.873 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-rest-authentication.php
19.347 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-rest-exception.php
0.267 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-session-handler.php
10.567 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-shipping-rate.php
5.262 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-shipping-zone.php
13.09 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-shipping-zones.php
4.071 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-shipping.php
11.335 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-shortcodes.php
17.205 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-structured-data.php
17.201 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-tax.php
35.837 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-template-loader.php
18.436 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-tracker.php
22.509 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-validation.php
5.835 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart-webhook.php
29.851 KB
18 Feb 2026 11.32 PM
root / root
0644
class-kkart.php
31.278 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-account-functions.php
12.69 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-attribute-functions.php
20.589 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-cart-functions.php
17.269 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-conditional-functions.php
11.796 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-core-functions.php
82.039 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-coupon-functions.php
2.647 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-formatting-functions.php
41.608 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-notice-functions.php
7.444 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-order-functions.php
33.528 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-order-item-functions.php
5.056 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-page-functions.php
6.918 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-product-functions.php
47.298 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-rest-functions.php
10.621 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-stock-functions.php
12.454 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-template-functions.php
164.644 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-template-hooks.php
11.057 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-term-functions.php
19.451 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-update-functions.php
64.883 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-user-functions.php
26.584 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-webhook-functions.php
5.579 KB
18 Feb 2026 11.32 PM
root / root
0644
kkart-widget-functions.php
2.076 KB
18 Feb 2026 11.32 PM
root / root
0644
premium.php
0.921 KB
18 Feb 2026 11.32 PM
root / root
0644
premium_functions.php
0.935 KB
18 Feb 2026 11.32 PM
root / root
0644
shortcode_functions.php
71.114 KB
18 Feb 2026 11.32 PM
root / root
0644
shortcodes.php
265.735 KB
18 Feb 2026 11.32 PM
root / root
0644
template.php
2.853 KB
18 Feb 2026 11.32 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF