summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-21 00:00:43 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-21 00:00:43 +0000
commitbf49ab721394036a9e3396236cab76ae6db0594f (patch)
treed6fcfba87fab56515c791d79d5ff0c0c91a7223a /includes
parentd281792b9a390d1cdc9dd86f8702af5e086b17ce (diff)
downloadbrdo-bf49ab721394036a9e3396236cab76ae6db0594f.tar.gz
brdo-bf49ab721394036a9e3396236cab76ae6db0594f.tar.bz2
#551574 by emmajane and jhodgdon: Added @see also links to variable_set(), variable_get() and variable_del() to link them together.
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc6
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 8a869eda1..8508b85a2 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -701,6 +701,8 @@ function variable_initialize($conf = array()) {
* The default value to use if this variable has never been set.
* @return
* The value of the variable.
+ *
+ * @see variable_del(), variable_set()
*/
function variable_get($name, $default = NULL) {
global $conf;
@@ -716,6 +718,8 @@ function variable_get($name, $default = NULL) {
* @param $value
* The value to set. This can be any PHP data type; these functions take care
* of serialization as necessary.
+ *
+ * @see variable_del(), variable_get()
*/
function variable_set($name, $value) {
global $conf;
@@ -732,6 +736,8 @@ function variable_set($name, $value) {
*
* @param $name
* The name of the variable to undefine.
+ *
+ * @see variable_get(), variable_set()
*/
function variable_del($name) {
global $conf;