gradebookitem.class.php 585 B

123456789101112131415161718192021222324
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Interface for all displayable items in the gradebook.
  5. * @author Bert Steppé
  6. * @package chamilo.gradebook
  7. */
  8. /**
  9. * Interface
  10. * @package chamilo.gradebook
  11. */
  12. interface GradebookItem
  13. {
  14. public function get_item_type();
  15. public function get_id();
  16. public function get_name();
  17. public function get_description();
  18. public function get_course_code();
  19. public function get_weight();
  20. public function get_date();
  21. public function is_visible();
  22. public function get_icon_name();
  23. public function calc_score($stud_id = null);
  24. }