Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
57 | public function Value() |
||
58 | { |
||
59 | // Get raw value |
||
60 | $value = $this->dataValue(); |
||
61 | $fontSize = '2em'; |
||
62 | if (!$value) { |
||
63 | $value = 'Code not set yet - please save this record first'; |
||
64 | $fontSize = '1em'; |
||
65 | } |
||
66 | return DBHTMLText::create_field( |
||
67 | 'HTMLText', |
||
68 | '<pre style="margin-bottom:0; font-size: ' . $fontSize . ';">' . $value . '</pre>' |
||
69 | ); |
||
83 |