LLMS_Admin_Metabox::output()

Generate and output the HTML for the metabox.


Return Return

(void)


Top ↑

Source Source

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

	 */
	public function has_errors() {
		return count( $this->errors ) ? true : false;
	}

	/**
	 * Generate and output the HTML for the metabox.
	 *
	 * @since Unknown
	 *
	 * @return void
	 */
	public function output() {

		// Setup html for nav and content.
		$this->process_fields();

		// output the html.

Top ↑

User Contributed Notes User Contributed Notes

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