block.class.php 672 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This file contains class used parent class for blocks plugins
  5. * @author Christian Fasanando <christian1827@gmail.com>
  6. * @package chamilo.dashboard
  7. */
  8. /**
  9. * Parent class for controller Blocks from dashboard plugin
  10. * @package chamilo.dashboard
  11. */
  12. class Block {
  13. /**
  14. * Contructor
  15. */
  16. public function __construct() {}
  17. /**
  18. * Display small blocks, @todo it will be implemented for next version
  19. */
  20. public function display_small() {}
  21. /**
  22. * Display larges blocks, @todo it will be implemented for next version
  23. */
  24. public function display_large() {}
  25. }
  26. ?>