Example #1
0
 /**
  * Collects list of posts for current page
  *
  * @param Page $post
  */
 public function collectListOfPosts(Page $post)
 {
     $pagesCollection = $post->getBlocksCollection();
     $blogPostsCollection = $pagesCollection->getBlock(Plugin::getConfig('blogRootBlockName'))->getChildren();
     $this->listOfPosts = $this->sortPosts($blogPostsCollection);
 }