File: /home/slyfwmm/foar/wp-content/themes/flexfit/framework/functions/meta-box/inc/fields/select.php
<?php
// Prevent loading this file directly - Busted!
if( ! class_exists('WP') )
{
header( 'Status: 403 Forbidden' );
header( 'HTTP/1.1 403 Forbidden' );
exit;
}
if ( ! class_exists( 'RWMB_Select_Field' ) )
{
class RWMB_Select_Field
{
/**
* Enqueue scripts and styles
*
* @return void
*/
static function admin_enqueue_scripts( )
{
wp_enqueue_style( 'rwmb-select', RWMB_CSS_URL.'select.css', RWMB_VER );
}
/**
* Get field HTML
*
* @param string $html
* @param mixed $meta
* @param array $field
*
* @return string
*/
static function html( $html, $meta, $field )
{
if ( ! is_array( $meta ) )
$meta = (array) $meta;
$std = isset( $field['disabled'] ) ? $field['disabled'] : false;
$disabled = disabled( $std, true, false );
$id = " id='{$field['id']}'";
$name = " name='{$field['field_name']}'";
$name .= $field['multiple'] ? " multiple='multiple'" : "" ;
$html = "<select class='rwmb-select'{$name}{$id}{$disabled}>";
foreach ( $field['options'] as $key => $value )
{
$selected = selected( in_array( $key, $meta ), true, false );
$html .= "<option value='{$key}'{$selected}>{$value}</option>";
}
$html .= "</select>";
return $html;
}
}
}