plugin.php 885 B

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