plugin.php 907 B

12345678910111213141516171819202122
  1. <?php
  2. /* For licensing terms, see /chamilo_license.txt */
  3. /**
  4. * This script is a configuration file for the messages plugin. You can use it as a master for other plugins.
  5. * These settings will be used in the administration interface for plugins (Dokeos configuration settings->Plugins)
  6. * @package dokeos.plugin
  7. * @author Evie, Free University of Brussels
  8. */
  9. /**
  10. * Plugin details (must be present)
  11. */
  12. //the plugin title
  13. $plugin_info['title']='Messages';
  14. //the comments that go with the plugin
  15. $plugin_info['comment']="Private messages plugin";
  16. //the locations where this plugin can be shown
  17. $plugin_info['location']=array('loginpage_main', 'loginpage_menu', 'campushomepage_main', 'campushomepage_menu', 'mycourses_main', 'mycourses_menu', 'header', 'footer');
  18. //the plugin version
  19. $plugin_info['version']='1.1';
  20. //the plugin author
  21. $plugin_info['author']='Facultad de Matematicas, UADY (Mexico)';
  22. ?>