plugin.php 548 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Plugin details (must be present)
  4. */
  5. //the plugin title
  6. $plugin_info['title']='AppShare';
  7. //the comments that go with the plugin
  8. $plugin_info['comment']="This plugin allows the student to visualize the screen of his teacher.";
  9. //the locations where this plugin can be shown
  10. $plugin_info['location']=array('mycourses_main');
  11. //the plugin version
  12. $plugin_info['version']='0.1';
  13. //the plugin author
  14. $plugin_info['author']='Patrick Vandermaesen';
  15. //the email adres of the plugin author
  16. $plugin_info['email']='pvandermaesen@noctis.be';
  17. ?>