Advertisement
Guest User

Untitled

a guest
Jan 1st, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.97 KB | None | 0 0
  1. <?php
  2. /**
  3.  *  STOP! HAMMER TIME!
  4.  *
  5.  * ====> READ THIS !!!!!
  6.  *
  7.  * I really really, REALLY suggest you don't edit this file.
  8.  * Why? This is the "main header" file where I put changes for updates.
  9.  * And you don't want to have to manually go through and figure those out.
  10.  *
  11.  * That equals headache for you, and headache for me to figure out what went wrong.
  12.  *
  13.  * BUT BUT WAIT, you say... I want to include more javascript, css, etc...!
  14.  * Well - in your skin's header.tpl file, this file is included as:
  15.  *
  16.  * Template::Show('core_htmlhead.tpl');
  17.  *
  18.  * Just add your stuff under that line there. That way, it's in the proper
  19.  * spot, and this file stays intact for the system (and me) to be able to
  20.  * make clean updates whenever needed. Less bugs = happy users (and happy me)
  21.  *
  22.  * THANKS!
  23.  */
  24. ?>
  25. <script type="text/javascript">
  26. var baseurl = "<?php echo SITE_URL;?>";
  27. var geourl = "<?php echo GEONAME_URL; ?>";
  28. </script>
  29.  
  30. <link rel="stylesheet" media="all" type="text/css" href="<?php echo fileurl('lib/css/phpvms.css')?>" />
  31. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo Config::Get('PAGE_ENCODING');?>" />
  32.  
  33. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  34. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
  35. <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
  36. <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js');?>"></script>
  37. <script type="text/javascript" src="<?php echo fileurl('lib/js/phpvms.js');?>"></script>
  38. <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.dataTables.min.js');?>"></script>
  39. <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.dataTables.js');?>"></script>
  40. <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.js');?>"></script>
  41.  
  42.  
  43.  
  44. <?php
  45. echo $MODULE_HEAD_INC;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement