Exemple #1
0
 /**
  * loads the configuration and sets it
  *
  * @return void
  * @author Craig Ulliott
  */
 public static function loadConfiguration()
 {
     // load AWS config file
     $config = getConfiguration('aws');
     // cache to this object
     self::$access_key = $config['access_key'];
     self::$secret_key = $config['secret_key'];
     self::$pem_certificate = $config['pem_certificate'];
     self::$pem_pk = $config['pem_pk'];
     return true;
 }