You are here

function simplenews_admin_paths in Simplenews 7.2

Same name and namespace in other branches
  1. 7 simplenews.module \simplenews_admin_paths()

Implements hook_admin_paths().

File

./simplenews.module, line 307
Simplenews node handling, sent email, newsletter block and general hooks

Code

function simplenews_admin_paths() {
  $paths = array(
    'node/*/simplenews' => TRUE,
  );
  return $paths;
}