/**
  * Sets and gets the $documentation sections array.
  *
  * @return array
  */
 static function get_documentation_sections()
 {
     self::$documentation = array('general-usage' => esc_html__('General Usage', 'portfolio-slideshow'), 'shortcode-attributes' => esc_html__('Shortcode Attributes', 'portfolio-slideshow'), 'slideheight' => esc_html__('Slideheight', 'portfolio-slideshow'), 'transitions' => esc_html__('Transitions', 'portfolio-slideshow'), 'slideshow-meta' => esc_html__('Titles, Captions, and Descriptions', 'portfolio-slideshow'), 'slideshow-behaviors' => esc_html__('Slideshow Behaviors', 'portfolio-slideshow'), 'navigation-and-pager' => esc_html__('Navigation and Pager', 'portfolio-slideshow'), 'include-exclude' => esc_html__('Include or Exclude Slides', 'portfolio-slideshow'));
     return self::$documentation;
 }