LLMS_Admin_Table::get_table_html()
Get the HTML for the entire table.
Return Return
(string)
Source Source
File: includes/abstracts/abstract.llms.admin.table.php
if ( $this->is_large ) {
$classes[] = 'size-large';
}
/**
* Filters the CSS classes to use on the table.
*
* @since 3.34.0
*
* @param array $classes CSS class names.
* @param array $table_id Id property of this table object.
*/
return apply_filters( 'llms_table_get_table_classes', $classes, $this->id );
}
/**
* Get HTML for the filters displayed in the head of the table.
*
* @since 3.4.0
*
* @return string
*/
public function get_table_filters_html() {
ob_start();
?>
<div class="llms-table-filters">
<?php foreach ( $this->get_columns() as $id => $data ) : ?>
<?php if ( is_array( $data ) && isset( $data['filterable'] ) && is_array( $data['filterable'] ) ) : ?>
<div class="llms-table-filter-wrap">
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.37.7 | Use correct argument order for implode to fix php 7.4 deprecation. |
| 3.2.0 | |
| 3.17.8 | Introduced. |