Skip to content
Snippets Groups Projects
Commit 8407bd06 authored by niklas's avatar niklas Committed by Chris Leppanen
Browse files

Issue #1113312 by Niklas Fiekas: Show import page in admin overlay.

parent 921311ce
No related branches found
No related tags found
No related merge requests found
...@@ -358,6 +358,20 @@ function feeds_menu() { ...@@ -358,6 +358,20 @@ function feeds_menu() {
return $items; return $items;
} }
/**
* Implements hook_admin_paths().
*/
function feeds_admin_paths() {
$paths = array(
'import' => TRUE,
'import/*' => TRUE,
'node/*/import' => TRUE,
'node/*/delete-items' => TRUE,
'node/*/log' => TRUE,
);
return $paths;
}
/** /**
* Menu loader callback. * Menu loader callback.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment