LLMS_Metabox_Checkbox_Field

LLMS_Metabox_Checkbox_Field class


Source Source

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

class LLMS_Metabox_Checkbox_Field extends LLMS_Metabox_Field implements Meta_Box_Field_Interface {

	/**
	 * Class constructor
	 *
	 * @since Unknown
	 *
	 * @param array $_field Array containing information about field
	 * @return void
	 */
	public function __construct( $_field ) {
		$this->field = $_field;
	}

	/**
	 * outputs the Html for the given field
	 *
	 * @since Unknown
	 * @since 4.0.0 Remove reliance on `LLMS_Svg` class, refactor to closely match appearance of WP core block editor toggles.
	 *
	 * @return void
	 */
	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 ↑

Methods Methods


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.