mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:26:44 +00:00
882 B
882 B
Life cycle
Lifecycle of applications
Lifecycle of plugins
Lifecycle methods for plugins
import { InstallOptions, Plugin } from '@nocobase/server';
export class MyPlugin extends Plugin {
afterAdd() {
// After the plugin pm.add is registered. Mainly used to place the app.beforeLoad event.
beforeLoad() { }
beforeLoad() {
// Before all plugins are loaded. Generally used for registering classes and event listeners
}
async load() {
// Load configuration
}
async install(options?: InstallOptions) {
// Logic for installing
}
async afterEnable() {
// After activation
}
async afterDisable() {
// After disable
}
async remove() {
// Logic for removing
}
}
export default MyPlugin;