Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/os2web/os2web_meetings
OS2Web Meetings import Drupal 8 module
https://github.com/os2web/os2web_meetings
Last synced: about 1 month ago
JSON representation
OS2Web Meetings import Drupal 8 module
- Host: GitHub
- URL: https://github.com/os2web/os2web_meetings
- Owner: OS2web
- Created: 2020-04-15T13:05:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-14T13:10:47.000Z (5 months ago)
- Last Synced: 2024-10-31T23:16:09.399Z (about 2 months ago)
- Language: PHP
- Size: 139 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OS2Web Meetings Drupal module [![Build Status](https://travis-ci.org/OS2web/os2web_meetings.svg?branch=master)](https://travis-ci.org/OS2web/os2web_meetings)
## Module purpose
The aim of this module is to import meetings from various ESDH providers and expose this content to be used in Drupal.
The module itself only provides the abstract implementation of the importer, the actual one need extend the abstract one and implement missing methods.
## How does it work
Meetings are being imported from so called agenda or manifest files, that are provided by specific ESDH provider.
There are multiple implementations of ESDH (Acadre, SBSYS, Edoc etc), each one has its structure and way of storing meeting information.
OS2Web Meetings module provides a canonical/single way of importing meetings, assuming that meetings are coming in an unified format.
Each meeting is then processed and eventually imported in the system.It is a responsibility of specific ESDH provider module to provide meeting in a canonical format.
Import is handled via Migrate API, which is part of the Drupal 8 core functionality.
## Additional settings
Settings are available under ```admin/config/content/os2web-meetings```
* **Import closed agenda** - If closed agenda will be imported, otherwise the closed content is skipped.
* **Whitelist of the committees** - If committee is not whitelisted, its meetings will be ignored.
* **Unpublish missing agendas** - If this plugin missing agendas will be unpublished. DO NOT use this setting if you are planning to import agendas in with max limit.
* **Clear HTML tags** - Comma-separated list of HTML tags, which style attribute shall be removed during import (it will remove only style HTML attribute of a given tag).## Install
Module is available to download via composer.
```
composer require os2web/os2web_meetings
drush en os2web_meetings
```## Import process
The import process is described for each of the ESDH provider meeting plugins individually.
## Update
Updating process for OS2Web Meetings module is similar to usual Drupal 8 module.
Use Composer's built-in command for listing packages that have updates available:```
composer outdated os2web/os2web_meetings
```## Automated testing and code quality
See [OS2Web testing and CI information](https://github.com/OS2Web/docs#testing-and-ci)## Contribution
Project is opened for new features and os course bugfixes.
If you have any suggestion or you found a bug in project, you are very welcome
to create an issue in github repository issue tracker.
For issue description there is expected that you will provide clear and
sufficient information about your feature request or bug report.### Code review policy
See [OS2Web code review policy](https://github.com/OS2Web/docs#code-review)### Git name convention
See [OS2Web git name convention](https://github.com/OS2Web/docs#git-guideline)