/**
  * Ajax get current options section
  *
  * @since 4.0.0
  */
 function get_options_section()
 {
     if (!empty($_POST) && array_key_exists('active_section', $_POST)) {
         global $cherry_options_framework;
         $html = '';
         $active_section = $_POST['active_section'];
         $cherry_options = $cherry_options_framework->get_current_settings();
         $current_section_options = $cherry_options[$active_section];
         $option_inteface_builder = new Cherry_Interface_Builder(array('pattern' => 'grid', 'hidden_items' => apply_filters('cherry-hidden-options', array())));
         $html .= $option_inteface_builder->multi_output_items($current_section_options['options-list']);
         printf('<div class="options-group %1$s">%2$s</div>', $active_section, $html);
         exit;
     }
 }