class _StandardizedTest

  1. 4.x classes/_StandardizedTest.php _StandardizedTest
  2. 5.x classes/_StandardizedTest.php _StandardizedTest

Hierarchy

Expanded class hierarchy of _StandardizedTest

File

classes/_StandardizedTest.php, line 4

View source
class _StandardizedTest extends stdClass
 {
  public $categories, $description, $test_id, $date_taken, $bool_date_unavailable;



  function __construct() 
   {
    $this->categories = array();
    $this->bool_date_unavailable = FALSE;
  }


  function to_string() 
   {
    $rtn = "";

    $rtn .= "test: $this->date_taken - $this->test_id - $this->description : \n";
    if (count($this->categories)) 
     {
      foreach ($this->categories as $position => $value) 
       {
        $rtn .= "  $position - {$value ["category_id"]} - {$value ["description"]} - {$value ["score"]} \n";
      }
    }

    return $rtn;
  }


}

Members

Contains filters are case sensitive