/**
  * @return array
  */
 public function getContentOptions()
 {
     $contentOptions = [];
     $posts = $this->postService->getAllPosts();
     foreach ($posts as $post) {
         $contentOptions[$post->id] = $post->metadata->title;
     }
     return $contentOptions;
 }