PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
vendor
/
usof
/
templates
/
fields
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Theme Options Field: Color * * Simple color picker * * @param $field ['title'] string Field title * @param $field ['description'] string Field title * @param $field ['text'] string Field additional text * * @var $name string Field name * @var $id string Field ID * @var $field array Field options * * @var $value string Current value */ if ( preg_match( '~^\#([\da-f])([\da-f])([\da-f])$~', $value, $matches ) ) { $value = '#' . $matches[1] . $matches[1] . $matches[2] . $matches[2] . $matches[3] . $matches[3]; } $palette = get_option( 'usof_color_palette_' . US_THEMENAME ); if ( ! is_array( $palette ) ) { $palette = array(); } $gradient = strstr( $value, 'linear-gradient' ) ? ' with_gradient' : ''; $output = '<div class="usof-color' . $gradient . '">'; $output .= '<div class="usof-color-preview" style="background: ' . $value . '"></div>'; $output .= '<input class="usof-color-value" type="text" name="' . $name . '" value="' . esc_attr( $value ) . '" />'; $output .= '<div class="usof-color-clear" title="' . us_translate( 'Clear' ) . '"></div>'; $output .= '<div class="usof_colpick_wrap">'; $output .= '<div class="usof_colpick_palette">'; // Fill palette with default colors if ( empty( $palette ) ) { global $usof_options; $options = $usof_options; $predefined_colors = array( $options['color_content_primary'], $options['color_content_secondary'], $options['color_content_heading'], $options['color_content_text'], $options['color_content_faded'], $options['color_content_border'], $options['color_content_bg_alt'], $options['color_content_bg'], ); update_option( 'usof_color_palette_' . US_THEMENAME, $predefined_colors ); } foreach ( $palette as $color ) { $output .= '<div class="usof_colpick_palette_value"><span style="background:' . $color . '" title="' . esc_attr( $color ) . '"></span><div class="usof_colpick_palette_delete" title="' . us_translate( 'Delete' ) . '"></div></div>'; } $output .= '<div class="usof_colpick_palette_add" title="' . __( 'Add the current color to the palette', 'us' ) . '"></div>'; $output .= '</div></div></div>'; if ( isset( $field['text'] ) AND ! empty( $field['text'] ) ) { $output .= '<div class="usof-color-text">' . $field['text'] . '</div>'; } echo $output;
[+]
..
[-] link.php
[edit]
[-] message.php
[edit]
[-] slider.php
[edit]
[-] check_table.php
[edit]
[-] radio.php
[edit]
[-] reset.php
[edit]
[-] .fields.php
[edit]
[-] select.php
[edit]
[-] backup.php
[edit]
[-] text.php
[edit]
[-] html.php
[edit]
[-] imgradio.php
[edit]
[-] transfer.php
[edit]
[-] font.php
[edit]
[-] icon.php
[edit]
[-] group_param.php
[edit]
[-] heading.php
[edit]
[-] css.php
[edit]
[-] color.php
[edit]
[-] switch.php
[edit]
[-] grid_builder.php
[edit]
[-] design_options.php
[edit]
[-] grid_layout_select.php
[edit]
[-] textarea.php
[edit]
[-] style_scheme.php
[edit]
[-] checkboxes.php
[edit]
[-] upload.php
[edit]