reorganisation des dossiers
[mtweb] / mw / out / default / views / redirect_javascript.php
1 <div class="redirect_message">
2   <div>
3     <?php echo $this->out["redirect"]["message"]; ?>
4     <br /><br /><br />
5     ---------------------------------------------------<br />
6     Vous allez &ecirc;tre redirig&eacute; vers <a href="<?php echo $this->out["redirect"]["url"]; ?>"><?php echo $this->out["redirect"]["url"]; ?></a>
7     dans <?php echo $this->out["redirect"]["wait"]; ?> secondes.<br />
8     (cliquez sur le lien si la redirection ne se fait pas)
9   </div>
10 </div>
11 <script type="text/javascript">
12 //<![CDATA[
13   setTimeout("js_redirect('<?php echo $this->out["redirect"]["url"]; ?>')", 1000 * <?php echo $this->out["redirect"]["wait"]; ?>);
14   function js_redirect(redirect_url) { document.location = redirect_url; }
15 //]]>
16 </script>