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