panels-dashboard-block.tpl.php in Panels 7.3
Same filename and directory in other branches
1 theme call to panels-dashboard-block.tpl.php
- template_preprocess_panels_dashboard in includes/
callbacks.inc
File
templates/panels-dashboard-block.tpl.phpView source
<?php
/**
* @file
*/
?>
<div class="dashboard-block">
<h3 class="dashboard-title"><?php
print $block['title'];
?></h3>
<div class="dashboard-content <?php
print $block['class'];
?>">
<?php
print $block['content'];
?>
<?php
if (!empty($block['link'])) {
?>
<div class="links">
<?php
print $block['link'];
?>
</div>
<?php
}
?>
</div>
</div>