Example #1
0
 protected function _parseMainPageNews($data)
 {
     $result = [];
     $data = json_decode($data, true);
     if ($data) {
         $result = Post::getNewsByNewsId($data);
     }
     return $result;
 }