block.class.php 391 B

123456789101112131415161718192021
  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. *
  8. * @author Christian Fasanando <christian1827@gmail.com>
  9. *
  10. * @package chamilo.dashboard
  11. */
  12. class Block
  13. {
  14. /**
  15. * Constructor.
  16. */
  17. public function __construct()
  18. {
  19. }
  20. }