Guest User

Untitled

a guest
Jul 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.44 KB | None | 0 0
  1. $dashboard = array(
  2. 5 => array(
  3. 'title' => 'Dashboard',
  4. 'description' => 'A high-level overview of your website\'s usage — traffic levels, most popular content and top sources leading new traffic to your site.'
  5. ),
  6. 6 => array(
  7. 'title' => 'Summary',
  8. 'description' => 'A historical summary of traffic to your site on a daily, weekly or monthly basis. View the unique visits, return visits and page view counts for your site over any date range.'
  9. ),
  10. 29 => array(
  11. 'title' => 'FeedBurner Stats',
  12. 'description' => 'Track readership of your RSS feeds with FeedBurner, and view your latest circulation, reach and feed item hits in W3Counter as well'
  13. )
  14. );
  15.  
  16. $live = array(
  17. 7 => array(
  18. 'title' => 'Recent Visitors',
  19. 'description' => 'A real-time spy for your website — see the recent visitors to your site, their IP address and computer information, and follow their path through your site.'
  20. ),
  21. 8 => array(
  22. 'title' => 'Recent Referrers',
  23. 'description' => 'See what sites are sending you traffic today with a list of the most recent referring URLs.'
  24. ),
  25. 9 => array(
  26. 'title' => 'Recent Searches',
  27. 'description' => 'Recent searches shows exactly what keywords people are searching for when they find your site.'
  28. ),
  29. 10 => array(
  30. 'title' => 'Twitter Mentions',
  31. 'description' => 'Find out who\'s talking about you on Twitter. We automatically monitor Twitter for mentions of your website URL in tweets around the world.'
  32. )
  33. );
  34.  
  35. $visitors = array(
  36. 11 => array(
  37. 'title' => 'Locations Map',
  38. 'description' => 'Discover where your website visitors are located with this top countries report and Google Maps of recent visitors\' locations.'
  39. ),
  40. 12 => array(
  41. 'title' => 'Time Zones',
  42. 'description' => 'Make better decisions about when to publish new content and discover when your site is more active with this map showing the time zone distribution of your traffic.'
  43. ),
  44. 13 => array(
  45. 'title' => 'Languages',
  46. 'description' => ''
  47. ),
  48. 14 => array(
  49. 'title' => 'Web Browsers',
  50. 'description' => ''
  51. ),
  52. 15 => array(
  53. 'title' => 'Operating Systems',
  54. 'description' => ''
  55. ),
  56. 16 => array(
  57. 'title' => 'Screen Resolutions',
  58. 'description' => ''
  59. ),
  60. 17 => array(
  61. 'title' => 'Color Depths',
  62. 'description' => ''
  63. ),
  64. 18 => array(
  65. 'title' => 'JavaScript Support',
  66. 'description' => ''
  67. )
  68. );
  69.  
  70. $content = array(
  71. 19 => array(
  72. 'title' => 'Top Pages',
  73. 'description' => ''
  74. ),
  75. 20 => array(
  76. 'title' => 'Entrance Pages',
  77. 'description' => ''
  78. ),
  79. 21 => array(
  80. 'title' => 'Exit Pages',
  81. 'description' => ''
  82. )
  83. );
  84.  
  85. $navigation = array(
  86. 22 => array(
  87. 'title' => 'Click Overlay',
  88. 'description' => ''
  89. ),
  90. 23 => array(
  91. 'title' => 'Click List',
  92. 'description' => ''
  93. ),
  94. 24 => array(
  95. 'title' => 'Visit Length',
  96. 'description' => ''
  97. ),
  98. 25 => array(
  99. 'title' => 'Visit Depth',
  100. 'description' => ''
  101. )
  102. );
  103.  
  104. $sources = array(
  105. 26 => array(
  106. 'title' => 'Top Referrers',
  107. 'description' => ''
  108. ),
  109. 27 => array(
  110. 'title' => 'Top Search Engines',
  111. 'description' => ''
  112. ),
  113. 28 => array(
  114. 'title' => 'Top Searches',
  115. 'descriptoin' => ''
  116. )
  117. );
  118.  
  119. $features = array(
  120. 'Dashboard: Your High Level Overview' => $dashboard,
  121. 'Live View: The Latest Activity On Your Website' => $live,
  122. 'Visitors: Get to Know Your Audience' => $visitors,
  123. 'Content: What Engages Your Visitors' => $content,
  124. 'Navigation: See How Visitors Move Through Your Site' => $navigation,
  125. 'Sources: How Visitors Find Your Site' => $sources
  126. );
Add Comment
Please, Sign In to add comment