plugin.php 838 B

12345678910111213141516171819202122
  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. // The plugin title
  12. $plugin_info['title'] = 'Show user information';
  13. // The comments that go with the plugin
  14. $plugin_info['comment'] = "Shows a welcome message, (this is an example to uses the template system: Twig)";
  15. // The plugin version
  16. $plugin_info['version'] = '1.0';
  17. // The plugin author
  18. $plugin_info['author'] = 'Julio Montoya';
  19. // Set the templates that are going to be used
  20. $plugin_info['templates'] = array('template.tpl');