1

I have a view page below which automatically detects the current user timezone and after detecting timezone , i am sending it to another page for setting the timezone in session for further use.

here is the file(autodetect.php)

<!DOCTYPE html>
<html>
<head> 
    <title>   
    <script type="text/javascript" src="....jquery.js' ?>"></script>  
      <script type="text/javascript"       src='..autodetect/Jsfile/detect1.0.4.min.js'>   
</script> 
 <script>  
 $(function() {   

   <?php if (!isset($_SESSION['tz'])) { ?>
        var timezone = jstz.determine(); 
        $.ajax({
            type: "POST",
            url:"<?php echo base_url('timezone.php'); ?>",
            data: 'timezone='+timezone.name(),
            success: function(data){ 
            }
        }); 
        <?php } ?>   
    }); 
 </script>   
 </head> 
 <body>  
 </body>

,in order to perform this functionality i have to load/read this page(autodetect.php) first,

so my question is "how can i run this page(i.e autodetect.php) before loading any view page or calling any view page via controller?

eg. i have to load the signup page , but before then this i need to read the above php file in order to detect the current timezone of user.

beginner
  • 665
  • 6
  • 14
  • 31
  • Hi All! If my above question is not clear, please write comment for me, so that i will try to explain you in a different way. Thanks – beginner Sep 09 '13 at 22:37
  • Apparently, this has been answered here: http://stackoverflow.com/questions/13/determining-a-web-users-time-zone – rfpdl Sep 10 '13 at 00:34
  • @Ponce That is not similar with my problem. I am asking a diffrent thing – beginner Sep 12 '13 at 06:19

1 Answers1

0

To load any script before loading any view page, you can use Hooks:

Hooks - Extending the Framework Core

And choose the appropriate hook point for your need.