次の { } が何なのか気になります。{ } はここで何をしていますか? $this->{$key} = $value;
前もって感謝します。
1つのファイルで
$config['field']['calendar'] = array('type'=>'boolean');
$config['field']['category'] = array('type'=>'boolean');
$config['field']['customers'] = array('type'=>'boolean');
...
$this->preference_form->initalize($config);
そしてPreference_form.phpで
function initalize($config = array())
{
foreach($config as $key => $value)
{
$this->{$key} = $value;
}
}