field-multiple-values.php 1.85 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
<?php
// Prevent loading this file directly
defined( 'ABSPATH' ) || exit;

if ( ! class_exists( 'WCQD_METABOX_Field_Multiple_Values' ) )
{
	/**
	 * This class implements common methods used in fields which have multiple values
	 * like checkbox list, autocomplete, etc.
	 *
	 * The difference when handling actions for these fields are the way they get/set
	 * meta value. Briefly:
	 * - If field is cloneable, value is saved as a single entry in the database
	 * - Otherwise value is saved as multiple entries
	 */
	class WCQD_METABOX_Field_Multiple_Values extends WCQD_METABOX_Field
	{
		/**
		 * Normalize parameters for field
		 *
		 * @param array $field
		 *
		 * @return array
		 */
		static function normalize_field( $field )
		{
			$field['multiple']   = true;
			$field['field_name'] = $field['id'];
			if ( ! $field['clone'] )
				$field['field_name'] .= '[]';

			return $field;
		}

		/**
		 * Output the field value
		 * Display option name instead of option value
		 *
		 * @param  array    $field   Field parameters
		 * @param  array    $args    Additional arguments. Not used for these fields.
		 * @param  int|null $post_id Post ID. null for current post. Optional.
		 *
		 * @return mixed Field value
		 */
		static function the_value( $field, $args = array(), $post_id = null )
		{
			$value = self::get_value( $field, $args, $post_id );
			if ( ! $value )
				return '';

			$output = '<ul>';
			if ( $field['clone'] )
			{
				foreach ( $value as $subvalue )
				{
					$output .= '<li>';
					$output .= '<ul>';
					foreach ( $subvalue as $option )
					{
						$output .= '<li>' . $field['options'][$option] . '</li>';
					}
					$output .= '</ul>';
					$output .= '</li>';
				}
			}
			else
			{
				foreach ( $value as $option )
				{
					$output .= '<li>' . $field['options'][$option] . '</li>';
				}
			}
			$output .= '</ul>';

			return $output;
		}
	}
}