On this page
function block_menu_delete
block_menu_delete($menu)
Implements hook_menu_delete().
File
- modules/block/block.module, line 1067
- Controls the visual building blocks a page is constructed with.
Code
function block_menu_delete($menu) {
db_delete('block')
->condition('module', 'menu')
->condition('delta', $menu['menu_name'])
->execute();
db_delete('block_role')
->condition('module', 'menu')
->condition('delta', $menu['menu_name'])
->execute();
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!block!block.module/function/block_menu_delete/7.x