| 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 |
|