Welcome to Joomla forum!
In Joomla 5 you can probably create a new User Group with something like the code below:
In Joomla 5 you can probably create a new User Group with something like the code below:
Code:
use Joomla\CMS\Factory;use Joomla\Component\Users\Administrator\Model\GroupModel;$group = [ 'id' => 0, 'title' => 'Your new User Group Name', 'parent_id' => 1];Factory::getApplication()->bootComponent('com_users');$model = new GroupModel;if (!$model->save($group)) { Factory::getApplication()->enqueueMessage($model->getError(), 'error'); return false;}
Statistics: Posted by pe7er — Sun Mar 24, 2024 4:27 pm