Piwik\Settings\Storage\Backend\Config::save PHP Метод

save() публичный Метод

Saves (persists) the current setting values in the database.
public save ( $values )
    public function save($values)
    {
        $section = $this->load();
        foreach ($values as $key => $value) {
            $section[$key] = $value;
        }
        $config = $this->getConfig();
        $config->{$this->section} = $section;
        $config->forceSave();
    }