Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

plugin_decode_complex_configs()

Description

Decode complex plugin configuration (e.g mappings defined by users on plugins' setup page)

Parameters

ColumnTypeDefaultDescription
$b64sc string Configuration encoded prior with {@see plugin_encode_complex_configs()}

Return

mixed

Location

include/plugin_functions.php lines 1499 to 1502

Definition

 
function plugin_decode_complex_configs(string $b64sc)
    {
    return 
unserialize(base64_decode($b64sc));
    }

This article was last updated 19th April 2024 03:05 Europe/London time based on the source file dated 18th April 2024 17:15 Europe/London time.