选择语言 :

 Module_Storage_Driver_File::__construct

null Module_Storage_Driver_File::__construct( )
File: ./modules/storage/driver/file.class.php
public function __construct($config_name = null)
{
    if (is_array($config_name))
    {
        $config = $config_name;
    }
    else
    {
        $config = (array)Core::config('storage/file.'.$config_name);
    }

    if ($config['storage'])
    {
        $this->storage  = $config['storage'];
    }

    $this->dir = DIR_DATA . 'storage' . DS;
}