dokeos
[ class tree: dokeos ] [ index: dokeos ] [ all elements ]

Source for file gradebookitem.class.php

Documentation is available at gradebookitem.class.php

  1. <?php
  2.  
  3.  
  4. /**
  5.  * Interface for all displayable items in the gradebook.
  6.  * @author Bert Steppé
  7.  */
  8. interface GradebookItem
  9. {
  10.  
  11.     public function get_item_type();
  12.  
  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.  
  21.     public function get_icon_name();
  22.  
  23.     public function calc_score($stud_id null);
  24.  
  25. }
  26. ?>

Documentation generated on Thu, 12 Jun 2008 13:33:51 -0500 by phpDocumentor 1.4.1