You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Ignition factory method applicationPath() is purely cosmetic: if a file / var / www / html / web / modules / custom / joachim_debug / src / Controller / JoachimDebugController.php is shown in the error output, the filename is printed as modules / custom / joachim_debug / src / Controller / JoachimDebugController.php instead.
The URL for editing the file in an IDE remains the same.
However, if a PHP project is being run in Docker (for example using https://ddev.com/), the edit URL is no good, because it's an absolute path inside the Docker volume.
To fix this, there should be an extra Ignition factory method to set the file prefix. File edit URLs would then replace the applicationPath() with this.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
The Ignition factory method applicationPath() is purely cosmetic: if a file
/ var / www / html / web / modules / custom / joachim_debug / src / Controller / JoachimDebugController.phpis shown in the error output, the filename is printed asmodules / custom / joachim_debug / src / Controller / JoachimDebugController.phpinstead.The URL for editing the file in an IDE remains the same.
However, if a PHP project is being run in Docker (for example using https://ddev.com/), the edit URL is no good, because it's an absolute path inside the Docker volume.
To fix this, there should be an extra Ignition factory method to set the file prefix. File edit URLs would then replace the applicationPath() with this.
So for example:
would then mean that the file
would link as
and my IDE would be able to open it.
Beta Was this translation helpful? Give feedback.
All reactions