PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 1.9
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v1.9
3.3.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 All 138 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 1.9, at includes/Admin/Form/Template/TemplateBase.php

47 lines 788 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 public function getTitle()
13 {
14 return $this->title;
15 }
16
17 public function getDescription()
18 {
19 return $this->description;
20 }
21
22 public function getStatus()
23 {
24 return $this->status;
25 }
26
27 public function getThumbnail()
28 {
29 return $this->thumbnail;
30 }
31
32 public function getCategory()
33 {
34 return $this->category;
35 }
36
37 public function getLayout($newFormId)
38 {
39 return $this->layout($newFormId);
40 }
41
42 public function getFields($newFormId)
43 {
44 return $this->fields($newFormId);
45 }
46 }
47