I need to implement a registration-form for non-registrated users. The form should be similair to "Add User" in user_details.php. After registration the user has no (or lowest) privilleges and is unable to edit, delete or add new records to database. Hence, it is unnecessary to validate these users, though it should be possible to manage them with admin-permissions.
The reason for my need is, I developed a plugin for scientific authors to automate the approval process of my institution. The plugin has its own user area with different links. So the interface between refbase and plugin are common users.
Last edit: Niclas Esser 2017-11-20
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hey there,
I need to implement a registration-form for non-registrated users. The form should be similair to "Add User" in user_details.php. After registration the user has no (or lowest) privilleges and is unable to edit, delete or add new records to database. Hence, it is unnecessary to validate these users, though it should be possible to manage them with admin-permissions.
The reason for my need is, I developed a plugin for scientific authors to automate the approval process of my institution. The plugin has its own user area with different links. So the interface between refbase and plugin are common users.
Last edit: Niclas Esser 2017-11-20
This functionality exists already:
http://www.refbase.net/index.php/Configuring_refbase#How_can_I_setup_refbase_so_that_users_can_register_themselves.3F
Be sure to edit $defaultUserPermissions in inc/ini.inc.php to match your requirements.
Thank you Richard, this worked for me!