plugin.php 789 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * This script is a configuration file for the date plugin. You can use it as a master for other platform plugins (course plugins are slightly different).
  4. * These settings will be used in the administration interface for plugins (Chamilo configuration settings->Plugins)
  5. * @package chamilo.plugin
  6. * @author Julio Montoya <gugli100@gmail.com>
  7. */
  8. /**
  9. * Plugin details (must be present)
  10. */
  11. /* Plugin config */
  12. //the plugin title
  13. $plugin_info['title'] = 'Follow icons';
  14. //the comments that go with the plugin
  15. $plugin_info['comment'] = "Add social icons (implemented using addthis.com)";
  16. //the plugin version
  17. $plugin_info['version'] = '1.0';
  18. //the plugin author
  19. $plugin_info['author'] = 'Julio Montoya';
  20. $plugin_info['templates'] = array('template.tpl');