menustring.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. $menuString = ".|Import||||
  3. ..|Table Config|../tableconfig2.php|||content
  4. ..|Table Log|../tablelog.php|||content
  5. .|Report||||content
  6. ..|Report Designer|../report_designer.php|||content
  7. ..|Report|../report2.php|||content
  8. .|User||||
  9. ..|User|../user.php|||content
  10. ..|User Group|../user_group.php|||content
  11. ..|User Rights|../user_right.php|||content
  12. ..|User Report|../user_report.php|||content
  13. ..|Right|../right.php|||content
  14. ..|Group|../group.php|||content
  15. ..|Group Rights|../group_right.php|||content
  16. .|Language||||
  17. ..|Language|../language2.php|||content
  18. ..|Dictionary|../dictionary2.php|||content
  19. .|Change Password|../chpass.php|||content
  20. .|Log History|../qb_changelog.php|||content
  21. .|Online User|../online_user.php|||content
  22. .|Setting|../qb_setting.php|||content
  23. .|Logout|../logout.php|||content";
  24. // SET m = array ( User.User => ..|User|../user.php|||content );
  25. $p = explode("\n", $menuString);
  26. foreach ($p as $k => $v) {
  27. $p2 = explode("|", $v);
  28. $l[strlen($p2[0])-1] = $p2[1];
  29. $p3 = '';
  30. for ($i=0;$i<strlen($p2[0]);$i++) {
  31. $p3 .= $l[$i].'.';
  32. }
  33. $p3 = substr($p3,0,-1);
  34. $firstPipe = strpos($v, '|');
  35. $secondPipe = strpos($v, '|', $firstPipe+1);
  36. #echo $firstPipe." ".$secondPipe."<br>\n";
  37. $a = substr($v, 0, $firstPipe+1);
  38. $b = substr($v, $firstPipe+1, ($secondPipe-$firstPipe)-1);
  39. $c = substr($v, $secondPipe);
  40. $m[$p3] = $a.__($p3,$b,__FILE__).$c;
  41. #$m[$p3] = $v;
  42. }
  43. #print_r($m);
  44. #exit;
  45. $userId = $_SESSION['userid'];
  46. if (!$isSupervisor) {
  47. $userMenu = getUserMenu($userId);
  48. $where = str_replace(",", "','", $userMenu);
  49. $rs = $adodb->Execute("SELECT DISTINCT(module) as module FROM qb_right ".
  50. " WHERE id IN ('".$where."')");
  51. if (!$rs->EOF) {
  52. $arrModule = array();
  53. while (!$rs->EOF) {
  54. $mod = $rs->fields['module'];
  55. $p = explode(".", $mod);
  56. $p2 = '';
  57. for ($i=0,$j=count($p);$i<$j;$i++) {
  58. $p2 .= $p[$i].'.';
  59. $arrModule[trim(substr($p2,0,-1))] = 1;
  60. }
  61. $rs->MoveNext();
  62. }
  63. }
  64. $arrModule['Logout'] = 1;
  65. } else {
  66. $arrModule =& $m;
  67. }
  68. $menuString = '';
  69. foreach ($m as $k => $v) {
  70. $k = trim($k);
  71. if (isset($arrModule[$k])) $menuString .= $v."\n";
  72. }
  73. #$menuString .= $m['Logout']."\n";
  74. ?>