class _StandardizedTest
Search API
- 4.x classes/_StandardizedTest.php _StandardizedTest
- 5.x classes/_StandardizedTest.php _StandardizedTest
Hierarchy
- class \_StandardizedTest extends \stdClass
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
Name | Modifiers | Type | Description |
---|---|---|---|
_StandardizedTest:: |
public | property | |
_StandardizedTest:: |
function | ||
_StandardizedTest:: |
function |