README.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. -- SUMMARY --
  2. "Multi path autocomplete" helps anyone who creates menu items on
  3. admin/build/menu/*/add to enter the path to nodes.
  4. It changes the input field for the menu path to an autocomplete text field so
  5. you can simply enter the title of the node and will get a list with all
  6. matching values. If you select one of them its path will be placed into the
  7. textfield.
  8. If path.module is enabled autocomplete is working for URL aliases, too.
  9. For a full description of the module, visit the project page:
  10. http://drupal.org/project/mpac
  11. To submit bug reports and feature suggestions, or to track changes:
  12. http://drupal.org/project/issues/mpac
  13. -- REQUIREMENTS --
  14. None.
  15. -- INSTALLATION --
  16. * Install as usual, see http://drupal.org/node/70151 for further information.
  17. -- DEVELOPER NOTES --
  18. You can alter the list of results by using hook_mpac_autocomplete_paths().
  19. Example:
  20. <code><?php
  21. function MODULENAME_mpac_autocomplete_paths_alter(&$matches, $title) {
  22. $matches['custom/path/1'] = t('My custom autocomplete result');
  23. }
  24. ?></code>
  25. -- CONTACT --
  26. Current maintainers:
  27. * Stefan Borchert (stborchert) - http://drupal.org/user/36942