plugin.php 874 B

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