extlink-extra-leaving.tpl.example.php in External Links Extra 7        
                          
                  
                        
  
  
  
  
File
  extlink-extra-leaving.tpl.example.php
  
    View source  
  <?php
$site_name = theme_get_setting('toggle_name') ? filter_xss_admin(variable_get('site_name', 'Drupal')) : '';
?>
<div class="extlink-extra-leaving">
<?php
if (!empty($alert_text)) {
  ?>
  <?php
  print $alert_text;
}
else {
  ?>
  <h2>You are leaving the <?php
  $site_name;
  ?> website</h2>
  <p>You are being directed to a third-party website:</p>
  <p><strong><?php
  print $external_url;
  ?></strong></p>
  <p>This link is provided for your convenience. Please note that this third-party website is not controlled by <?php
  $site_name;
  ?> or subject to our privacy policy.</p>
  <p>Thank you for visiting our site. We hope your visit was informative and enjoyable.</p>
  <div class="extlink-extra-actions">
    <div class="extlink-extra-back-action"><a title="Cancel" href="<?php
  print $back_url;
  ?>">Cancel</a></div>
    <div class="extlink-extra-go-action"><a class="ext-override" title="Go to link" href="<?php
  print $external_url;
  ?>">Go to link</a></div>
  </div>
  <br/><br/>
  <?php
  print $timer;
}
?>
</div>