Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.
You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page
The Configuration storage of PrestaShop aims to address two needs.
First, there are multiple situations where a single value has to be stored and be available easily. It can be a boolean to control order mode, it can be a limit for timeout: a simple key => value(s) storage is needed to manage multiple settings in PrestaShop.
Secondly, modules might sometimes need a simple storage system, and they should not have to create a new SQL table for such a simple need.
To address these needs, the Configuration storage of PrestaShop uses a SQL table ps_configuration
and allows simple fetch, update and deletion of values in it.
Each value stored in the Configuration component can be controlled through a given key, is compatible with Multishop (as it can be overridden for a shop or a group of shops) and has timestamps.
The storage is managed by the Configuration
class.
We recommend using the prestashop.adapter.legacy.configuration
service to access configuration.
$configuration->set(string $key, mixed $value, ShopConstraint $shopConstraint = null): bool
This method returns true
if the operation is successful, false
otherwise.
$key
:
Identifier to your data to reuse later. You can use any valid string, but by convention, identifiers are usually in ALL_CAPS_WITH_UNDERSCORES
.
$value
:
Value to store. It can be any scalar type (int, float, string, bool).
Note: All values are stored as strings in database, so you might encounter type conversion issues if you save anything other than a string.
Use of arrays to store multi language values.
To store a value in multiple languages, You can provide an array indexed by language id:
[
123 => 'Value in some language',
456 => 'Value in some other language',
]
Note that this is the only supported use of arrays.
$shopConstraint
:
This optional parameter lets you specify the shop context for the operation (read the “Multistore” section below for more).
If not provided, the behavior will depend on the global shop context. To avoid unpredictable behavior in Multistore contexts, we recommend setting this parameter.
$configuration->has(string $key, ShopConstraint $shopConstraint = null): bool
This method returns true
if the data exists, false
otherwise.
$key
:
Identifier to check.
$shopConstraint
:
This optional parameter lets you specify the shop context for the operation (read the “Multistore” section below for more).
If not provided or set to “all shops”, this method to checks if the identifier exists for any shop.
$configuration->get(string $key, mixed $default = null): mixed
This method returns the data for $key
if it data exists, or NULL
otherwise.
If the data is stored as multi language, this will return an array of values indexed by language id.
Parameters:
$key
:
Identifier to retrieve.
$default
:
This optional parameter lets you define the value to return if the identifier is not found.
$configuration->remove(string $key): void
This method returns nothing, and throws an Exception on error.
Parameters:
$key
:
Identifier to delete. Note that this method deletes the value for all shops.
By default, and unless otherwise specified, the methods described above work within the confines of the current store context, whether PrestaShop is using the multistore feature or not.
However, it is possible to work outside of the current context and impact configurations for all shops, a shop group or a single, specific shop. This is done using the ShopConstraint
parameter:
ShopConstraint::shopId($shopId)
will impact only the specified shop id.ShopConstraint::shopGroup($shopGroupId)
will impact all shops within that shop group id.ShopConstraint::allShops()
will impact all shops.Example:
// set a value for shop 12 only
$configuration->set(
'SOME_SETTING',
'some value',
ShopConstraint::shopId(12)
);