Posted by cluther on September 27, 2011 at 10:42pm
1 follower
Jump to:
| Project: | Advanced help |
| Version: | 7.x-1.0-beta1 |
| Component: | User interface |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Currently in D7, with the default settings, the advanced help index ( at 'admin/advanced_help') is viewed in the administrative overlay, but when the user selects a topic it is viewed in the default theme (for example 'help/advanced_help/using-advanced-help'). For a more consistent UI what is the best way to route all topic views to the overview?
Comments
#1
Sometimes just verbalizing the question makes you think differently. So to answer my own question:
In the "mycustom_help.module" file:
<?php/*
* set all help topics to the admin path for viewing in administrative overlay
*/
function coa_help_admin_paths() {
$paths = array(
'help/*' => TRUE,
);
return $paths;
}
?>