| Conditions | 3 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 13 |
| Ratio | 100 % |
| Tests | 4 |
| CRAP Score | 3.7085 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | 7 | public function getHtml() { |
|
| 46 | |||
| 47 | 7 | $data = $this->getSkinTemplate()->data; |
|
| 48 | |||
| 49 | 7 | if ( array_key_exists( 'sitenotice', $data ) && $data[ 'sitenotice' ] ) { |
|
| 50 | |||
| 51 | return $this->indent() . '<!-- sitenotice -->' . |
||
| 52 | $this->indent() . '<div id="siteNotice" class="siteNotice ' . $this->getClassString() . '" >' . $data[ 'sitenotice' ] . '</div>' |
||
| 53 | . "\n"; |
||
| 54 | } else { |
||
| 55 | 7 | return "\n"; |
|
| 56 | } |
||
| 57 | } |
||
| 58 | |||
| 60 |