Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iqual-ch/all4schools_connector
https://github.com/iqual-ch/all4schools_connector
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/iqual-ch/all4schools_connector
- Owner: iqual-ch
- Created: 2022-08-22T09:48:42.000Z (over 2 years ago)
- Default Branch: 3.x
- Last Pushed: 2024-07-12T12:06:04.000Z (6 months ago)
- Last Synced: 2024-11-05T05:19:15.538Z (2 months ago)
- Language: PHP
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# all4schools_connector
This module deals with retrieving data, error management and support
for webform data submission to All4Schools.## About All4Schools
All4Schools is a course and students management software with an interface
to retrieve/send data about courses and participants.
The data is transmitted as JSON in both directions.## Module configuration
The module can be configured in drupal under the following path:
/admin/config/services/All4SchoolsThe following parameters are required:
1. Base url: the API endpoint for your project.
For some project an additional test endpoint can be available.
Use your local settings file to overwrite it.
2. Request id: A unique id pro client.
This should be communicated byt the client / owner of the API.
3. Additionnaly, some implementations might require
an AppUserId for POST requests.
This should be communicated byt the client / owner of the API.## Tests
There is no unit testing available for now.
If you want to quickly test the connector, you can create
a script.php file in a custom module and instantiate the example plugin:
```
createInstance('example_all4schools_connector');// Test any method.
$all_courses = $plugin_instance->getCourses();
```
Check in Lastpass for working API Endpoints / request_id