diff options
author | Angelo Naselli <anaselli@linux.it> | 2015-07-17 09:56:43 +0200 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2015-07-17 09:56:43 +0200 |
commit | 78ed12063bf290ffea513c76f0aa000810d0f93c (patch) | |
tree | faef418ffa069e2f5faa3b8f40e40da34fbe5d6d /MODULE_HACKING | |
parent | 297d8b15f065ce9555c6ca387d11d26168fd292f (diff) | |
download | colin-keep-78ed12063bf290ffea513c76f0aa000810d0f93c.tar colin-keep-78ed12063bf290ffea513c76f0aa000810d0f93c.tar.gz colin-keep-78ed12063bf290ffea513c76f0aa000810d0f93c.tar.bz2 colin-keep-78ed12063bf290ffea513c76f0aa000810d0f93c.tar.xz colin-keep-78ed12063bf290ffea513c76f0aa000810d0f93c.zip |
Updated
Diffstat (limited to 'MODULE_HACKING')
-rw-r--r-- | MODULE_HACKING | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/MODULE_HACKING b/MODULE_HACKING index 4ed3af1..55c8d25 100644 --- a/MODULE_HACKING +++ b/MODULE_HACKING @@ -65,6 +65,12 @@ Said that you have to: Some share code is into ManaTools::Shared modules, such as Locales to manage localization or Module back-ends for instance. +A module template example is into extras/module_templete/ directory, where +extras/module_templete/mana_mt is the example script that use and run +the module, while the module itself is +extras/module_templete/ManaTools/Module/ModuleTemplate.pm +The module just show a MessageBox and exit. + - ManaTools configuration (how to run a module) mpan can be run using a "name" parameter and eventually by forcing a configuration @@ -93,12 +99,12 @@ _______________ --------------- Layout can change in future though. -Let's see an example +Let's see an example of a category configuration <category> <title>Hardware</title> <icon>/usr/share/icons/configuration_section.png</icon> <module> - <class>ManaTools::Module::AdminMouse</class> + <class>ManaTools::Module::Services</class> </module> <module> <title>Module name</title> @@ -107,7 +113,8 @@ Let's see an example </module> </category> -First module is a perl ManaTools::Module extension (AdminMouse), -latter is an external one, as you can see could be a script -as well as an executable command. +First module is a perl ManaTools::Module extension (Services), +latter is an external one, called "module" and with a full pathname. + +As you can see it could be a script, as well as an executable command. Look at settings.conf and categories.conf for details. |