You are here

function feeds_admin_paths in Feeds 7.2

Implements hook_admin_paths().

Related topics

File

./feeds.module, line 455
Feeds - basic API functions and hook implementations.

Code

function feeds_admin_paths() {
  $paths = array(
    'import' => TRUE,
    'import/*' => TRUE,
    'node/*/import' => TRUE,
    'node/*/delete-items' => TRUE,
    'node/*/log' => TRUE,
  );
  return $paths;
}