public function get_layout()
 {
     $image = wp_get_attachment_image_src($this->image_id, array(100, 100));
     $data = array('field_type' => 'wcml-image', 'divider' => $this->divider, 'image_src' => $image[0]);
     $data['fields'] = parent::get_layout();
     return $data;
 }
 public function get_layout()
 {
     $data = array('empty_message' => '', 'empty' => false, 'title' => $this->title, 'sub_title' => $this->sub_title, 'field_type' => 'tm-section');
     $data['fields'] = parent::get_layout();
     return $data;
 }
 public function get_layout()
 {
     $data = array('title' => $this->title, 'divider' => $this->divider, 'field_type' => 'tm-group');
     $data['fields'] = parent::get_layout();
     return $data;
 }