1234567891011121314151617 |
- <?php
- /**
- * Plugin details (must be present)
- */
- //the plugin title
- $plugin_info['title']='AppShare';
- //the comments that go with the plugin
- $plugin_info['comment']="This plugin allows the student to visualize the screen of his teacher.";
- //the locations where this plugin can be shown
- $plugin_info['location']=array('mycourses_main');
- //the plugin version
- $plugin_info['version']='0.1';
- //the plugin author
- $plugin_info['author']='Patrick Vandermaesen';
- //the email adres of the plugin author
- $plugin_info['email']='pvandermaesen@noctis.be';
- ?>
|