|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
efrain |
1 |
## BigBlueButtonBN extension subplugins
|
|
|
2 |
|
|
|
3 |
The plugins are made to extend existing BigBlueButtonBN behaviour. For now, we have two extensions points using as base classes that should be implemented.
|
|
|
4 |
* action_url_addons: inherit this class and redefine the execute method so add new parameter when we send an action url to the BigBlueButton server.
|
|
|
5 |
* mod_instance_helper : inherit this class so all methods will be called when we either add/delete/or update a module instance.
|
|
|
6 |
The extension classes should be placed in your plugin with exactly the same name but in a different namespace for example
|
|
|
7 |
* **\\bbbext_<YOUREXTENSION>\\bigbluebuttonbn\\mod_instance_helper** to extend hooks from the mod_instance_helper class.
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
Some examples are provided in the tests/fixtures/simple folder.
|