Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
carousel-slider
/
includes
/
Supports
/
FormFields
:
Color.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace CarouselSlider\Supports\FormFields; /** * Color class */ class Color extends BaseField { /** * Render field html * * @inheritDoc */ public function render(): string { $input_attributes = (array) $this->get_setting( 'input_attributes' ); $this->set_setting( 'type', 'text' ); $this->set_setting( 'field_class', 'color-picker' ); $this->set_setting( 'input_attributes', array_merge( $input_attributes, [ 'data-alpha-enabled' => 'true', 'data-default-color' => $this->get_setting( 'default' ), ] ) ); return '<br><input ' . $this->build_attributes() . ' />'; } }