This is a follow-up of #2138, which in turn is a follow-up of #2040...
There is already a respective issue filed against D8 core: Option to display php error messages in a block so we can limit visibility per role [#2743119]
At /admin/config/development/logging we have no option to display php error messages in a block that would enable admins limiting the display of error messages per role. Such a feature would be invaluable for debugging. Currently, we cannot control who sees the error messages, but in a block we could easily limit visibility per role.
Recent comments
This relates to a problem with creating a View of Projects on a site using MySQL >= 8.0.3 https://github.com/backdrop/backdrop-issues/issues/5795 I can't be at the meeting this...
Dec 5th Weekly Dev Meeting
Additionally, "outside" means a file that is located outside a module folder. The second parameter of module_load_include() is the name of a module, so, this function assumes that you are loading a...
How to include other files in module?
Yes, it does mean outside your functions. You can use module_load_include() within functions but not outside. The YouTube module gives an example: <?php /** * @file * Youtube field module adds...
How to include other files in module?