You are here

function awssdk_menu in AWS SDK for PHP 7.5

Same name and namespace in other branches
  1. 7.4 awssdk.module \awssdk_menu()

Implements hook_menu()

File

./awssdk.module, line 161
Provides primary Drupal hook implementations.

Code

function awssdk_menu() {
  $items['admin/reports/awssdk'] = array(
    'page callback' => 'awssdk_report',
    'page arguments' => array(
      libraries_get_path('awssdk') . '/_compatibility_test/sdk_compatibility_test.php',
    ),
    'access arguments' => array(
      'access site reports',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}