LLMS_Admin_Metabox::output()
Generate and output the HTML for the metabox.
Contents
Return Return
(void)
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.
Expand full source code Collapse full source code View on GitHub