$section =& new Config_Container('section', 'conf');
$directive =& new Config_Container('directive', 'user', 'mansion');
$section->addItem($directive);
$commentaire =& new Config_Container('comment', null, 'Ici je place mon nom');
$section->addItem($commentaire, 'before', $directive); |