You are here

function simpleads_admin_paths in SimpleAds 7

Same name and namespace in other branches
  1. 7.2 simpleads.module \simpleads_admin_paths()

Implements hook_admin_paths().

File

./simpleads.module, line 118

Code

function simpleads_admin_paths() {
  if (variable_get('node_admin_theme')) {
    $paths = array(
      'node/*/stat' => TRUE,
    );
    return $paths;
  }
}