Carbon_Fields\Field\Color_Field::template PHP Method

template() public method

Underscore template of the field.
public template ( )
    public function template()
    {
        ?>
		<div class="carbon-color-row">
			<div class="input-with-button">
				<input id="{{{ id }}}" type="text" name="{{{ name }}}" value="{{ value }}" class="regular-text carbon-color" />
				<span class="pickcolor button icon-button hide-if-no-js"><?php 
        _e('Select a Color', 'carbon-fields');
        ?>
</span>
			</div>
			<div class="carbon-color-container hide-if-no-js"></div>
		</div>
		<?php 
    }