I’m working on a widget and I was wondering if there’s a list available of the base_format parameters that we can apply under the get_settings function? There’s nothing I can find in the documentation.
More specifically I’d like to allow the builder to select a Create public webpage in the front end widget settings, similar to how they might select one as a destination for a submit button.
A couple of base_format parameters I’ve found which don’t quite do the trick:
‘link’ - fine but I’d much rather they chose a public webpage from a drop down of those available than enter a URL.
‘page_path’ - enables page selection functionality similar to a link element, however no option to select a public webpage.
Is there a parameter available that will enable this?
Unfortunately that list of base formats doesn’t include what I need.
I’d like for the builder to be able to specify a page (or an authenticated page) to route to via the code studio settings of the widget. As a workaround I can route to a standard webpage by passing its URL as a string, however for an authenticated page I need to build a reference which takes away from the modularity I’m trying to achieve.