A moodle plugin containing Amazon's SDK for PHP.
There is a growing collection of various moodle plugins that require these AWS libraries in order to work. We don't want to have multiple copies of these libraries bundled into each plugin, firstly because they are quite large, but also because it can cause issues with library namespaces and php auto loading.
Plugins that depend on this library are:
https://github.com/catalyst/moodle-fileconverter_librelambda
https://github.com/catalyst/moodle-filter_smartmedia
https://github.com/catalyst/moodle-local_smartmedia
https://github.com/catalyst/moodle-logstore_standardqueued
https://github.com/catalyst/moodle-search_elastic
https://github.com/catalyst/moodle-tool_cloudmetrics
https://github.com/catalyst/moodle-tool_emailutils
https://github.com/catalyst/moodle-tool_mfa/tree/master/factor/sms
https://github.com/catalyst/moodle-tool_objectfs
https://github.com/catalyst/moodle-tool_s3logs
Moodle version | Branch |
---|---|
Moodle 3.3+ | master |
To use the SDK, simply include the autoloader contained within this plugin.
require_once($CFG->dirroot . '/local/aws/sdk/aws-autoloader.php');
If you are writing a plugin that will use this SDK, it is recommended that you add this to the plugin's version.php:
$plugin->dependencies = array(
'local_aws' => 2022011300
);
Also you can use AWS region admin setting in your plugin like:
use local_aws\admin_settings_aws_region;
...
$settings->add(new admin_settings_aws_region('my_plugin/s3_region',
new \lang_string('settings:aws:region', 'my_plugin'),
new \lang_string('settings:aws:region_help', 'my_plugin'), ''));
You can install this plugin from the plugin directory or get the latest version on GitHub.
git clone https://github.com/catalyst/moodle-local_aws local/aws
This plugin was developed by Catalyst IT Australia:
Issues, and pull requests using github are welcome and encouraged!
https://github.com/catalyst/moodle-local_aws/issues
If you would like commercial support or would like to sponsor additional improvements to this plugin please contact us: