File "WyswigField.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping/vendor_prefixed/wpdesk/wp-forms/src/Field/WyswigField.php
File size: 366 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace FSVendor\WPDesk\Forms\Field;
class WyswigField extends BasicField
{
public function __construct()
{
parent::__construct();
$this->set_default_value('');
}
public function get_template_name()
{
return 'wyswig';
}
public function should_override_form_template()
{
return \true;
}
}