/ Published in: PHP
**Important: this snipplet has moved to Github.**
- [Add a shortcut to "Create Node" at /admin in Drupal 6](https://gist.github.com/1973253)
- [Add a shortcut to "Create Node" at /admin in Drupal 6](https://gist.github.com/1973253)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Implementation of hook_menu(). */ function MODULENAME_menu(){ 'title' => 'Create', 'description' => 'Create contents', 'access callback' => 'menu_valid_path', ), 'page callback' => 'drupal_goto', ) ); }