/**
  *
  * Repeater: Collapsibles
  *
  * @author Michael W. Delaney
  * @since 1.0
  *
  * Collapsibles repeater
  */
 function collapsibles()
 {
     $FCBRepeaterFields = new Fields($this->layout, __FUNCTION__);
     $FCBRepeaterFlexibleContent = new FlexibleContent(__FUNCTION__);
     return array('key' => $this->key . __FUNCTION__, 'label' => 'Collapsibles', 'name' => 'collapsibles', 'type' => 'repeater', 'instructions' => '', 'required' => 0, 'conditional_logic' => 0, 'wrapper' => array('width' => '', 'class' => 'acf-media', 'id' => ''), 'collapsed' => '', 'min' => '', 'max' => '', 'layout' => 'block', 'button_label' => 'Add Collapsible', 'sub_fields' => array($FCBRepeaterFields->title(), $FCBRepeaterFields->navigation_title(), $FCBRepeaterFields->panel_type(), $FCBRepeaterFields->tab_content(), $FCBRepeaterFields->content(), $FCBRepeaterFields->tab_media(), $FCBRepeaterFlexibleContent->media(), $FCBRepeaterFields->tab_background(), $FCBRepeaterFields->background_image(), $FCBRepeaterFields->background_color(), $FCBRepeaterFields->background_color_placeholder(), $FCBRepeaterFields->theme_color(), $FCBRepeaterFields->choose_color(), $FCBRepeaterFields->tab_cta(), $FCBRepeaterFlexibleContent->cta('collapse'), $FCBRepeaterFields->tab_endpoint()));
 }