/**
  * Table header for display.
  * @since   4.8
  * @param array $options
  * @return string
  */
 protected function _table_header($options)
 {
     $html = EEH_HTML::table('', '', $options['table_css_class']);
     $html .= EEH_HTML::thead();
     $html .= EEH_HTML::tr();
     $html .= EEH_HTML::th(__('Name', 'event_espresso'), '', 'jst-left');
     $html .= EEH_HTML::th(__('Type', 'event_espresso'), '', 'jst-left');
     $html .= EEH_HTML::th(__('Date(s)', 'event_espresso'), '', 'jst-left');
     $html .= EEH_HTML::th(__('Amount', 'event_espresso'), '', 'jst-cntr');
     $html .= EEH_HTML::tbody();
     return $html;
 }
 /**
  * Should be used to start teh form section (Eg a table tag, or a div tag, etc.)
  * @param array $additional_args
  * @return string
  */
 public function layout_form_begin($additional_args = array())
 {
     return EEH_HTML::table('', $this->_form_section->html_id(), $this->_form_section->html_class(), $this->_form_section->html_style()) . EEH_HTML::tbody();
 }