plugin.php 618 B

12345678910111213141516171819202122
  1. <?php
  2. /* For license terms, see /license.txt */
  3. /**
  4. * This script is a configuration file for the add_this plugin.
  5. * These settings will be used in the administration interface for plugins
  6. * (Chamilo configuration settings->Plugins).
  7. *
  8. * @package chamilo.plugin card_game
  9. *
  10. * @author Damien Renou <renou.damien@gmail.com>
  11. */
  12. /* Plugin config */
  13. // The plugin title.
  14. $plugin_info['title'] = 'Card game';
  15. // The comments that go with the plugin.
  16. $plugin_info['comment'] = "Show a card game";
  17. // The plugin version.
  18. $plugin_info['version'] = '1.2';
  19. // The plugin author.
  20. $plugin_info['author'] = 'Damien Renou';