指南
- 介绍
- Contribute
- 部署
- 管理
- 高级
内部文档
扩展
- Main 核心概念
- 参考指南
- 进阶指南
- 更新指南
Extending Extensions
Flarum extensions aren't just for adding features to core: extensions can extend other extensions!
提示To learn how to make your extension extensible, see the relevant documentation
Dependencies
If your extension relies on another extension, you'll want to ensure that:
- The other extension is installed and enabled before yours can be.
- The other extension can't be disabled while yours is enabled.
- The other extension is booted before your extension.
Flarum makes this very easy: just add the other extension to your extension's composer.json
's require
section.
For example, if you were building a new theme for the Flarum Tags extension, your composer.json
would look like this:
{
// ...
"require": {
"flarum/core": "^0.1.0-beta.15", // Since all extensions need to require core.
"flarum/tags": "^0.1.0-beta.15" // This tells Flarum to treat tags as a dependency of your extension.
},
// ...
}
Optional Dependencies
Sometimes, extension A might want to extend extension B only if extension B is enabled. In this case, we call B an "Optional Dependency" of A. For instance, a drafts extension might want to add support for saving private discussion drafts, but only if the private discussion extension is enabled.
The first step here is detecting whether extension B is enabled. In the frontend, this is easy: if extension B does anything in the frontend, its extension ID will appear as a key in the flarum.extensions
global object. For instance:
if ('some-extension-id' in flarum.extensions) {
// do something
}
In the backend, you'll need to inject an instance of Flarum\Extension\ExtensionManager
, and use its isEnabled()
method. For instance:
<?php
use Flarum\Extension\ExtensionManager;
class SomeClass {
public function __construct(ExtensionManager $extensions)
{
$this->extensions = $extensions;
}
public function someMethod()
{
if ($this->extensions->isEnabled('some-extension-id')) {
// do something.
}
}
}
Generally, if your extension has optional dependencies, you'll want it to be booted after said optional dependencies. You can also do this by specifying composer package names (NOT flarum extension IDs) in an array for the extra.flarum-extension.optional-dependencies
key of your composer.json.
For instance:
{
// ...
"extra": {
"flarum-extension": {
"optional-dependencies": [
"flarum/tags"
]
}
},
// ...
}
Importing from Extensions
In the backend, you can import the classes you need via regular PHP use
statements:
<?php
use Flarum\Tags\Tag;
class SomeClass
{
public function someMethod()
{
return new Tag(); // This is not the correct way to instantiate models, it's just here for example of importing.
}
}
Note that if you're importing from an optional dependency which might not be installed, you'll need to check that the class in question exists via the class_exists
function.
In the frontend, you can only import things that have been explicitly exported. However, first you'll need to configure your extension's webpack to allow these imports:
webpack.config.js
module.exports = require('flarum-webpack-config')({
// Provide the extension IDs of all extensions from which your extension will be importing.
// Do this for both full and optional dependencies.
useExtensions: ['flarum-tags']
});
Once this is done, you can import with:
const allThingsExportedBySomeExtension = require('@flarum-tags');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论