You are here

function block_exclude_pages_debug_check in Block Exclude Pages 2.x

Same name and namespace in other branches
  1. 8 block_exclude_pages.module \block_exclude_pages_debug_check()

Doc function returns a strign witha list of paths to check for testing.

1 call to block_exclude_pages_debug_check()
block_exclude_pages_block_access in ./block_exclude_pages.module
Implements hook_block_access().

File

./block_exclude_pages.module, line 172
Contains block_exclude_pages.module.

Code

function block_exclude_pages_debug_check() {
  $senario = [
    'request_path' => [
      'pages' => <<<EEE
/node/28
!/node/2
/user
/user/*
!/user/jc
!/user/jc/*
!/user/jc/*/mc",
/offices/human-resources/current-employees/*
!/offices/human-resources/current-employees/manager-resources
EEE
,
    ],
  ];
  return $senario;
}