function references_dialog_admin_paths in References dialog 7
Implements hook_admin_paths().
File
- ./
references_dialog.module, line 86 - This the main module file.
Code
function references_dialog_admin_paths() {
// We only activate admin theme if we use the admin theme
// when editing nodes.
if (variable_get('node_admin_theme', FALSE)) {
return array(
'references-dialog/search/*' => TRUE,
);
}
}