twitter_bootstrap_modal_modal.tpl.php in Twitter Bootstrap Modal 7
Same filename and directory in other branches
Template file for the theming the modal box.
Available custom variables:
- $site_name
- $module_path
- $replacement_string
1 theme call to twitter_bootstrap_modal_modal.tpl.php
- twitter_bootstrap_modal_init in ./
twitter_bootstrap_modal.module - Implements hook_init().
File
twitter_bootstrap_modal_modal.tpl.phpView source
<?php
/**
* @file
* Template file for the theming the modal box.
*
* Available custom variables:
* - $site_name
* - $module_path
* - $replacement_string
*
*/
?>
<div id="jquery_ajax_load<?php
print $replacement_string;
?>" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">';
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal_title"><?php
print $site_name;
?></h3>
</div>
<div class="modal-body">
<span class="text-warning"><?php
t('Loading');
?>... </span>
<img src="<?php
print $module_path;
?>/twitter_bootstrap_modal_loading.gif">
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true"><?php
t('Close');
?></button>
</div>
</div>