示例#1
0
文件: Zpn.php 项目: zrosiak/fields
 /**
  * Tworzenie struktury związku
  * @param Post $post
  * @param Category $category
  * @param array $params dodatkowe parametry
  * @return Collection
  */
 public static function getStructure(Post $post, Category $category, array $params = [])
 {
     $structure = null;
     $categories = $category->getSubcategories(false, true);
     if ($categories) {
         $structure = Category::orderByRaw('"order" asc NULLS LAST')->find($categories)->filter(function ($elem) use($post) {
             if (empty($elem->communication) === false) {
                 $post = BlogPost::where('id', $elem->communication)->first();
                 $elem->communication = $post->getPaths();
             }
             $elem->posts = BlogPost::getPosts(['categories_id' => [$elem->id], 'template_id' => 2, 'additional' => ['person_type' => 3], 'order' => "additional->>'order' NULLS LAST"]);
             return $elem->posts->count() > 0;
         });
     }
     return $structure;
 }