That is, it it possible without writing files to the parent theme? That would be helpful when it comes to upgrading.
Now I first add the module to the Pagebuilder module’s array:
function add_calender_to_pagebuilder($modules) {
$modules['ramvi_calendar'] = __('Calendar','ux');
return $modules;
}
add_filter('ux_pb_config_fields', 'add_calender_to_pagebuilder');
Then I add a file with the same name (ramvi_calendar) to theone\functions\pagebuilder\modules directory.