Add addons to the end of the chain, and run their load event. If any addon has sub-addons, they are registered.
(self, *addons)
| 196 | return addon |
| 197 | |
| 198 | def add(self, *addons): |
| 199 | """ |
| 200 | Add addons to the end of the chain, and run their load event. |
| 201 | If any addon has sub-addons, they are registered. |
| 202 | """ |
| 203 | for i in addons: |
| 204 | self.chain.append(self.register(i)) |
| 205 | |
| 206 | def remove(self, addon): |
| 207 | """ |