core/Fields/Definitions/Text.php
<?php
namespace Kontentblocks\Fields\Definitions;
use Kontentblocks\Fields\Field;
use Kontentblocks\Customizer\CustomizerIntegration;
/**
* Simple text input field
* Additional args are:
* type - specific html5 input type e.g. number, email... .
*
*/
Class Text extends Field
{
// Defaults
public static $settings = array(
'type' => 'text'
);
/**
* When this data is retrieved
* @param $val
*
* @return string
*/
public function prepareFrontendValue($val)
{
return wp_kses_post($val);
}
/**
* @param $val
*
* @return mixed
*/
public function prepareFormValue($val)
{
return esc_attr($val);
}
}