gradebookitem.class.php 673 B

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