You are here

awssdk.module in AWS SDK for PHP 7.2

Same filename and directory in other branches
  1. 7.5 awssdk.module
  2. 7.3 awssdk.module
  3. 7.4 awssdk.module

Provides primary Drupal hook implementations.

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

File

awssdk.module
View source
<?php

/**
 * @file
 * Provides primary Drupal hook implementations.
 *
 * @author Jimmy Berry ("boombatower", http://drupal.org/user/214218)
 */

/**
 * Implements libraries_info()
 */
function awssdk_libraries_info() {
  $libraries['awssdk'] = array(
    'title' => 'AWS SDK for PHP',
    'vendor url' => 'http://aws.amazon.com/sdkforphp/',
    'download url' => 'http://aws.amazon.com/sdkforphp/',
    'version arguments' => array(
      'file' => '_docs/CHANGELOG.md',
      'pattern' => '/# Changelog: (\\d+\\.\\d+(\\.\\d+)?)/',
    ),
    'files' => array(
      'php' => array(
        'sdk.class.php',
      ),
    ),
  );
  return $libraries;
}

Functions

Namesort descending Description
awssdk_libraries_info Implements libraries_info()