PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 2.9.1
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v2.9.1
V-3.3.0 3.2.2 3.2.1 3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 V3.0.3 V3.0.2 -3.0.1 V_3.0.0 1.1.1 1.1.8 1.2 1.3 1.4 1.4.18 1.5.2 1.9 2.0 2.10.0 2.10.1 2.10.2 All 137 releases
bit-form / includes / Admin / Form / Template / TemplateBase.php

TemplateBase.php in Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder 2.9.1, at includes/Admin/Form/Template/TemplateBase.php

48 lines 709 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace BitCode\BitForm\Admin\Form\Template;
4
5 class TemplateBase
6 {
7 protected $title;
8 protected $description;
9 protected $status;
10 protected $thumbnail;
11 protected $category;
12
13 public function getTitle()
14 {
15 return $this->title;
16 }
17
18 public function getDescription()
19 {
20 return $this->description;
21 }
22
23 public function getStatus()
24 {
25 return $this->status;
26 }
27
28 public function getThumbnail()
29 {
30 return $this->thumbnail;
31 }
32
33 public function getCategory()
34 {
35 return $this->category;
36 }
37
38 public function getLayout($newFormId)
39 {
40 return $this->layout($newFormId);
41 }
42
43 public function getFields($newFormId)
44 {
45 return $this->fields($newFormId);
46 }
47 }
48