Warning: This method has been deprecated. Use output_tbody_html() instead.

LLMS_Admin_Table::get_tbody_html()

Get a tbody element for the table.


Return Return

(string)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.admin.table.php

	public function get_tbody_html() {
		ob_start();
		$this->output_tbody_html();
		return ob_get_clean();
	}


Top ↑

Changelog Changelog

Changelog
Version Description
7.7.0 Use output_tbody_html() instead.
3.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.