Config::registerConfigType()
Parameter
- string $configType
The name of the configuration type.
- array $configInfo
An array defining the file containing the container's class definition and the class name. The format for this array is as follows:
$configInfo = array('path/to/Name.php', // The path to the source file for the class. 'Config_Container_Class_Name' // The name of the container class. );If omitted, the default values are:
$configInfo = array("Config/Container/$configType.php", "Config_Container_$configType" );
