*/ /** Display the articles of the blog */ class view_blog { /** Return the datas @param array $data The list of titles */ function get ($data) { return $data; } /** Display the list of titles @param array $data The list of titles */ function listing ($data) { $content = "\n"; return $content; } }