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 +34 -33 1.43.3.1 View file →
@@ -3,44 +3,45 @@
3 3 namespace BitCode\BitForm\Admin\Form\Template;
4 4
5 5 class TemplateBase
6 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 - }
7 + protected $title;
8 + protected $description;
9 + protected $status;
10 + protected $thumbnail;
11 + protected $category;
16 12
17 - public function getDescription()
18 - {
19 - return $this->description;
20 - }
13 + public function getTitle()
14 + {
15 + return $this->title;
16 + }
21 17
22 - public function getStatus()
23 - {
24 - return $this->status;
25 - }
18 + public function getDescription()
19 + {
20 + return $this->description;
21 + }
26 22
27 - public function getThumbnail()
28 - {
29 - return $this->thumbnail;
30 - }
23 + public function getStatus()
24 + {
25 + return $this->status;
26 + }
31 27
32 - public function getCategory()
33 - {
34 - return $this->category;
35 - }
28 + public function getThumbnail()
29 + {
30 + return $this->thumbnail;
31 + }
36 32
37 - public function getLayout($newFormId)
38 - {
39 - return $this->layout($newFormId);
40 - }
33 + public function getCategory()
34 + {
35 + return $this->category;
36 + }
41 37
42 - public function getFields($newFormId)
43 - {
44 - return $this->fields($newFormId);
45 - }
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 + }
46 47 }