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

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

- Page: https://pluginprobe.com/plugins/weforms/1.2.2/code/includes/templates/class-template-blank.php
- Raw: https://pluginprobe.com/plugins/weforms/1.2.2/raw/includes/templates/class-template-blank.php
- Modified: 2017-11-19T03:26:14+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.2.2/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();
    }

}

```
