指南
- 介绍
- Contribute
- 部署
- 管理
- 高级
内部文档
扩展
- Main 核心概念
- 参考指南
- 进阶指南
- 更新指南
Extensibility
In some cases, you might want other extensions to extend your extension.
Backend
Extensions extend Flarum Core's backend via two mechanisms:
Unsurprisingly, you can make your extension extensible via the same mechanisms.
Custom Events
To learn about dispatching events and defining new ones, see the relevant documentation.
Custom Extenders
Lets say you've developed an extension that adds an alternative search driver to Flarum, but you want to allow other extensions to add support for custom filters / sorts. A custom extender could be a good way to accomplish this.
The implementation of extenders is actually quite simple. There are 3 main steps:
- Various methods (and the constructor) allow client code to specify options. For example:
- Which model / API controller / validator should be extended?
- What modifications should be made?
- An
extend
method takes the input from step 1, and applies it by modifying various container bindings and global static variables to achieve the desired effect. This is the "implementation" of the composer. Theextend
methods for all enabled extensions are run as part of Flarum's boot process. - Optionally, extenders implementing
Flarum\Extend\LifecycleInterface
can haveonEnable
andonDisable
methods, which are run when extensions that use the extender are enabled/disabled, and are useful for tasks like clearing various caches.
Accordingly, to create a custom extender, all you need to do is:
- Define a class that implements
Flarum\Extend\ExtenderInterface
. - Accept arguments in the constructor, and various methods. Those methods should represent concrete "modifications".
- Implement an
extend
method that modifies your extension (or Flarum), typically via extending/modifying container bindings. - Optionally, implement
Flarum\Extend\LifecycleInterface
if cleanup is needed on enable/disable.
Before designing your own extenders, we HIGHLY recommend looking through the implementations of core's extenders.
提示Custom extenders introduced by your extension should be considered public API. You can add automated tests for them via our backend testing package.
警告Custom extenders should NOT be used to run arbitrary logic during the Flarum boot process. That's a job for Service Providers. An easy way to check: if you're using extenders that you have defined in your own extension, you're probably doing something wrong.
Frontend
If you want other extensions to be able to use classes or functions defined in your extension (whether to reuse or modify via the extend/override utils), you'll need to export them in your extension's index.js
(typically the same place where your extension's initializer is located).
For example:
app.initializers.add('your-extension-id', () => {
// Your Extension Code Here
})
export {
// Put all the stuff you want to export here.
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论