You are here

twitter_bootstrap_modal_modal.tpl.php in Twitter Bootstrap Modal 7

Same filename and directory in other branches
  1. 7.3 twitter_bootstrap_modal_modal.tpl.php

Template file for the theming the modal box.

Available custom variables:

  • $site_name
  • $module_path
  • $replacement_string

File

twitter_bootstrap_modal_modal.tpl.php
View 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>