Is it possible for me to generate my own "DefaultValue"?

I have some php functions and I would like to know if I can add them to the DefaultValue property

You should be able to do that. Make sure it’s in helper/function.php and it does not require passing parameters.
Example:

function exampleFunction() {
    return 'Test default value';
} 

Then you can add it like this --exampleFunction–

1 Like