is there any way to extend an existing Module creating a child-module or similar?
For example, if I want develop an extra-feature for the Post module (adding a custom field to show on the template), how to do it without cloning the module?
Hello, if you'd like to add custom field, you can use Form builder (/studio/builder_forms.php?page=fields&module=bx_posts&object=bx_posts&display=bx_posts_entry_add for posts module).
In more difficult cases you can create your custom module (not clone) for wrappers for existing modules interfaces.
Hello, if you'd like to add custom field, you can use Form builder (/studio/builder_forms.php?page=fields&module=bx_posts&object=bx_posts&display=bx_posts_entry_add for posts module).
In more difficult cases you can create your custom module (not clone) for wrappers for existing modules interfaces.
Thank you Roman