function menu_firstchild_install in Menu Firstchild 6
Same name and namespace in other branches
- 7 menu_firstchild.install \menu_firstchild_install()
 
Implementation of hook_install().
File
- ./
menu_firstchild.install, line 11  - Installation file for the menu_firstchild module.
 
Code
function menu_firstchild_install() {
  $ret = array();
  // Add custom index to menu_links table.
  db_add_index($ret, 'menu_links', 'plid', array(
    'plid',
  ));
}