. * * http: *ie7-js.googlecode.com/svn/trunk/lib/IE7.js * http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js * HTML header */ echo doctype('xhtml11'); ?> <?php echo $this->config->item("program_title");?> lang->load('gvv'); $lang = $this->lang->line("gvv_language"); echo html_link(array('rel' => "icon", 'type' => "image/png", 'href' => base_url() . "favicon.png")); // CSS echo html_link(array('rel' => "stylesheet", 'type' => "text/css", 'href' => base_url() . 'assets/css/datatable_jui.css')); echo html_link(array('rel' => "stylesheet", 'type' => "text/css", 'href' => base_url() . 'assets/css/jquery.coolfieldset.css')); echo html_link(array('rel' => "stylesheet", 'type' => "text/css", 'href' => base_url() . 'assets/css/jquery-ui.css')); $href = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/" . jqueryui_theme() . "/jquery-ui.css"; echo html_link(array('rel' => "stylesheet", 'type' => "text/css", 'href' => $href)); echo html_link(array('rel' => "stylesheet", 'type' => "text/css", 'href' => base_url() . 'assets/css/fullcalendar.css')); echo html_link(array('rel' => "stylesheet", 'media' => "screen", 'title' => "Design", 'type' => "text/css", 'href' => css_url('styles'))); if (isset($new_layout)) { echo html_link(array('rel' => "stylesheet", 'type' => "text/css", 'href' => base_url() . 'assets/css/menu.css')); echo html_link(array('rel' => "stylesheet", 'type' => "text/css", 'href' => base_url() . 'assets/css/layout.css')); } else { echo html_link(array('rel' => "stylesheet", 'media' => "screen", 'type' => "text/css", 'href' => css_url('menu'))); echo html_link(array('rel' => "stylesheet", 'media' => "screen", 'type' => "text/css", 'href' => css_url('layout'))); } // Javascript echo html_script(array('type' => "text/javascript", 'src' => js_url('gvv'))); echo html_script(array('type' => "text/javascript", 'src' => js_url('moment.min'))); if (ENVIRONMENT == "production") { echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery.min'))); echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery-ui.min'))); } else { echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery'))); echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery-ui'))); } $lang = $CI->config->item('language'); if ($lang == "french") { echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery.ui.datepicker-fr'))); } elseif ($lang == "dutch") { echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery.ui.datepicker-nl'))); } echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery.coolfieldset'))); echo html_script(array('type' => "text/javascript", 'src' => js_url($lang . "_lang"))); if (ENVIRONMENT == "production") { echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery.dataTables.min'))); } else { echo html_script(array('type' => "text/javascript", 'src' => js_url('jquery.dataTables'))); } ?>