Kirby (or anyone else): Can you use a variable as part of a phrase name?
I have created a bunch of phrases called error_title_400, _401, _403, etc. Rather than creating a long if...else...else...else... statement to call each phrase by its full name, I'd like to just use one statement to call the phrase, using the value of $e as part of the name.
I have tried both
Code:
$error['title'] = construct_phrase($vbphrase['error_title_' . $e]);
and
Code:
$error['title'] = construct_phrase($vbphrase['error_title_$e']);
But neither worked.
I also tried both without the contruct_phrase function being used (when is it appropriate to use that function and when shouldn't it be used?).
Is there a way to do this?