LLMS_Admin_Table::get_thead_html()
Get a thead element for the table.
Return Return
(string)
Source Source
File: includes/abstracts/abstract.llms.admin.table.php
*/ public function get_tbody_html() { $data = $this->get_tbody_data(); ob_start(); ?> <tbody> <?php if ( $data ) : ?> <?php foreach ( $data as $row ) : ?> <?php echo $this->get_tr_html( $row ); ?> <?php endforeach; ?> <?php else : ?> <tr><td class="llms-gb-table-empty" colspan="<?php echo $this->get_columns_count(); ?>"><p><?php echo $this->get_empty_message(); ?></p></td></tr> <?php endif; ?> </tbody> <?php return ob_get_clean(); } /** * Get a tfoot element for the table. * * @since 3.2.0 * @since 3.28.0 Unknown. * * @return string */ public function get_tfoot_html() {
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Introduced. |