You are here

config.inc in AWS SDK for PHP 7.4

Same filename and directory in other branches
  1. 7.3 config.inc

Provide AWSSDK config file that allows for Drupal variable overrides.

@author Jimmy Berry ("boombatower", http://drupal.org/user/214218)

File

config.inc
View source
<?php

/**
 * @file
 * Provide AWSSDK config file that allows for Drupal variable overrides.
 *
 * @author Jimmy Berry ("boombatower", http://drupal.org/user/214218)
 */

// Load the configuration and define all configuration constants.
foreach (awssdk_config_load() as $key => $value) {
  define(strtoupper($key), $value);
}