index.php 322 B

1234567891011121314
  1. <?php
  2. /**
  3. * @package chamilo.plugin.hello_world
  4. */
  5. // See also the share_user_info plugin
  6. echo '<div class="well">';
  7. if (!empty($plugin_info['settings']['hello_world_show_type'])) {
  8. echo "<h2>".$plugin_info['settings']['hello_world_show_type']."</h2>";
  9. } else {
  10. echo "<h2>Hello world</h2>";
  11. }
  12. echo '</div>';