Esempio n. 1
0
 /**
  * Gets a single post from the database
  *
  * @param int $post_id - post id of the post to get
  * @return array|false
  */
 public function getPost($h, $post_id = 0)
 {
     //$post = \Hotaru\Models\Post::getWithDetails($post_id);
     $post = \Hotaru\Models2\Post::getWithDetails($h, $post_id);
     if ($post) {
         return $post;
     } else {
         return false;
     }
 }