Skip to content
Snippets Groups Projects
Commit 834e08f7 authored by Kevin Kaland's avatar Kevin Kaland
Browse files

Issue #1526438: Show breadcrumbs on import/export pages.

parent 7a76f0b3
No related branches found
No related tags found
No related merge requests found
...@@ -80,16 +80,13 @@ function fillpdf_menu() { ...@@ -80,16 +80,13 @@ function fillpdf_menu() {
'page callback' => 'fillpdf_form_export', 'page callback' => 'fillpdf_form_export',
'page arguments' => array(3), 'page arguments' => array(3),
'access arguments' => $access, 'access arguments' => $access,
'type' => MENU_CALLBACK,
); );
$items['admin/structure/fillpdf/%/import'] = array( $items['admin/structure/fillpdf/%/import'] = array(
'title' => 'Import Fill PDF field mappings', 'title' => 'Import Fill PDF field mappings',
'page callback' => 'drupal_get_form', 'page callback' => 'drupal_get_form',
'page arguments' => array('fillpdf_form_import_form', 3), 'page arguments' => array('fillpdf_form_import_form', 3),
'access arguments' => $access, 'access arguments' => $access,
'type' => MENU_CALLBACK,
); );
//}else if (is_numeric(arg(4))) {
// --------- Fields ------------------------ // --------- Fields ------------------------
$items['admin/structure/fillpdf/%/add'] = array( $items['admin/structure/fillpdf/%/add'] = array(
...@@ -104,7 +101,6 @@ function fillpdf_menu() { ...@@ -104,7 +101,6 @@ function fillpdf_menu() {
'page arguments' => array(4, 3, 5), 'page arguments' => array(4, 3, 5),
'access arguments' => $access, 'access arguments' => $access,
); );
//}
return $items; return $items;
} }
......
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