Difference between revisions of "HowTo:Provide system definitions with a custom plugin"
m (→Big Picture) |
m |
||
| Line 1: | Line 1: | ||
This tutorial explains how to provide any kind of preconfigured {{UBIK}} data (system definitions) using a custom plugin. | This tutorial explains how to provide any kind of preconfigured {{UBIK}} data (system definitions) using a custom plugin. | ||
| − | |||
<!-- DO NOT REMOVE THIS -->{{Template:HowTo/Begin}}<!-- DO NOT REMOVE THIS --> | <!-- DO NOT REMOVE THIS -->{{Template:HowTo/Begin}}<!-- DO NOT REMOVE THIS --> | ||
| Line 9: | Line 8: | ||
[[File:Systemdefinitions.drawio.png]] | [[File:Systemdefinitions.drawio.png]] | ||
| − | |||
| − | |||
| − | |||
= Create a new plugin = | = Create a new plugin = | ||
| Line 523: | Line 519: | ||
public class MySystemDefinitions_V110 : MySystemDefinitions_V100 | public class MySystemDefinitions_V110 : MySystemDefinitions_V100 | ||
{ | { | ||
| + | #region Constants | ||
| + | |||
| + | public static readonly Version VERSION = new Version(1, 1, 0, 0); | ||
| + | |||
| + | #endregion Constants | ||
| + | |||
| + | #region Version | ||
| + | |||
| + | public override Version Version | ||
| + | { | ||
| + | get | ||
| + | { | ||
| + | return VERSION; | ||
| + | } | ||
| + | } | ||
| + | |||
| + | #endregion Version | ||
| + | |||
// ... | // ... | ||
| Line 549: | Line 563: | ||
* [[HowTo:Create_UBIK_Module|Create your own module]] | * [[HowTo:Create_UBIK_Module|Create your own module]] | ||
| − | [[Category:How-To]] | + | [[Category:How-To|Provide system definitions with a custom plugin]] |
| − | [[Category:Module]] | + | [[Category:Module|Provide system definitions with a custom plugin]] |
Revision as of 02:31, 25 November 2024
This tutorial explains how to provide any kind of preconfigured UBIK® data (system definitions) using a custom plugin.

