oa-styles-well-box.tpl.php in Open Atrium Styles 7.2
This template handles the layout of oa_well.
2 theme calls to oa-styles-well-box.tpl.php
- theme_oa_styles_well_style_render_pane in plugins/
styles/ well/ oa_styles_well.inc - Render callback for a single pane.
- theme_oa_styles_well_style_render_region in plugins/
styles/ well/ oa_styles_well.inc - Render callback for a single region.
File
plugins/styles/well/oa-styles-well-box.tpl.phpView source
<?php
/**
* @file
* This template handles the layout of oa_well.
*/
?>
<div class="well style-region <?php
if (isset($settings['well_modifier'])) {
print $settings['well_modifier'];
}
?>">
<?php
print $content;
?>
</div>