| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | private function getLayout(Template\Block $contents) : Template\Block { |
||
| 23 | |||
| 24 | $layout = self::get('Layouts/Form'); |
||
| 25 | |||
| 26 | # Set title |
||
| 27 | |||
| 28 | $layout->title = Language::get($this->title); |
||
| 29 | |||
| 30 | # Set messages |
||
| 31 | |||
| 32 | $layout->messages = Messages::block(); |
||
| 33 | |||
| 34 | # Set contents |
||
| 35 | |||
| 36 | $layout->contents = $contents; |
||
| 37 | |||
| 38 | # ------------------------ |
||
| 39 | |||
| 40 | return $layout; |
||
| 41 | } |
||
| 42 | |||
| 53 |