Tahnks Klas,
It worked
To create an article the code below is still valid?
//CREATE
$newStuff = new JCckContent(
array('joomla_article')
);
$addStuff = $newStuff->create(
'xxx',
array(
// Joomla table ie #__content
// 'title'=> $fields['user_name']->value . '-' . $config['pk'],
'created_by'=> $config['pk'],
'state'=> 1,
'catid'=> 15,
'access'=> 1,
'language'=> '*'
),
array(
// Seblod table ie #__cck_store_form_xxx
'est_nome'=>$fields['user_name']->value,
'est_usuario_id'=>$config['pk'],
'est_tipo'=>$fields['reg_profiletype']->value,
'est_origem_dados'=>'Usuário'
)
); //CREATE END