*/ /** Display the articles of the blog */ class view_blog { /** Return the datas @param array $data The list of titles */ public function get ($data, $variable) { $res = "Edit
"; $res.= "

".$variable["title"]."

\n"; $res.= "

".$variable["content"]."

\n"; return $res; } /** Display the list of titles @param array $data The list of titles */ public function listing ($data, $variable) { $content = "\n"; return $content; } /** Create/Edit a blog */ public function edit ($data, $variable) { return $data; } }