LLMS_Metabox_Checkbox_Field::output()

outputs the Html for the given field


Return Return

(void)


Top ↑

Source Source

File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.checkbox.php

	public function output() {

		global $post;

		$controls   = isset( $this->field['controls'] ) ? 'data-controls="' . $this->field['controls'] . '"' : '';
		$controller = isset( $this->field['is_controller'] ) ? 'data-is-controller="true"' : '';

		parent::output(); ?>

		<div class="llms-switch d-1of4 t-1of4 m-1of2">

			<input
				<?php echo $controls; ?>
				<?php echo $controller; ?>
				name="<?php echo esc_attr( $this->field['id'] ); ?>"
				id="<?php echo esc_attr( $this->field['id'] ); ?>"
				class="llms-toggle llms-toggle-round"
				type="checkbox"
				value="<?php echo esc_attr( $this->field['value'] ); ?>"
				<?php echo ( $this->field['value'] === $this->meta ) ? 'checked' : ''; ?>
			/>

			<label for="<?php echo $this->field['id']; ?>"></label>

		</div>
		<?php
		parent::close_output();
	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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