function block_admin_paths in Drupal 7
Implements hook_admin_paths().
File
- modules/
block/ block.module, line 1091 - Controls the visual building blocks a page is constructed with.
Code
function block_admin_paths() {
$paths = array(
// Exclude the block demonstration page from admin (overlay) treatment.
// This allows us to present this page in its true form, full page.
'admin/structure/block/demo/*' => FALSE,
);
return $paths;
}