/**
  * {@inheritDoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Content', 'OpiferContentBundle:HtmlBlock');
     $tool->setIcon('subject')->setDescription('Rich content editable through WYSIWYG editor.');
     return $tool;
 }
 /**
  * {@inheritDoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Button link', 'OpiferContentBundle:ButtonBlock');
     $tool->setIcon('label_outline')->setDescription('Creates a link to a (external) page or content');
     return $tool;
 }
 /**
  * {@inheritDoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('List', 'OpiferContentBundle:ListBlock');
     $tool->setIcon('view_list')->setDescription('Adds references to a collection of content items');
     return $tool;
 }
 /**
  * {@inheritDoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Shared block', 'OpiferContentBundle:PointerBlock');
     $tool->setIcon('all_inclusive')->setDescription('This block will load a shared block');
     return $tool;
 }
 /**
  * {@inheritdoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Navigation', 'OpiferContentBundle:NavigationBlock');
     $tool->setIcon('menu')->setDescription('Generates a simple page navigation');
     return $tool;
 }
 /**
  * {@inheritDoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Jumbotron', 'OpiferContentBundle:JumbotronBlock');
     $tool->setIcon('settings_overscan')->setDescription('Large piece of content with bigger font and optional background image.');
     return $tool;
 }
 /**
  * {@inheritdoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Image', 'OpiferContentBundle:ImageBlock');
     $tool->setIcon('image')->setDescription('Provides an image from the library in the right size.');
     return $tool;
 }
 /**
  * {@inheritDoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Carousel', 'OpiferContentBundle:CarouselBlock');
     $tool->setIcon('view_carousel')->setDescription('Create a carousel of two or more slides');
     return $tool;
 }
 /**
  * {@inheritDoc}
  */
 public function getTool()
 {
     $tool = new ContentTool('Carousel slide', 'OpiferContentBundle:CarouselSlideBlock');
     $tool->setIcon('filter')->setDescription('A basic carousel slide');
     return $tool;
 }