| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function render() |
||
| 17 | { |
||
| 18 | if (empty($this->title)) { |
||
| 19 | return '<hr>'; |
||
| 20 | } |
||
| 21 | |||
| 22 | return <<<HTML |
||
| 23 | <div style="height: 20px; border-bottom: 1px solid #eee; text-align: center;margin-top: 20px;margin-bottom: 20px;"> |
||
| 24 | <span style="font-size: 18px; background-color: #ffffff; padding: 0 10px;"> |
||
| 25 | {$this->title} |
||
| 26 | </span> |
||
| 27 | </div> |
||
| 28 | HTML; |
||
| 29 | } |
||
| 30 | } |
||
| 31 |