PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
custom-twitter-feeds
/
inc
/
Builder
/
Controls
<?php /** * Customizer Builder * Color Picker Field Control * * @since 2.0 */ namespace TwitterFeed\Builder\Controls; if(!defined('ABSPATH')) exit; class SB_Colorpicker_Control extends SB_Controls_Base{ /** * Get control type. * * Getting the Control Type * * @since 2.0 * @access public * * @return string */ public function get_type(){ return 'colorpicker'; } /** * Output Control * * * @since 2.0 * @access public * * @return HTML */ public function get_control_output($controlEditingTypeModel){ ?> <div class="sb-control-input-ctn ctf-fb-fs sb-control-colorpicker-ctn" :data-picker-style="control.pickerType ? control.pickerType : 'default'" @click.stop="showColorPickerPospup(control.id)" v-on-clickaway="hideColorPickerPospup"> <!--<ctf-colorpicker :color="<?php echo $controlEditingTypeModel ?>[control.id]" v-on:change="changeSettingValue(control.id,...arguments)" :control-id="control.id"></ctf-colorpicker>--> <input class="sb-control-input" placeholder="Select" type="text" v-model="<?php echo $controlEditingTypeModel ?>[control.id]"> <div class="sb-control-colorpicker-swatch" :style="'background:'+<?php echo $controlEditingTypeModel ?>[control.id]+';'"></div> <div class="sb-control-colorpicker-popup" v-show="customizerScreens.activeColorPicker == control.id"> <sketch-picker @input="updateColorValue(control.id)" v-model="<?php echo $controlEditingTypeModel ?>[control.id]" :value="<?php echo $controlEditingTypeModel ?>[control.id]" :preset-colors="['#fff','#000','#e92b2b','#ffc104','#31e92b','#2b4ee9','#a72be9','#e92b82']" ></sketch-picker> <button class="sb-control-action-button sb-colorpicker-reset-btn sb-btn ctf-fb-fs sb-btn-grey" @click.prevent.default="resetColor(control.id)"> <div v-html="svgIcons['update']"></div> <span>{{genericText.reset}}</span> </button> </div> <div class="sb-control-colorpicker-btn" v-if="control.pickerType == 'reset'">{{genericText.reset}}</div> </div> <?php } }
[-] SB_Customview_Control.php
[edit]
[-] SB_Toggle_Control.php
[edit]
[-] SB_Coloroverride_Control.php
[edit]
[-] SB_Select_Control.php
[edit]
[+]
..
[-] SB_Colorpicker_Control.php
[edit]
[-] SB_Heading_Control.php
[edit]
[-] SB_Switcher_Control.php
[edit]
[-] SB_Controls_Base.php
[edit]
[-] SB_Toggleset_Control.php
[edit]
[-] SB_Checkbox_Control.php
[edit]
[-] SB_Separator_Control.php
[edit]
[-] SB_Imagechooser_Control.php
[edit]
[-] SB_Checkboxlist_Control.php
[edit]
[-] SB_Checkboxsection_Control.php
[edit]
[-] SB_Togglebutton_Control.php
[edit]
[-] SB_Hidden_Control.php
[edit]
[-] SB_Notice_Control.php
[edit]
[-] SB_Number_Control.php
[edit]
[-] SB_Text_Control.php
[edit]
[-] SB_Datepicker_Control.php
[edit]
[-] SB_Textarea_Control.php
[edit]
[-] SB_Actionbutton_Control.php
[edit]