Example #1
0
 /**
  * @author Thuanth6589 <*****@*****.**>
  * save post
  * @param array $data
  * @return mixed
  * @throws Exception
  */
 public function save_data($data = array())
 {
     $post = Model_Mpost::forge();
     $post->set($data);
     return $post->save();
 }