PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
plugins
/
the-grid
/
includes
/
metabox
/
fields
<?php // Prevent loading this file directly defined( 'ABSPATH' ) || exit; if ( ! class_exists( 'TOMB_Select_Field' ) ) { class TOMB_Select_Field extends TOMB_Fields { /** * Get field HTML */ static function html($meta, $field) { // Check for std parameter if(!$meta && array_key_exists('std', $field)){ $meta = $field['std']; } $placeholder = (isset($field['placeholder']) && !empty($field['placeholder'])) ? $field['placeholder'] : null; $clear = (isset($field['clear']) && !empty($field['clear'])) ? $field['clear'] : null; $width = (isset($field['width']) && !empty($field['width'])) ? $field['width'] : 180; $width = ' style="width:'.$field['width'].'px"'; $output = '<div class="tomb-select-holder" data-noresult="'.__('No results found', 'tomb-text-domain').'" data-clear="'.$clear.'"'.$width.'>'; $output .= '<div class="tomb-select-fake">'; $output .= '<span class="tomb-select-value"></span>'; $output .= ($placeholder) ? '<span class="tomb-select-placeholder">'.$placeholder.'</span>' : null; $output .= ($clear) ? '<span class="tomb-select-clear">×</span>' : null; $output .= '<span class="tomb-select-arrow"><i></i></span>'; $output .= '</div>'; $output .= '<select class="tomb-select" name="'.$field['id'].'" data-clear="'.$clear.'">'; if (isset($field['options']) && !empty($field['options'])) { $output .= ($clear) ? '<option></option>' : null; foreach ( $field['options'] as $value => $label ) { $disabled = strpos($value, 'disabled') ? 'disabled="disabled"' : false; $output .= '<option value="'.$value.'" '.selected( $value, $meta, false ).' '. $disabled .'>'.$label.'</option>'; } } $output .= '</select>'; $output .= '</div>'; return $output; } /** * Normalize parameters for field * * @param array $field * @return array */ static function normalize_field( $field ) { $field = wp_parse_args( $field, array( 'options' => array(), ) ); return $field; } /** * Sanitize select * * @param mixed $new * @param mixed $old * @param int $post_id * @param array $field * * @return string */ static function value( $new, $old, $post_id, $field ){ return sanitize_text_field( $new ); } } }
[+]
..
[-] editor.php
[edit]
[-] select.php
[edit]
[-] section_start.php
[edit]
[-] url.php
[edit]
[-] code.php
[edit]
[-] checkbox_list.php
[edit]
[-] image.php
[edit]
[-] multiselect.php
[edit]
[-] break.php
[edit]
[-] number.php
[edit]
[-] gallery.php
[edit]
[-] image_id.php
[edit]
[-] slider.php
[edit]
[-] info_box.php
[edit]
[-] text.php
[edit]
[-] checkbox.php
[edit]
[-] color.php
[edit]
[-] section_end.php
[edit]
[-] title.php
[edit]
[-] hidden.php
[edit]
[-] upload.php
[edit]
[-] email.php
[edit]
[-] radio.php
[edit]
[-] textarea.php
[edit]
[-] custom.php
[edit]
[-] button.php
[edit]
[-] image_select.php
[edit]