function simplenews_admin_paths in Simplenews 7
Same name and namespace in other branches
- 7.2 simplenews.module \simplenews_admin_paths()
Implements hook_admin_paths().
File
- ./
simplenews.module, line 284 - Simplenews node handling, sent email, newsletter block and general hooks
Code
function simplenews_admin_paths() {
$paths = array(
'node/*/simplenews' => TRUE,
);
return $paths;
}