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

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

- Page: https://pluginprobe.com/plugins/bit-form/2.0/code/includes/Admin/Form/Template/TemplateBase.php
- Raw: https://pluginprobe.com/plugins/bit-form/2.0/raw/includes/Admin/Form/Template/TemplateBase.php
- Modified: 2023-02-28T14:03:48+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/2.0/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);
  }
}

```
