20 lines
475 B
PHP
20 lines
475 B
PHP
<?php
|
|
/**
|
|
* File that define P24_Product_Keys class.
|
|
*
|
|
* @package Przelewy24
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Class with keys for overwritten producs.
|
|
*/
|
|
class P24_Product_Keys {
|
|
|
|
const KEY_CURRENCY = 'currency';
|
|
const KEY_DEFAULT_CURRENCY_PRICE = 'default_currency_price';
|
|
const KEY_DEFAULT_CURRENCY_REGULAR_PRICE = 'default_currency_regular_price';
|
|
const KEY_DEFAULT_CURRENCY_SALE_PRICE = 'default_currency_sale_price';
|
|
}
|