Piwik\Settings\Storage\Backend\Config::load PHP Method

load() public method

public load ( )
    public function load()
    {
        $config = $this->getConfig();
        $section = $config->{$this->section};
        $values = array();
        // remove reference
        foreach ($section as $key => $value) {
            $values[$key] = $value;
        }
        return $values;
    }