Page Time: 0.0364s

Memory: 2.7932 MB (Peak: 5.4717 MB)

Queries (8, time: 0.0185s, 50.8%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000112
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT user.*
    	
    	,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,2,4,5,7,8,10)) as positive_rating_count
    
    		, ((select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,2,4,5,7,8,10)) + like_count) as positive_rating_count_incl_likes
    
    	,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (14,11,12,13)) as negative_rating_count
    
    	,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (3,6,9)) as neutral_rating_count
    
    ,(select sum(count_received) from dark_postrating_count where user_id = user.user_id) as total_rating_count
    , rating.fb_percent, rating.fb_positive, xc_trade_preference.*
    FROM xf_user AS user
    
    LEFT JOIN xc_trade_user AS rating ON rating.user_id=user.user_id
    LEFT JOIN xc_trade_preference AS xc_trade_preference ON xc_trade_preference.pr_user_id=user.user_id
    
    WHERE user.user_id = ?
    Params: 30522
    Run Time: 0.001129
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYuserconstPRIMARYPRIMARY4const1 
    PRIMARYratingconstPRIMARYPRIMARY4const1 
    PRIMARYxc_trade_preferenceconstPRIMARYPRIMARY4const1 
    SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4const2 
    SUBQUERYdark_postrating_countrangeuser_id_ratinguser_id_rating8 3Using index condition
    SUBQUERYdark_postrating_countrangeuser_id_ratinguser_id_rating8 4Using index condition
    SUBQUERYdark_postrating_countrangeuser_id_ratinguser_id_rating8 7Using index condition
    SUBQUERYdark_postrating_countrangeuser_id_ratinguser_id_rating8 7Using index condition
  3. SELECT search_index.content_type, search_index.content_id
    FROM xf_search_index AS search_index
    WHERE search_index.user_id = ?
    	
    ORDER BY search_index.item_date DESC
     LIMIT 200
    Params: 30522
    Run Time: 0.000873
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsearch_indexrefuser_id_item_dateuser_id_item_date4const84Using where
  4. SELECT
    	post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		node.title AS node_title, node.node_name,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    	permission.cache_value AS node_permission_cache, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 1) as dark_postrating_1_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 14) as dark_postrating_14_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 2) as dark_postrating_2_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 3) as dark_postrating_3_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 4) as dark_postrating_4_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 5) as dark_postrating_5_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 6) as dark_postrating_6_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 7) as dark_postrating_7_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 8) as dark_postrating_8_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 9) as dark_postrating_9_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 10) as dark_postrating_10_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 11) as dark_postrating_11_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 12) as dark_postrating_12_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 13) as dark_postrating_13_count
    
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (1,2,4,5,7,8,10)) as positive_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (14,11,12,13)) as negative_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (3,6,9)) as neutral_rating_count
    	,
    pr2.rating, rating.fb_percent, rating.fb_positive, rating.fb_positivetotal, rating.fb_negative, rating.fb_neutral,
    		permission_combination.cache_value AS global_permission_cache
    FROM xf_post AS post
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		INNER JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = thread.node_id)
    LEFT JOIN dark_postrating pr2 ON (post.post_id = pr2.post_id and pr2.user_id = 0)
                    LEFT JOIN xc_trade_user AS rating ON rating.user_id=post.user_id
                
    		LEFT JOIN xf_permission_combination AS permission_combination ON
    			(permission_combination.permission_combination_id = user.permission_combination_id)
    WHERE post.post_id IN (27860212, 27860177, 27860151, 27860137, 27852277, 27852276, 27852275, 27852272, 27852270, 27852268, 27852266, 27847140, 27847139, 27847137, 27847135, 27847134, 27847127, 27847126, 27846186, 27845643, 27845501, 27845388, 27845374, 27845364, 27845354, 27845336, 27845189, 27845171, 27845164, 27822649, 27805074, 27799762, 27766167, 27759099, 27748367, 27741297, 27725555, 27713772, 27705627, 27612678, 27603111, 27599450, 27593484, 27589791, 27587658, 27586094, 27583372, 27484005, 27461111, 27437693, 27222962, 27210721, 27204736, 27185917, 27182141, 27169506, 27169501, 27145488, 27145078, 27145075, 27140397, 27135222, 27135193, 27129051, 27129049, 27125732, 27125699, 27121327, 27121325, 27117145, 27117141, 27112276, 27110465)
    Run Time: 0.010188
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 73Using where
    PRIMARYusereq_refPRIMARYPRIMARY4foromtb_www.post.user_id1 
    PRIMARYthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4foromtb_www.post.thread_id1 
    PRIMARYnodeeq_refPRIMARYPRIMARY4foromtb_www.thread.node_id1 
    PRIMARYpermissioneq_refPRIMARYPRIMARY35const,const,foromtb_www.thread.node_id1Using where
    PRIMARYpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8foromtb_www.post.post_id,const1 
    PRIMARYratingeq_refPRIMARYPRIMARY4foromtb_www.post.user_id1 
    PRIMARYpermission_combinationeq_refPRIMARYPRIMARY4foromtb_www.user.permission_combination_id1Using where
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4foromtb_www.post.user_id1Using index condition
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4foromtb_www.post.user_id1Using index condition
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4foromtb_www.post.user_id1Using index condition
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
  5. SELECT thread.*
    	,
    		user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    		node.title AS node_title, node.node_name,
    		post.message, post.attach_count,
    		NULL AS thread_read_date,
    		0 AS user_post_count,
    	permission.cache_value AS node_permission_cache,
    	last_post_user.avatar_date AS last_post_user_avatar_date, last_post_user.gravatar AS last_post_user_gravatar, last_post_user.gender AS last_post_user_gender, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 1) as dark_postrating_1_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 14) as dark_postrating_14_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 2) as dark_postrating_2_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 3) as dark_postrating_3_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 4) as dark_postrating_4_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 5) as dark_postrating_5_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 6) as dark_postrating_6_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 7) as dark_postrating_7_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 8) as dark_postrating_8_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 9) as dark_postrating_9_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 10) as dark_postrating_10_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 11) as dark_postrating_11_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 12) as dark_postrating_12_count, 1 as dark_postrating_has_fetched_max
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 13) as dark_postrating_13_count, 1 as dark_postrating_has_fetched_max
    
    FROM xf_thread AS thread
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_post AS post ON
    			(post.post_id = thread.first_post_id)
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = thread.node_id)
    	LEFT JOIN xf_user AS last_post_user ON
    		(last_post_user.user_id = thread.last_post_user_id)
    WHERE thread.thread_id IN (1537044, 1537041, 1537039, 1537037, 1537036, 1537026, 1537022, 1537021, 1525680, 1521386, 1506922, 1506856)
    Run Time: 0.001604
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYthreadrangePRIMARYPRIMARY4 12Using where
    PRIMARYusereq_refPRIMARYPRIMARY4foromtb_www.thread.user_id1 
    PRIMARYnodeeq_refPRIMARYPRIMARY4foromtb_www.thread.node_id1 
    PRIMARYposteq_refPRIMARYPRIMARY4foromtb_www.thread.first_post_id1 
    PRIMARYpermissioneq_refPRIMARYPRIMARY35const,const,foromtb_www.thread.node_id1Using where
    PRIMARYlast_post_usereq_refPRIMARYPRIMARY4foromtb_www.thread.last_post_user_id1 
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.thread.first_post_id,const1Using index
  6. SELECT profile_post.*
    	,
    		posting_user.*,
    		IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
    		receiving_user.username
    			AS profile_username,
    		receiving_user.gender
    			AS profile_gender,
    		receiving_user.user_state
    			AS profile_user_state,
    		receiving_user.user_group_id
    			AS profile_user_group_id,
    		receiving_user.secondary_group_ids
    			AS profile_secondary_group_ids,
    		receiving_user.display_style_group_id
    			AS profile_display_style_group_id,
    		receiving_user.is_banned
    			AS profile_is_banned,
    		receiving_user.is_admin
    			AS profile_is_admin,
    		receiving_user.is_moderator
    			AS profile_is_moderator,
    		receiving_user.avatar_date
    			AS profile_avatar_date,
    		receiving_user.gravatar
    			AS profile_gravatar,
    		receiving_user.warning_points
    			AS profile_warning_points,
    		receiving_user.permission_combination_id
    			AS profile_permission_combination_id,
    		receiving_user_privacy.allow_view_profile
    			AS profile_allow_view_profile,
    		receiving_user_privacy.allow_post_profile
    			AS profile_allow_post_profile,
    		receiving_user_privacy.allow_send_personal_conversation
    			AS profile_allow_send_personal_conversation,
    		receiving_user_privacy.allow_view_identities
    			AS profile_allow_view_identities,
    		receiving_user_privacy.allow_receive_news_feed
    			AS profile_allow_allow_receive_news_feed,
    		IF (receiving_user_follow.follow_user_id, 1, 0)
    			AS following_0
    FROM xf_profile_post AS profile_post
    
    		LEFT JOIN xf_user AS posting_user ON
    			(posting_user.user_id = profile_post.user_id)
    		LEFT JOIN xf_user AS receiving_user ON
    			(receiving_user.user_id = profile_post.profile_user_id)
    		LEFT JOIN xf_user_privacy AS receiving_user_privacy ON
    			(receiving_user_privacy.user_id = profile_post.profile_user_id)
    		LEFT JOIN xf_user_follow AS receiving_user_follow ON
    			(receiving_user_follow.user_id = profile_post.profile_user_id AND follow_user_id = 0)
    WHERE profile_post.profile_post_id IN(126634, 126627)
    Run Time: 0.000461
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postrangePRIMARYPRIMARY4 2Using where
    SIMPLEposting_usereq_refPRIMARYPRIMARY4foromtb_www.profile_post.user_id1 
    SIMPLEreceiving_usereq_refPRIMARYPRIMARY4foromtb_www.profile_post.profile_user_id1 
    SIMPLEreceiving_user_privacyeq_refPRIMARYPRIMARY4foromtb_www.profile_post.profile_user_id1 
    SIMPLEreceiving_user_followeq_refPRIMARY,follow_user_idPRIMARY8foromtb_www.profile_post.profile_user_id,const1Using index
  7. INSERT INTO `xf_search` (`search_results`, `result_count`, `search_type`, `search_query`, `search_constraints`, `search_order`, `search_grouping`, `user_results`, `warnings`, `user_id`, `search_date`, `query_hash`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    Params: [["post",27860212],["post",27860177],["post",27860151],["post",27860137],["post",27852277],["post",27852276],["post",27852275],["post",27852272],["post",27852270],["post",27852268],["post",27852266],["post",27847140],["post",27847139],["post",27847137],["post",27847135],["post",27847134],["post",27847127],["post",27847126],["post",27846186],["post",27845643],["post",27845501],["thread",1537044],["thread",1537041],["thread",1537039],["thread",1537037],["thread",1537036],["thread",1537026],["thread",1537022],["thread",1537021],["post",27822649],["post",27805074],["post",27799762],["post",27766167],["post",27759099],["post",27748367],["post",27741297],["post",27725555],["post",27713772],["post",27705627],["post",27612678],["post",27603111],["post",27599450],["post",27593484],["post",27589791],["post",27587658],["post",27586094],["thread",1525680],["post",27461111],["post",27437693],["post",27222962],["post",27210721],["post",27204736],["post",27185917],["post",27182141],["post",27169506],["post",27169501],["post",27145488],["post",27145078],["post",27145075],["post",27140397],["post",27135222],["post",27135193],["post",27129051],["post",27129049],["post",27125732],["post",27125699],["post",27121327],["post",27121325],["post",27117145],["post",27117141],["thread",1506922],["thread",1506856]], 72, user, , {"user_id":30522,"content":false}, date, 0, , [], 0, 1713995791, 8e15b658fb40a4684399ff5001e25931
    Run Time: 0.004003
  8. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 947c1a2518340ffe3c145ab475f8b20e, , 1713999391
    Run Time: 0.000133

Included Files (127, XenForo Classes: 51)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/File.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/NFLJ/Showcase/Listener/Proxy.php
  29. library/Waindigo/Listener/InitDependencies.php
  30. library/Waindigo/Listener/InitDependencies/20141020.php
  31. library/Waindigo/Listener/ControllerPreDispatch/20141011.php
  32. library/BannedAvatar/Listener.php
  33. library/XenCentral/Trade/Hooks.php
  34. library/XenCentral/Trade/Model/Options.php
  35. library/XenCentral/Trade/Model/Abstract.php
  36. library/XenCentral/Framework/Hooks.php
  37. library/Tapatalk/Listener/LoadClassModel.php
  38. library/UserEss/Listener/Proxy.php
  39. library/Dark/PostRating/EventListener.php
  40. library/Bookmarks/Listener/Proxy.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/Search.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/Search.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/Waindigo/CustomFields/Listener/LoadClass.php
  52. library/Waindigo/Listener/LoadClass.php
  53. library/Waindigo/Listener/LoadClass/20141202.php
  54. library/Vinavb/CustomNodeIcon/Listener.php
  55. library/GritterNotifications/Listener.php
  56. library/XenES/Listener.php
  57. library/Waindigo/CustomFields/Extend/XenForo/ControllerPublic/Search.php
  58. library/XenES/Proxy/ControllerSearch.php
  59. library/XenForo/Input.php
  60. library/XenForo/Session.php
  61. library/Zend/Db.php
  62. library/Zend/Db/Adapter/Mysqli.php
  63. library/Zend/Db/Adapter/Abstract.php
  64. library/Zend/Db/Select.php
  65. library/Zend/Db/Expr.php
  66. library/Zend/Db/Profiler.php
  67. library/Zend/Db/Statement/Mysqli.php
  68. library/Zend/Db/Statement.php
  69. library/Zend/Db/Statement/Interface.php
  70. library/XenForo/Helper/Ip.php
  71. library/XenForo/Visitor.php
  72. library/XenForo/Model/User.php
  73. library/Waindigo/LoginAsUser/Listener/LoadClass.php
  74. library/Waindigo/LoginAsUser/Extend/XenForo/Model/User.php
  75. library/Dark/PostRating/Model/User.php
  76. library/XenCentral/Trade/Model/XfUser.php
  77. library/Zend/Db/Profiler/Query.php
  78. library/XenForo/Permission.php
  79. library/XenForo/Helper/Php.php
  80. library/XenForo/Phrase.php
  81. library/XenForo/Locale.php
  82. library/Waindigo/LoginAsUser/Listener/VisitorSetup.php
  83. library/Waindigo/Listener/VisitorSetup.php
  84. library/Waindigo/Listener/VisitorSetup/20130615.php
  85. library/Waindigo/LoginAsUser/Extend/XenForo/Visitor.php
  86. library/Waindigo/InstallUpgrade/Listener/ControllerPreDispatch.php
  87. library/DigitalPointAdPositioning/Listener/ControllerPreDispatch.php
  88. library/Dark/PostRating/Model.php
  89. library/XenForo/Model/Search.php
  90. library/Waindigo/CustomFields/Extend/XenForo/Model/Search.php
  91. library/Tapatalk/Model/Search.php
  92. library/XenForo/Search/Searcher.php
  93. library/XenForo/Search/SourceHandler/Abstract.php
  94. library/XenForo/Search/SourceHandler/MySqlFt.php
  95. library/XenForo/Search/DataHandler/Post.php
  96. library/XenForo/Search/DataHandler/Abstract.php
  97. library/Waindigo/CustomFields/Extend/XenForo/Search/DataHandler/Post.php
  98. library/XenForo/Search/DataHandler/Thread.php
  99. library/XenForo/Search/DataHandler/ProfilePost.php
  100. library/XenForo/Model/Post.php
  101. library/UserEss/Model/Post.php
  102. library/Dark/PostRating/Model/Post.php
  103. library/XenCentral/Trade/Model/Post.php
  104. library/Bookmarks/Model/Post.php
  105. library/XenForo/Model/Thread.php
  106. library/Waindigo/LastPostAvatar/Listener/LoadClass.php
  107. library/Waindigo/LastPostAvatar/Extend/XenForo/Model/Thread.php
  108. library/Waindigo/CustomFields/Extend/XenForo/Model/Thread.php
  109. library/UserEss/Model/Thread.php
  110. library/Dark/PostRating/Model/Thread.php
  111. library/Bookmarks/Model/Thread.php
  112. library/XenForo/Model/Forum.php
  113. library/UserEss/Model/Forum.php
  114. library/XenForo/Model/ProfilePost.php
  115. library/UserEss/Model/ProfilePost.php
  116. library/XenForo/Model/UserProfile.php
  117. library/XenForo/ControllerResponse/Redirect.php
  118. library/XenForo/ControllerResponse/Abstract.php
  119. library/XenForo/Helper/Cookie.php
  120. library/DigitalPointAdPositioning/Listener/ControllerPostDispatch.php
  121. library/Tapatalk/Listener/ControllerPostDispatch.php
  122. library/XenForo/ViewRenderer/HtmlPublic.php
  123. library/XenForo/ViewRenderer/Abstract.php
  124. library/XenForo/Template/Public.php
  125. library/XenForo/Template/Abstract.php
  126. library/XenCentral/Framework/Navigation/Admin.php
  127. library/XenForo/Debug.php