This page is based on APPNET OS and uses cookies to personalize. APPNET OS gives users the ability to decide how to use cookies themselves. However, there are also cookies that are required for the operation of a website. By using this website you agree to the use of necessary cookies.
English

Edit extra data

APPNET OS Extra data logic allows apps to collect and process more users' data.
The so-called extra data is stored together with the user accounts in the database in JSON format.
Extra data can also be predefined in the config.inc.php file, already with values.
In user management, the extra data can be viewed and edited.
There are three different types for logic.

  • String (string)
  • Number (int)
  • Boolean value (bool)
The character chain and number definition is determined by the value and can change accordingly by entering it.
The Boolean value is output as a checkbox and can only be true or false.

Be careful when editing the extra data.
Apps that use extra data and have added an account to the user may no longer function properly.

  1. Activate the detail view by clicking on the Detail view button above or below the user list.


  2. Click on the Extra Data tab.
  3. An input form with the current extra data of the user account is displayed.
  4. Adjust the data accordingly.
  5. Click on the Save button to complete the process.


Developer Note

Extra data for users can be predefined in the config.inc.php file.
The keys of the extra data and the default value must be specified.
 
// Application users extra data -> Extra data that can be added to each user and managed through APPNET OS or user management.
// Set as array "'key' => default". Possible is string, int or bool.
$this->applicationUserData = [
 "Documentation-Test-String" => "STRING",
 "Documentation-Test-Int" => "1234567890",
 "Documentation-Bool" => true
];