Current File : /home/digitaw/www/wp-content/plugins/webp-converter-for-media/templates/components/fields/input.php
<?php
/**
 * Field displayed in plugin settings form.
 *
 * @var mixed[] $option Data of field.
 * @var string  $index  Index of field.
 *
 * @package Converter for Media
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<?php if ( $option['info'] ) : ?>
	<p><?php echo wp_kses_post( $option['info'] ); ?></p>
<?php endif; ?>
<div class="webpcInput">
	<input type="text"
		name="<?php echo esc_attr( $option['name'] ); ?>"
		value="<?php echo esc_attr( $option['value'] ); ?>"
		id="<?php echo esc_attr( $option['name'] ); ?>"
		placeholder="<?php echo esc_attr( $option['placeholder'] ?: '' ); ?>"
		class="webpcInput__field"
	>
</div>