Prerequisites
Installation & Setup
API
Cache
Config File
Developer Mode
Developer Tools
Enable Debug Mode
Events
Extensions
Features
Integrations
License System Extension
Permissions
Updating FaxStore
Weblutions Documentation > FaxStore > Extensions > Registering Extensions
Registering Extensions
In 2.4.3 FaxStore will allow the registration of extensions. Stay tuned!
Registering extensions will allow editing settings of extensions along with reloading the extensions.
Here is a quick start, we'll be fully updating this at release.
faxstore.registerExtension({
name: 'My Exension',
description: 'Here is a description of this extension',
icon: 'https://weblutions.com/assets/logo.png',
config: extConfig,
version: '1.0.0',
author: 'FAXES',
url: 'https://github.com/FAXES/faxstore-extensions',
staffPage: {
icon: 'fa-solid fa-grid',
name: 'Extension Name',
link: '/extensions/extension_name'
}
pages: ['/staff/myextension', '/staff/myextension/settings']
}, __filename);
Other options may be passed in the object. However 'name' is required.
Review this page
1 recommend this page