%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/meta-box/fields/
Upload File :
Create Path :
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/meta-box/fields/yes-no.php

<?php
/**
 * @author  leehld
 * @package LearnPress/Classes
 * @version 2.0.8
 */

// Prevent loading this file directly
defined( 'ABSPATH' ) || exit;

if ( ! class_exists( 'RWMB_Yes_No_Field' ) ) {
	class RWMB_Yes_No_Field extends RWMB_Field {
		/**
		 * Get field HTML
		 *
		 * @param string $html
		 * @param mixed  $meta
		 * @param mixed  $field
		 *
		 * @return string
		 */
		static function html( $html, $meta, $field = '' ) {
			if ( is_array( $field ) && isset( $field['field_name'] ) ) {
			} else {
				$field = $meta;
				$meta  = $html;
			}

			$value = empty( $meta ) ? $field['std'] : $meta;
			$true  = ! learn_press_is_negative_value( $value );
			$yes   = 'yes';
			$no    = 'no';

			if ( isset( $field['compare'] ) ) {
				if ( in_array( $field['compare'], array( '<>', '!=' ) ) ) {
					$true = ! $true;
					$yes  = 'no';
					$no   = 'yes';
				}
			}

			return sprintf(
				'<input type="hidden" name="%s" value="%s">
				<input type="checkbox" class="rwmb-yes-no" name="%s" id="%s" value="%s" %s>',
				$field['field_name'],
				$no,
				$field['field_name'],
				$field['id'],
				$yes,
				checked( $true, true, false )
			);
		}

		/**
		 * Set the value of checkbox to 1 or 0 instead of 'checked' and empty string
		 * This prevents using default value once the checkbox has been unchecked
		 *
		 * @link https://github.com/rilwis/meta-box/issues/6
		 *
		 * @param mixed $new
		 * @param mixed $old
		 * @param int   $post_id
		 * @param array $field
		 *
		 * @return int
		 */
		static function value( $new, $old, $post_id, $field ) {
			return ! empty( $new ) && $new == 'yes' ? 'yes' : 'no';
		}

		static function begin_html( $html, $meta, $field = '' ) {
			if ( is_array( $field ) && isset( $field['field_name'] ) ) {
				return RW_Meta_Box::begin_html( $html, $meta, $field );
			} else {
				return RWMB_Field::begin_html( $html, $meta );
			}

		}
	}
}

Zerion Mini Shell 1.0