PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 3.3.1
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v3.3.1
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
← All changes | includes/Admin/Form/Template/TemplateBase.php +16 -8 2.03.3.1 View file →
@@ -1,9 +1,10 @@
1 1 <?php
2 2
3 3 namespace BitCode\BitForm\Admin\Form\Template;
4 4
5 -class TemplateBase {
5 +class TemplateBase
6 +{
6 7 protected $title;
7 8 protected $description;
8 9 protected $status;
9 10 protected $thumbnail;
@@ -8,32 +9,39 @@
8 9 protected $status;
9 10 protected $thumbnail;
10 11 protected $category;
11 12
12 - public function getTitle() {
13 + public function getTitle()
14 + {
13 15 return $this->title;
14 16 }
15 17
16 - public function getDescription() {
18 + public function getDescription()
19 + {
17 20 return $this->description;
18 21 }
19 22
20 - public function getStatus() {
23 + public function getStatus()
24 + {
21 25 return $this->status;
22 26 }
23 27
24 - public function getThumbnail() {
28 + public function getThumbnail()
29 + {
25 30 return $this->thumbnail;
26 31 }
27 32
28 - public function getCategory() {
33 + public function getCategory()
34 + {
29 35 return $this->category;
30 36 }
31 37
32 - public function getLayout($newFormId) {
38 + public function getLayout($newFormId)
39 + {
33 40 return $this->layout($newFormId);
34 41 }
35 42
36 - public function getFields($newFormId) {
43 + public function getFields($newFormId)
44 + {
37 45 return $this->fields($newFormId);
38 46 }
39 47 }