LLMS_Emails::get_table_html( array $rows )

Returns the table html


Parameters Parameters

$rows

(array) (Required) Array of rows to populate the table with.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/class.llms.emails.php

	public function get_table_html( $rows ) {

		if ( empty( $rows ) ) {
			return '';
		}

		ob_start();
		$this->output_table_html( $rows );

		return ob_get_clean();
	}


Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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