Conditions | 4 |
Paths | 4 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
28 | public function get_text() { |
||
29 | $text = $this->mem->get('banner'); |
||
30 | |||
31 | if ( $text === false ) { |
||
|
|||
32 | $q = $this->db->query("SELECT value FROM editorial WHERE item = 'banner'")->first(); |
||
33 | |||
34 | if ($q) { |
||
35 | $text = $q['value']; |
||
36 | if ( trim($text) == '' ) { |
||
37 | $text = NULL; |
||
38 | } |
||
39 | $this->mem->set('banner', $text, 86400); |
||
40 | } |
||
41 | } |
||
42 | |||
43 | return $text; |
||
44 | } |
||
63 |