'AWS SDK for PHPSettings', 'page callback' => 'drupal_get_form', 'page arguments' => array('creeper_admin_settings'), 'description' => t('Configure AWS SDK for PHP settings'), 'access arguments' => array('administer site configuration'), 'file' => 'creeper.admin.inc' ); return $items; } /** * Provide an error message if the cloudfusion library is not found. */ function _creeper_cloudfusion_not_found(){ global $cloudfusioncheckalready; if(!$cloudfusioncheckalready) { $cloudfusioncheckalready = TRUE; drupal_set_message(t('The AWS SDK PHP library was not found. Please install it into %creeperdir.', array('@url' => 'http://http://aws.amazon.com/sdkforphp/', '%creeperdir' => drupal_get_path('module', 'creeper') . '/sdk')), 'error'); } }