Kirki_Output::__construct PHP Method

__construct() public method

The class constructor.
public __construct ( string $config_id, array $output, string | array $value )
$config_id string The config ID.
$output array The output argument.
$value string | array The value.
        public function __construct($config_id, $output, $value)
        {
            $this->config_id = $config_id;
            $this->value = $value;
            $this->output = $output;
            $this->parse_output();
        }