1 |
efrain |
1 |
# H5P Moodle Plugin
|
|
|
2 |
|
|
|
3 |
Create and add rich content inside your LMS for free. Some examples of what you
|
|
|
4 |
get with H5P are Interactive Video, Quizzes, Collage and Timeline.
|
|
|
5 |
|
|
|
6 |
## Usage
|
|
|
7 |
|
|
|
8 |
If you intend to use the repository directly in production, make sure that you're using the "Stable" branch, as this is the production branch.
|
|
|
9 |
There are no guarantees for the state of the other branches at any given time.
|
|
|
10 |
Also make sure that all submodules are pulled as well using:
|
|
|
11 |
|
|
|
12 |
```
|
|
|
13 |
git submodule update --init
|
|
|
14 |
```
|
|
|
15 |
|
|
|
16 |
## Description
|
|
|
17 |
|
|
|
18 |
One of the great benefits with using H5P is that it gives you access to lots of
|
|
|
19 |
different [interactive content types](https://h5p.org/content-types-and-applications).
|
|
|
20 |
|
|
|
21 |
Another great benefit with H5P is that it allows you to easily share and reuse
|
|
|
22 |
content. To reuse content, you just download the H5P you would like to edit and
|
|
|
23 |
make your changes – e.g. translate to a new language or adjust it to a new
|
|
|
24 |
situation.
|
|
|
25 |
|
|
|
26 |
H5P is:
|
|
|
27 |
|
|
|
28 |
* Open Source
|
|
|
29 |
* Free to Use
|
|
|
30 |
* HTML5
|
|
|
31 |
* Responsive
|
|
|
32 |
|
|
|
33 |
The H5P community is actively contributing to improve H5P. Updates and new
|
|
|
34 |
features are continuously made available on the community portal
|
|
|
35 |
[H5P.org](https://h5p.org).
|
|
|
36 |
|
|
|
37 |
View our [setup for Moodle](https://h5p.org/moodle) to get information on how
|
|
|
38 |
to get started with H5P.
|
|
|
39 |
|
|
|
40 |
### GDPR Compliance
|
|
|
41 |
Information useful to help you achieve GDPR compliance while using this plugin
|
|
|
42 |
can be found at [H5P.org's GDPR Compliance](https://h5p.org/plugin-gdpr-compliance) page.
|
|
|
43 |
|
|
|
44 |
### Development Version
|
|
|
45 |
Warning! Never use the development version in production, there are no guarantees for which state the development branches are in at a given time.
|
|
|
46 |
|
|
|
47 |
Inside your `moodle/mod` folder you run the following command:
|
|
|
48 |
```
|
|
|
49 |
git clone -b master https://github.com/h5p/h5p-moodle-plugin.git hvp && cd hvp && git submodule update --init
|
|
|
50 |
```
|
|
|
51 |
|
|
|
52 |
### Enabling The Plugin
|
|
|
53 |
In Moodle, go to administrator -> plugin overview, and press 'Update database'.
|
|
|
54 |
|
|
|
55 |
## Settings
|
|
|
56 |
Settings can be found at: Site Administration -> Plugins -> Activity Modules -> H5P
|
|
|
57 |
|
|
|
58 |
## Contributing
|
|
|
59 |
Feel free to contribute by:
|
|
|
60 |
* Submitting translations to the [Moodle AMOS translator](https://lang.moodle.org/local/amos/view.php)
|
|
|
61 |
* Testing and creating issues. But remember to check if the issues is already
|
|
|
62 |
reported before creating a new one. Perhaps you can contribute to an already
|
|
|
63 |
existing issue?
|
|
|
64 |
* Solving issues and submitting code through Pull Requests to the 'master' branch or on a separate feature branch.
|