Modules

Kohana_Config_Writer
extends Kohana_Config_Source

Implements: Kohana_Config_Source

This class is a transparent base class for Config_Writer and should not be accessed directly.

Interface for config writers

Specifies the methods that a config writer must implement

package
Kohana
author
Kohana Team
copyright
© 2008-2014 Kohana Team
license
http://kohanaframework.org/license

Class declared in SYSPATH/classes/Kohana/Config/Writer.php on line 13.

Constants

  • None

Properties

  • None

Methods

Methods

abstract public write( string $group , string $key , array $config ) (defined in Kohana_Config_Writer)

Writes the passed config for $group

Returns chainable instance on success or throws Kohana_Config_Exception on failure

Parameters

  • string $group required - The config group
  • string $key required - The config key to write to
  • array $config required - The configuration to write

Return Values

  • boolean

Source Code

public function write($group, $key, $config);