PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 2.0
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v2.0
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 2.0, at includes/Admin/Form/Template/TemplateBase.php

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