I'm working with a custom build framework where the controllers reference and render the templates using a unique string with directory separators represented by colons.
Example: ->render('dir1:dir2:file');
I want to be able to use PhpStorm's navigation by declaration by Ctrl/Cmd clicking the template string, but I don't know how to set this up in PhpStorm so that these strings can be mapped to the directory structure and the file found and opened. I'm not finding what I need in the PhpStorm docs.
Has anyone done something like this before, is it even possible?
Note: "Navigate From Literal" plugin does not work in this case.