| 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 |
|
| 13 |
public function getTitle() |
| 14 |
{ |
| 15 |
return $this->title; |
| 16 |
} |
| 17 |
|
| 18 |
public function getDescription() |
| 19 |
{ |
| 20 |
return $this->description; |
| 21 |
} |
| 22 |
|
| 23 |
public function getStatus() |
| 24 |
{ |
| 25 |
return $this->status; |
| 26 |
} |
| 27 |
|
| 28 |
public function getThumbnail() |
| 29 |
{ |
| 30 |
return $this->thumbnail; |
| 31 |
} |
| 32 |
|
| 33 |
public function getCategory() |
| 34 |
{ |
| 35 |
return $this->category; |
| 36 |
} |
| 37 |
|
| 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 |
} |
| 47 |
} |
| 48 |
|