コード例 #1
0
ファイル: clues.php プロジェクト: rjwalsh88/BawkApp
function displayClueSummary(Clue $clue)
{
    $name = $clue->getName();
    $id = $clue->getID();
    $name = "<b><a href=\"clues.php?id={$id}\">{$name}</a></b>";
    return $name . ', ' . $clue->getTime() . ': ' . $clue->getHistogram();
}