I have created a module that implements a Views style plugin. In my hook_views_plugins() implementation I have defined the 'help topic' attribute for the style plugin entry, and I have also implemented the help subdirectory and all the rest of the advanced help stuff.
It all works well, except the help icon is not displayed next to the title of the style plugin settings form.
The problem is that views_plugin_display.inc does not set the #help_module attribute in the $form array, assuming all help icons are implemented by Views.
Patch coming...
Comments
Comment #1
markus_petrux commentedComment #2
markus_petrux commentedOops! fixed copy/paste issue. Sorry.
Comment #3
markus_petrux commentedHow to test:
If you do not have a style plugin at hand implemented by a separate module that provides its own help topic, then you may want to try with this one:
http://drupal.org/project/views_fluid_grid
When the style plugin settings form is rendered, there's no help icon to the left of the title "Defaults: Style options". If you apply the patch in #2, you will now see the small help icon, as if it was any other style plugin implemented by Views itself. :)
Comment #4
merlinofchaos commentedCommitted to all branches. Thanks!