id);
$s_score = $this->score_to_name($image->text_score);
$html = "
Current score is \"$s_score\"
";
return $html;
}
public function score_to_name($score) {
$words = array();
$words[-2] = "Delete";
$words[-1] = "Bad";
$words[ 0] = "Ok";
$words[ 1] = "Good";
$words[ 2] = "Favourite";
$s_score = $words[$score];
return $s_score;
}
}
?>