custom-html.php 609 Bytes
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
<?php
// Prevent loading this file directly
defined( 'ABSPATH' ) || exit;

if ( ! class_exists( 'WCQD_METABOX_Custom_Html_Field' ) )
{
	class WCQD_METABOX_Custom_Html_Field extends WCQD_METABOX_Field
	{
		/**
		 * Get field HTML
		 *
		 * @param mixed $meta
		 * @param array $field
		 *
		 * @return string
		 */
		static function html( $meta, $field )
		{
			$html = ! empty( $field['std'] ) ? $field['std'] : '';
			if ( ! empty( $field['callback'] ) && is_callable( $field['callback'] ) )
			{
				$html = call_user_func_array( $field['callback'], array( $meta, $field ) );
			}
			return $html;
		}
	}
}