Newer
Older
<?php
/**
* @file
*/
*/
function feeds_ui_help($path, $arg) {
switch ($path) {
$output = '<p>' . t('Create one or more Feed importers for pulling content into Drupal. You can use these importers from the <a href="@import">Import</a> page or - if you attach them to a content type - simply by creating a node from that content type.', array('@import' => url('import'))) . '</p>';
return $output;
}
}
*/
function feeds_ui_menu() {
$items = array();
'description' => 'Configure one or more Feeds importers to aggregate RSS and Atom feeds, import CSV files or more.',
'page callback' => 'drupal_get_form',
'page arguments' => array('feeds_ui_overview_form'),
'access arguments' => array('administer feeds'),
'file' => 'feeds_ui.admin.inc',
);
$items['admin/structure/feeds/create'] = array(
twistor
committed
'title' => 'Add importer',
'page callback' => 'drupal_get_form',
Alex Barth
committed
'page arguments' => array('feeds_ui_create_form'),
'access arguments' => array('administer feeds'),
'file' => 'feeds_ui.admin.inc',
worldfallz
committed
'type' => MENU_LOCAL_ACTION,
);
$items['admin/structure/feeds/import'] = array(
'title' => 'Import importer',
'page callback' => 'drupal_get_form',
'page arguments' => array('feeds_ui_importer_import'),
'access callback' => 'feeds_importer_import_access',
'file' => 'feeds_ui.admin.inc',
twistor
committed
'type' => MENU_LOCAL_ACTION,
twistor
committed
$items['admin/structure/feeds/%feeds_importer'] = array(
'title callback' => 'feeds_ui_importer_title',
'title arguments' => array(3),
'page callback' => 'feeds_ui_edit_page',
'page arguments' => array(3),
'access arguments' => array('administer feeds'),
'file' => 'feeds_ui.admin.inc',
);
twistor
committed
$items['admin/structure/feeds/%feeds_importer/edit'] = array(
'title' => 'Edit',
'page callback' => 'feeds_ui_edit_page',
'page arguments' => array(3),
'access arguments' => array('administer feeds'),
'file' => 'feeds_ui.admin.inc',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => 1,
);
$items['admin/structure/feeds/%feeds_importer/export'] = array(
'title' => 'Export',
'page callback' => 'drupal_get_form',
twistor
committed
'page arguments' => array('feeds_ui_export_form', 3),
'access arguments' => array('administer feeds'),
'file' => 'feeds_ui.admin.inc',
twistor
committed
'type' => MENU_LOCAL_TASK,
'weight' => 2,
twistor
committed
$items['admin/structure/feeds/%feeds_importer/clone'] = array(
'title' => 'Clone',
'page callback' => 'drupal_get_form',
'page arguments' => array('feeds_ui_create_form', 3),
'access arguments' => array('administer feeds'),
'file' => 'feeds_ui.admin.inc',
twistor
committed
'type' => MENU_LOCAL_TASK,
'weight' => 3,
twistor
committed
$items['admin/structure/feeds/%feeds_importer/delete'] = array(
'title' => 'Delete',
'page callback' => 'drupal_get_form',
twistor
committed
'page arguments' => array('feeds_ui_delete_form', 3),
'access arguments' => array('administer feeds'),
'file' => 'feeds_ui.admin.inc',
twistor
committed
'type' => MENU_LOCAL_TASK,
'weight' => 4,
Alex Barth
committed
'feeds_ui_mapping_form' => array(
'render element' => 'form',
Alex Barth
committed
'file' => 'feeds_ui.admin.inc',
),
'feeds_ui_edit_page' => array(
'variables' => array('info' => NULL, 'active' => NULL),
Alex Barth
committed
'file' => 'feeds_ui.admin.inc',
),
'feeds_ui_plugin_form' => array(
'render element' => 'form',
Alex Barth
committed
'file' => 'feeds_ui.admin.inc',
),
'feeds_ui_container' => array(
'variables' => array('container' => NULL),
'file' => 'feeds_ui.admin.inc',
),
);
}
twistor
committed
* Implements hook_admin_menu_map().
twistor
committed
function feeds_ui_admin_menu_map() {
// Add awareness to the administration menu of the various importers so they
// are included in the dropdown menu.
if (!user_access('administer feeds')) {
return;
}
$map['admin/structure/feeds/%feeds_importer'] = array(
'parent' => 'admin/structure/feeds',
'arguments' => array(
array('%feeds_importer' => feeds_enabled_importers()),
),
);
return $map;
Alex Barth
committed
}
/**
twistor
committed
* Title callback for importers.
Alex Barth
committed
*/
twistor
committed
function feeds_ui_importer_title($importer) {
return t('@importer', array('@importer' => $importer->config['name']));