plugin.php 675 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * This script is a configuration file for the date plugin.
  4. * You can use it as a master for other platform plugins (course plugins are slightly different).
  5. * These settings will be used in the administration interface for plugins (Chamilo configuration settings->Plugins)
  6. * @package chamilo.plugin
  7. * @author Yannick Warnier <ywarnier@beeznest.org>
  8. */
  9. /**
  10. * Plugin details (must be present)
  11. */
  12. //the plugin title
  13. $plugin_info['title'] = 'Date';
  14. //the comments that go with the plugin
  15. $plugin_info['comment'] = "Multinational date display";
  16. //the plugin version
  17. $plugin_info['version'] = '1.0';
  18. //the plugin author
  19. $plugin_info['author'] = 'Yannick Warnier';