public static function Bootstrap::variable_get in AmazonS3 7.2
Same name in this branch
- 7.2 tests/DrupalAdapter/Bootstrap.php \Drupal\amazons3Test\DrupalAdapter\Bootstrap::variable_get()
- 7.2 src/DrupalAdapter/Bootstrap.php \Drupal\amazons3\DrupalAdapter\Bootstrap::variable_get()
Parameters
$name:
null $default:
Return value
null
1 call to Bootstrap::variable_get()
- StreamWrapperConfiguration::fromDrupalVariables in src/
StreamWrapperConfiguration.php - Set the stream wrapper configuration using Drupal variables.
File
- src/
DrupalAdapter/ Bootstrap.php, line 19
Class
- Bootstrap
- Methods that map to includes/bootstrap.inc.
Namespace
Drupal\amazons3\DrupalAdapterCode
public static function variable_get($name, $default = NULL) {
return variable_get($name, $default);
}