You are here

README.txt in User variable 6

Same filename and directory in other branches
  1. 7 README.txt
Description
===========
Module for working with variables.
Analog built-in functions Drupal varible_set() / variable_get(), but with differences:
1. variables are stored in a separate table and are loaded only when necessary
   (which does not load the memory);
2. variables may belong to specific users;
3. variables may be dependent on the session;
4. variables can be temporary (delete by Cron);
5. variables can be global.


Requirements
============
Drupal 6.x


Installation
============
1. Copy the entire user_variable directory the Drupal sites/all/modules directory.
2. Login as an administrator. Enable the module in the "Administer" -> "Site
   Building" -> "Modules"
3. Use the module through the API functions.


API functions
=============
user_variable_set($name, $value, $common = FALSE, $uid = 0, $expired = 0, $session = FALSE)
Set a variable if it does not exist, then create.

    $name - Variable name.
    $value - Variable value.
    $common - If TRUE then the variable does not depend on user ID.
    $uid - User ID.
    $expired - The lifetime of a variable (in seconds) if equal 0 then the
        variable is not deleted automatically.
    $session - If TRUE then the variable is tied to the session when set,
        the variable is tied to the value (eg, session ID).


user_variable_get($name, $common = FALSE, $uid = 0, $session = '')
This function return variable value.

    $name - Variable name.
    $common - If TRUE then the variable does not depend on user ID.
    $uid - User ID.
    $session - Session ID.

File

README.txt
View source
  1. Description
  2. ===========
  3. Module for working with variables.
  4. Analog built-in functions Drupal varible_set() / variable_get(), but with differences:
  5. 1. variables are stored in a separate table and are loaded only when necessary
  6. (which does not load the memory);
  7. 2. variables may belong to specific users;
  8. 3. variables may be dependent on the session;
  9. 4. variables can be temporary (delete by Cron);
  10. 5. variables can be global.
  11. Requirements
  12. ============
  13. Drupal 6.x
  14. Installation
  15. ============
  16. 1. Copy the entire user_variable directory the Drupal sites/all/modules directory.
  17. 2. Login as an administrator. Enable the module in the "Administer" -> "Site
  18. Building" -> "Modules"
  19. 3. Use the module through the API functions.
  20. API functions
  21. =============
  22. user_variable_set($name, $value, $common = FALSE, $uid = 0, $expired = 0, $session = FALSE)
  23. Set a variable if it does not exist, then create.
  24. $name - Variable name.
  25. $value - Variable value.
  26. $common - If TRUE then the variable does not depend on user ID.
  27. $uid - User ID.
  28. $expired - The lifetime of a variable (in seconds) if equal 0 then the
  29. variable is not deleted automatically.
  30. $session - If TRUE then the variable is tied to the session when set,
  31. the variable is tied to the value (eg, session ID).
  32. user_variable_get($name, $common = FALSE, $uid = 0, $session = '')
  33. This function return variable value.
  34. $name - Variable name.
  35. $common - If TRUE then the variable does not depend on user ID.
  36. $uid - User ID.
  37. $session - Session ID.