7, 'maxlength' => 7, 'pattern' => '^#+([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$', 'js_options' => array(), ) ); $field['js_options'] = wp_parse_args( $field['js_options'], array( 'defaultColor' => false, 'hide' => true, 'palettes' => true, ) ); $field = parent::normalize( $field ); return $field; } /** * Get the attributes for a field * * @param array $field * @param mixed $value * @return array */ static function get_attributes( $field, $value = null ) { $attributes = parent::get_attributes( $field, $value ); $attributes = wp_parse_args( $attributes, array( 'data-options' => wp_json_encode( $field['js_options'] ), ) ); $attributes['type'] = 'text'; return $attributes; } /** * Format a single value for the helper functions. * * @param array $field Field parameter * @param string $value The value * @return string */ static function format_single_value( $field, $value ) { return sprintf( "", $value ); } }