install.class.php 265 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Description of install
  4. *
  5. * @license see /license.txt
  6. * @author Laurent Opprecht <laurent@opprecht.info> for the Univesity of Geneva
  7. */
  8. class Install
  9. {
  10. static function message($message)
  11. {
  12. echo '<div>' . $message . '</div>';
  13. }
  14. }