Thanks, I'm sure your answer is part of what I need.
$newUser = new \Joomla\CMS\User\User();
But I need to figure out how to structure the user object so it includes credentials. I've found this but don't know if it is the user object and if not, how to use it to create the object:
$data = array(
"name"=>$username,
"username"=>$username,
"password"=>$pass,
"password2"=>$pass,
"email"=>$email,
"block"=>0,
"groups"=>array("2","10")// user group
);
$newUser = new \Joomla\CMS\User\User();
But I need to figure out how to structure the user object so it includes credentials. I've found this but don't know if it is the user object and if not, how to use it to create the object:
$data = array(
"name"=>$username,
"username"=>$username,
"password"=>$pass,
"password2"=>$pass,
"email"=>$email,
"block"=>0,
"groups"=>array("2","10")// user group
);
Statistics: Posted by dave1webb — Wed Feb 07, 2024 3:10 am