id); if(!$is_favorited) { $html = "
"; } else { $html = "
"; } return $html; } public function display_people($username_array) { global $page; $i_favorites = count($username_array); $html = "$i_favorites people:"; foreach($username_array as $row) { $username = html_escape($row['name']); $html .= "
$username"; } $page->add_block(new Block("Favorited By", $html, "left", 25)); } } ?>