diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 21f312d..ede88d2 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -889,8 +889,8 @@ function variable_initialize($conf = array()) { * @return * The value of the variable. Unserialization is taken care of as necessary. * - * @see variable_del() - * @see variable_set() + * @deprecated as of Drupal 8.0. Instead use the configuration API. + * @see Config::get */ function variable_get($name, $default = NULL) { global $conf; @@ -911,8 +911,8 @@ function variable_get($name, $default = NULL) { * The value to set. This can be any PHP data type; these functions take care * of serialization as necessary. * - * @see variable_del() - * @see variable_get() + * @deprecated as of Drupal 8.0. Instead use the configuration API. + * @see Config::set */ function variable_set($name, $value) { global $conf; @@ -934,8 +934,8 @@ function variable_set($name, $value) { * @param $name * The name of the variable to undefine. * - * @see variable_get() - * @see variable_set() + * @deprecated as of Drupal 8.0. Instead use the configuration API. + * @see Config::delete */ function variable_del($name) { global $conf;