File: /home/slyfwmm/foar/wp-content/themes/flexfit/framework/functions/meta-box/inc/fields/password.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_Password_Field' ) )
{
class RWMB_Password_Field
{
/**
* Get field HTML
*
* @param string $html
* @param mixed $meta
* @param array $field
*
* @return string
*/
static function html( $html, $meta, $field )
{
$val = " value='{$meta}'";
$name = "name='{$field['field_name']}'";
$id = " id='{$field['id']}'";
$html .= "<input type='password' class='rwmb-password'{$name}{$id}{$val} size='30' />";
return $html;
}
}
}