| 1 |
<?php |
| 2 |
|
| 3 |
/* * ********************************************************* |
| 4 |
* Jumbotron |
| 5 |
* ********************************************************* */ |
| 6 |
|
| 7 |
function osc_theme_jumbotron($params, $content = 'Label') { |
| 8 |
extract(shortcode_atts(array( |
| 9 |
'bgcolor' => '', |
| 10 |
'class' => '' |
| 11 |
), $params)); |
| 12 |
$out = ''; |
| 13 |
$content = str_replace('<br class="osc" />', '', $content); |
| 14 |
$content = str_replace('<br class="osc" />\n', '', $content); |
| 15 |
$style=$bgcolor!=''?' style="background:'.$bgcolor.';"':''; |
| 16 |
$out = '<div class="jumbotron ' . $class .EBS_CONTAINER_CLASS. '"'.$style.'>' . do_shortcode($content) . '</div>'; |
| 17 |
return $out; |
| 18 |
} |
| 19 |
|
| 20 |
ebs_backward_compatibility_callback('jumbotron', 'osc_theme_jumbotron'); |