Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public static function helpBlock($content) |
||
35 | { |
||
36 | if (!Setting::getBoolean('showHelpBlocks')) |
||
37 | return; |
||
38 | |||
39 | $output = CHtml::openTag('p', array('class'=>'form-help')); |
||
40 | $output .= TbHtml::icon(TbHtml::ICON_EXCLAMATION_SIGN); |
||
41 | $output .= $content; |
||
42 | $output .= CHtml::closeTag('p'); |
||
43 | |||
44 | return $output; |
||
45 | } |
||
46 | |||
47 | } |