53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: audreymartel
|
|
* Date: 27/07/2018
|
|
* Time: 16:27
|
|
*/
|
|
|
|
namespace OrderCreation;
|
|
|
|
|
|
class OrderCreationConfiguration
|
|
{
|
|
const CONFIG_KEY_DELIVERY_MODULE_ID = 'order_creation_delivery_module_id';
|
|
const SOCOLISSIMO_MODE = 'order_creation_socolissimo_mode';
|
|
const LIST_PAYMENT_MODULE = 'order_creation_list_payment_module';
|
|
/**
|
|
* @param $moduleId integer | null
|
|
*/
|
|
public static function setDeliveryModuleId($moduleId)
|
|
{
|
|
OrderCreation::setConfigValue(self::CONFIG_KEY_DELIVERY_MODULE_ID, $moduleId);
|
|
}
|
|
|
|
public static function setSoColissimoMode($mode)
|
|
{
|
|
OrderCreation::setConfigValue(self::SOCOLISSIMO_MODE, $mode);
|
|
}
|
|
|
|
public static function setlistPaymentModule($list)
|
|
{
|
|
OrderCreation::setConfigValue(self::LIST_PAYMENT_MODULE, json_encode($list));
|
|
}
|
|
|
|
public static function getSoColissimoMode()
|
|
{
|
|
return OrderCreation::getConfigValue(self::SOCOLISSIMO_MODE, null);
|
|
}
|
|
|
|
public static function getlistPaymentModule()
|
|
{
|
|
return OrderCreation::getConfigValue(self::LIST_PAYMENT_MODULE, json_encode([]));
|
|
}
|
|
|
|
/**
|
|
* @return integer | null
|
|
*/
|
|
public static function getDeliveryModuleId()
|
|
{
|
|
return OrderCreation::getConfigValue(self::CONFIG_KEY_DELIVERY_MODULE_ID, null);
|
|
}
|
|
}
|