oa-tour-dropdown.tpl.php in Open Atrium Tours 7.2
Provides view for tour dropown
$tours - Rendered list for available site tours
1 theme call to oa-tour-dropdown.tpl.php
- oa_tour_pane_render in plugins/
content_types/ oa_tour_custom_pane.inc - Renders the widget.
File
templates/oa-tour-dropdown.tpl.phpView source
<?php
/**
* @file
* Provides view for tour dropown
*
* $tours - Rendered list for available site tours
*/
if ($tours) {
?>
<ul class="oa-tours">
<li class="dropdown <?php
print $direction;
?> <?php
print $alignment;
?> btn-group">
<a class="dropdown-toggle btn <?php
print $oa_toolbar_btn_class;
?>" id="tours-dropdown" data-toggle="dropdown" href="#" title="<?php
print $title;
?>">
<i class="<?php
print $icon_class;
?>"></i><span class="element-invisible"><?php
print t('Site Tours');
?></span>
</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="space-dropdown">
<li class="dropdown-column">
<?php
print $tours;
?>
</li>
</ul>
</li>
</ul>
<?php
}