It's not clear to me what the best way to do this is. In
/phpbb/help/manager.php
I see this event: core.help_manager_add_question_after
. It uses the function add_question()
but it's only called from the function add_block()
.Without knowing the help block too, how would phpBB know which block should be used? But even if I tie into the
core.help_manager_add_question_after event
, wouldn't add a nearly duplicate question rather than replace it? I would like to selectively replace some of these language strings. Seems there must be a better way to do this.