Topic: trying to create module

Hi:

I trying to work thru creating a module.  Looking at a couple of examples and several of the posts on the forum I am gaining. 
What is the difference between add_rapp_function and add_lapp_function?
How is the _init file created?

Thanks,

Ed

Re: trying to create module

add_rapp_function() adds menu option on the right side, while add_lapp_function on left of the menu.
_init/config file is just text file in format key:value containing various  informations about module package. Some fields can have mutliline content (e.g. Description) - in this case continuation lines begin from white space in first column.

If you want to share some extension module via our repository adding any config file with basic information (author, www, name, description) leaving rest just empty is enough. We will fix it if necessary. On the other hand if you want to use the module only locally the _init/config file is not needed.

Janusz

Re: trying to create module

Thanks, Janusz

If the module is local, is the _init directory required with the files in it?

Ed

Re: trying to create module

No, for local extension _init content is ignored.

Janusz

Re: trying to create module

Janusz

Thanks again, I really appreciate your fast replies

Ed