Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3.0123 |
Changes | 0 |
1 | <?php |
||
46 | 1 | public function set_text($text) { |
|
47 | 1 | $q = $this->db->query("REPLACE INTO editorial set item = 'banner', value = :banner_text", |
|
48 | array( |
||
49 | 1 | ':banner_text' => $text |
|
50 | ) |
||
51 | ); |
||
52 | |||
53 | 1 | if ( $q->success() ) { |
|
54 | 1 | if ( trim($text) == '' ) { |
|
55 | 1 | $text = NULL; |
|
56 | } |
||
57 | 1 | $this->mem->set('banner', $text, 86400); |
|
58 | 1 | return true; |
|
59 | } |
||
60 | return false; |
||
61 | } |
||
63 |