Advertisement
asanchez75

Drupal/snippets

Jun 7th, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. http://dominiquedecooman.com/blog/how-remove-drupal-default-node-page-aka-default-front-page-view
  2.  
  3. <?php
  4. /**
  5. * Implementation of hook_menu_alter().
  6. */
  7. function my_module_menu_alter(&$callbacks) {
  8. unset($callbacks['node']);
  9. }
  10. ?>
  11.  
  12. http://dominiquedecooman.com/blog/drupal-7-tip-how-automate-and-control-your-go-live-checklist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement