plugin.php 853 B

123456789101112131415161718192021222324
  1. <?php //$id: $
  2. /**
  3. * This script is a configuration file for the search plugin.
  4. * You can use it as a master for other plugins.
  5. * These settings will be used in the administration interface for
  6. * plugins (Dokeos configuration settings->Plugins)
  7. * Make sure your read the README.txt file to understand how to use this plugin!
  8. * @package dokeos.plugin
  9. * @author Yannick Warnier <yannick.warnier@dokeos.com>
  10. */
  11. /**
  12. * Plugin details (must be present)
  13. */
  14. //the plugin title
  15. $plugin_info['title']='Search';
  16. //the comments that go with the plugin
  17. $plugin_info['comment']="Full-text search engine";
  18. //the locations where this plugin can be shown
  19. $plugin_info['location']=array('mycourses_main', 'mycourses_menu', 'header', 'footer');
  20. //the plugin version
  21. $plugin_info['version']='1.0';
  22. //the plugin author
  23. $plugin_info['author']='Yannick Warnier';
  24. ?>