class-password.php
<?php
namespace HivePress\Fields;
use HivePress\Helpers as hp;
defined( 'ABSPATH' ) || exit;
class Password extends Text {
public static function init( $meta = [] ) {
$meta = hp\merge_arrays(
[
'label' => null,
'filterable' => false,
'sortable' => false,
],
$meta
);
parent::init( $meta );
}
public function __construct( $args = [] ) {
$args = hp\merge_arrays(
$args,
[
'max_length' => 64,
]
);
parent::__construct( $args );
}
protected function sanitize() {}
public function render() {
return '<input type="' . esc_attr( $this->display_type ) . '" name="' . esc_attr( $this->name ) . '" ' . hp\html_attributes( $this->attributes ) . '>';
}
}