block.class.php 383 B

12345678910111213141516171819
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Class Block
  5. * This file contains class used parent class for blocks plugins
  6. * Parent class for controller Blocks from dashboard plugin
  7. * @author Christian Fasanando <christian1827@gmail.com>
  8. * @package chamilo.dashboard
  9. */
  10. class Block
  11. {
  12. /**
  13. * Constructor
  14. */
  15. public function __construct()
  16. {
  17. }
  18. }