Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //The main menu items
  2. $main_menu = array (
  3. array(
  4. "Name" => "dashboard",
  5. "Value" => "Dashboard",
  6. "URL" => config::$SITE_URL . "/",
  7. "PageName" => "main",
  8. "Icon" => "dashboard"
  9. ),
  10. array(
  11. "Name" => "analytics",
  12. "Value" => "Analytics",
  13. "URL" => config::$SITE_URL . "/analytics.php",
  14. "PageName" => "analytics",
  15. "Icon" => "bar-chart"
  16. ),
  17. array(
  18. "Name" => "request_art",
  19. "Value" => "Request Art",
  20. "URL" => config::$SITE_URL . "/request_art.php",
  21. "PageName" => "request_art",
  22. "Icon" => "pencil"
  23. ),
  24. array(
  25. "Name" => "sponsors",
  26. "Visibility" => "admin",
  27. "Value" => "Sponsors",
  28. "PageName" => "sponsors",
  29. "Icon" => "inbox",
  30. "Dropdown" => "true",
  31. "Values" => array(
  32. array(
  33. "Name" => "gameservers",
  34. "Value" => "Game Servers",
  35. "URL" => config::$SITE_URL . "/gameservers.php",
  36. "PageName" => "gameservers",
  37. "Icon" => "hdd"
  38. ),
  39. array(
  40. "Name" => "test2",
  41. "Value" => "test2",
  42. "URL" => config::$SITE_URL . "/test2.php",
  43. "PageName" => "test2",
  44. "Icon" => "picture"
  45. )
  46. )
  47. )
  48. ),
  49. array(
  50. "Name" => "admin",
  51. "Visibility" => "admin",
  52. "Value" => "Admin Zone",
  53. "URL" => config::$SITE_URL . "/admin.php",
  54. "PageName" => "admin",
  55. "Icon" => "lock"
  56. ),
  57. array(
  58. "Name" => "gfx_zone",
  59. "Visibility" => "gfx_artist",
  60. "Value" => "GFX Zone",
  61. "URL" => config::$SITE_URL . "/gfx_zone.php",
  62. "PageName" => "gfx_zone",
  63. "Icon" => "picture"
  64. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement