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

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

- Page: https://pluginprobe.com/plugins/bit-form/2.9.1/code/includes/Admin/Form/Template/TemplateBase.php
- Raw: https://pluginprobe.com/plugins/bit-form/2.9.1/raw/includes/Admin/Form/Template/TemplateBase.php
- Modified: 2023-07-16T07:55: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.9.1/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);
  }
}

```
