# bit-form/1.2/includes/Admin/Form/Template/TemplateBase.php

Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator &amp; Custom Form Builder, version 1.2. 47 lines.

- Page: https://pluginprobe.com/plugins/bit-form/1.2/code/includes/Admin/Form/Template/TemplateBase.php
- Raw: https://pluginprobe.com/plugins/bit-form/1.2/raw/includes/Admin/Form/Template/TemplateBase.php
- Modified: 2020-09-05T12:07:00+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/bit-form/1.2/code/includes/Admin/Form/Template/TemplateBase.php#L10-L20`.

```php
<?php

namespace BitCode\BitForm\Admin\Form\Template;

class TemplateBase
{
    protected $title;
    protected $description;
    protected $status;
    protected $thumbnail;
    protected $category;
    public function getTitle()
    {
        return $this->title;
    }

    public function getDescription()
    {
        return $this->description;
    }

    public function getStatus()
    {
        return $this->status;
    }

    public function getThumbnail()
    {
        return $this->thumbnail;
    }

    public function getCategory()
    {
        return $this->category;
    }

    public function getLayout($newFormId)
    {
        return $this->layout($newFormId);
    }

    public function getFields($newFormId)
    {
        return $this->fields($newFormId);
    }
}

```
