File "Header.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping/vendor_prefixed/wpdesk/wp-forms/src/Field/Header.php
File size: 489 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FSVendor\WPDesk\Forms\Field;

class Header extends NoValueField
{
    public function __construct()
    {
        parent::__construct();
        $this->meta['header_size'] = '';
    }
    public function get_template_name()
    {
        return 'header';
    }
    public function should_override_form_template()
    {
        return \true;
    }
    public function set_header_size($value)
    {
        $this->meta['header_size'] = $value;
        return $this;
    }
}