File: /home/salamatk/.trash/woodmart1/inc/admin/modules/options/controls/text-input/class-text-input.php
<?php
/**
* HTML text input control.
*
* @package xts
*/
namespace XTS\Admin\Modules\Options\Controls;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
use XTS\Admin\Modules\Options\Field;
/**
* Input type text field control.
*/
class Text_Input extends Field {
/**
* Displays the field control HTML.
*
* @since 1.0.0
*
* @return void.
*/
public function render_control() {
$classes = '';
$input_data = '';
$attributes = array(
'type' => 'text',
);
if ( ! empty( $this->args['attributes'] ) ) {
$attributes = array_merge( $attributes, $this->args['attributes'] );
}
if ( isset( $this->args['datepicker'] ) ) {
$classes .= 'date-picker-field';
}
if ( $attributes ) {
foreach ( $attributes as $key => $attribute ) {
$input_data .= ' ' . $key . '="' . $attribute . '"';
}
} else {
$input_data .= ' type="text"';
}
?>
<input class="<?php echo esc_attr( $classes ); ?>"<?php echo wp_kses( $input_data, true ); ?> placeholder="<?php echo esc_attr( $this->_get_placeholder() ); ?>" name="<?php echo esc_attr( $this->get_input_name() ); ?>" value="<?php echo esc_attr( $this->get_field_value() ); ?>">
<?php
}
/**
* Get input's placeholder text from arguments.
*
* @since 1.0.0
*/
private function _get_placeholder() {
return isset( $this->args['placeholder'] ) ? $this->args['placeholder'] : '';
}
}