-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrm_toc.php
37 lines (32 loc) · 1.01 KB
/
frm_toc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
$expires = 3600;
header("Pragma: public");
header("Cache-Control: maxage=".$expires);
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$expires) . ' GMT');
require ('common/auth.php');
// $arrJS[] = "../common/jquery/jquery.simple.tree.js";
$arrJS[] = "../common/jquery/sidebar-menu/dist/sidebar-menu.js";
$arrCSS[] = "../common/jquery/sidebar-menu/dist/sidebar-menu.css";
ob_start();
?>
<script>
var simpleTreeCollection;
$(document).ready(function(){
// $('div.menu').css({width:'250px'}).accordion();
$.sidebarMenu($('.sidebar-menu'));
$('span.fa-bars').click(function(){
$('#sidebar').toggle('slide');
});
});
</script>
<?php
$strHead = ob_get_clean();
// if(!($_GET['entID']||$_GET['pagID'])) require ('includes/inc-frame_top.php');
?>
<?php
if (!$_GET['entID']) require ("../common/izintra/inc_toc.php");
//if (!$_GET['pagID']) require ("includes/inc_entity.php");
?>
<?php
// if(!($_GET['entID']||$_GET['pagID'])) require ('includes/inc-frame_bottom.php');
?>