1234567891011121314151617181920 |
- <?php
- /**
- * This script is a configuration file for the BigBlueButton plugin. You can use it as a master for other course plugins.
- * These settings will be used in the administration interface for plugins (Chamilo configuration settings->Plugins)
- * @package chamilo.plugin
- * @author Yannick Warnier <ywarnier@beeznest.org>
- */
- /**
- * Plugin details (must be present)
- */
- //the plugin title
- $plugin_info['title']='BigBlueButton';
- //the comments that go with the plugin
- $plugin_info['comment']="Open Source Videoconference tool";
- //the locations where this plugin can be shown
- $plugin_info['location']=array('course_tool_plugin');
- //the plugin version
- $plugin_info['version']='0.9';
- //the plugin author
- $plugin_info['author']='Yannick Warnier';
|