is*() methods now return boolean values;
[phpmyadmin.git] / calendar.php
bloba1fe61ff11b2e78252d1d9079a6ab004f6d275e5
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin
7 */
9 /**
12 require_once './libraries/common.inc.php';
13 require_once './libraries/header_http.inc.php';
14 $page_title = $strCalendar;
15 require './libraries/header_meta_style.inc.php';
16 $GLOBALS['js_include'][] = 'tbl_change.js';
17 require './libraries/header_scripts.inc.php';
19 <script type="text/javascript">
20 //<![CDATA[
21 var month_names = new Array("<?php echo implode('","', $month); ?>");
22 var day_names = new Array("<?php echo implode('","', $day_of_week); ?>");
23 var submit_text = "<?php echo $strGo . ' (' . $strTime . ')'; ?>";
24 //]]>
25 </script>
26 </head>
27 <body onload="initCalendar();">
28 <div id="calendar_data"></div>
29 <div id="clock_data"></div>
30 </body>
31 </html>