# weforms/1.6.1/includes/templates/class-template-blank.php

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.6.1. 27 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.6.1/code/includes/templates/class-template-blank.php
- Raw: https://pluginprobe.com/plugins/weforms/1.6.1/raw/includes/templates/class-template-blank.php
- Modified: 2020-10-20T13:26:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/weforms/1.6.1/code/includes/templates/class-template-blank.php#L10-L20`.

```php
<?php

/**
 * Blank form template
 */
class WeForms_Template_Blank extends WeForms_Form_Template {

    public function __construct() {
        parent::__construct();

        $this->enabled        = true;
        $this->title          = __( 'Blank Form', 'weforms' );
        $this->description    = __( 'Start from a blank slate', 'weforms' );
        $this->image          = WEFORMS_ASSET_URI . '/images/form-template/contact.png';
        $this->category       = 'default';
    }

    /**
     * Get the form fields
     *
     * @return array
     */
    public function get_form_fields() {
        return __return_empty_array();
    }
}

```
