By jose reyero on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
7.x-1.x
Introduced in version:
7.x-1.2
Description:
Simplify variable_realm API
- variable_realm_switch() cannot be used anymore to add variables to realm. This needs to be done before with variable_realm_add()
- Introduced new API function variable_realm_values() which return the list of variables/values for a realm.
De-couple Variable Store from Variable Realm
- Variable Store module doesn't require Variable Realm anymore.
- Variable store API functions don't change the (runtime) realm anymore. This affects variable_store_set(), variable_store_del()
Two new functions for deleting or listing multiple variables from store:
- variable_store_delete_all()
- variable_store_list_all()
Impacts:
Module developers