Page Time: 0.0569s

Memory: 3.2468 MB (Peak: 10.7323 MB)

Queries (11, time: 0.0223s, 39.3%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000111
    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: 1560
    Run Time: 0.000894
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYuserconstPRIMARYPRIMARY4const1 
    PRIMARYratingconstPRIMARYPRIMARY4const1 
    PRIMARYxc_trade_preferenceconstPRIMARYPRIMARY4const0unique row not found
    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: 1560
    Run Time: 0.001675
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsearch_indexrefuser_id_item_dateuser_id_item_date4const1698Using 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 (26814935, 26811414, 20575210, 20284448, 19896914, 18998984, 18965115, 18957118, 18953938, 18814588, 18676236, 18671168, 18670914, 18669874, 18623129, 18622969, 18616479, 18546366, 18540527, 18538808, 18536716, 18536660, 18536586, 18536520, 18536358, 18536115, 18536063, 18366004, 17813601, 17809680, 17808887, 17808749, 17808396, 17788321, 17783389, 17782529, 17774377, 17767640, 17766470, 17766440, 17764078, 17761172, 17759899, 17759498, 17754770, 17751530, 17731085, 17728936, 17726588, 17725727, 17723930, 17713565, 17710375, 17710195, 17700629, 17700521, 17692675, 17688492, 17677696, 17672910, 17655504, 17651817, 17648889, 17635593, 17634672, 17623542, 17616895, 17607890, 17607857, 17607813, 17605061, 17599220, 17592997, 17591583, 17590193, 17590115, 17574464, 17570133, 17568375, 17463768, 17462151, 17453075, 17452568, 17449919, 17449901, 17449886, 17449846, 17436400, 17434571, 17423470, 17422764, 17422645, 17422577, 17418342, 17408468, 17383559, 17356745, 17298764, 17271985, 17262041, 17253628, 17249462, 17249386, 17249289, 17249136, 17210725, 17198205, 17195572, 17191542, 17190837, 17189105, 17188084, 17184780, 17181692, 17174167, 17165486, 17152474, 17150414, 17126161, 17123493, 17117547, 17115810, 17115636, 17071656, 17028823, 17018481, 17016273, 16928043, 16889634, 16805797, 16798966, 14484263, 14483022, 14481813, 14476626, 14474456, 14472109, 14467653, 14466832, 14465668, 14464497, 14453537, 14451646, 14447791, 14447666, 14442384, 14437754, 14436952, 14432031, 14431108, 14430263, 14424653, 14419358, 14417697, 14417643, 14414556, 14404613, 14401064, 14399514, 14397030, 14388129, 14381423, 14381402, 14381377, 14378907, 14378127, 14372293, 14372217, 14368948, 14360035, 14359291, 14355775, 14355721, 14355619, 14355494, 14355478, 14345288, 14344071, 14337552, 14335659, 14329605, 14329084, 14324973, 14323011, 14320802, 14318523, 14318490, 14316301, 14311092, 14310180, 14310124, 14308345, 14304674, 14303433, 14301984, 14285267, 14275933, 14273155, 14269864, 14261809)
    Run Time: 0.018356
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 200Using 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. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 793a71838d95d98bd3a1c7d3810cb5f0, , 1713540887
    Run Time: 0.000120
  6. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Search, Member, valid, , 1713537287,
    Run Time: 0.000720
  7. SELECT activity.*, user.username 
    FROM xc_trade_activity AS activity
    LEFT JOIN xf_user AS user ON user.user_id=activity.user_id
    WHERE activity.user_id=?
    ORDER BY activity.dateline DESC
    LIMIT 0, ?
    Params: 0, 10
    Run Time: 0.000072
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEactivityrefuser_id_datelineuser_id_dateline4const1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4foromtb_www.activity.user_id1 
  8. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'message_page', 'nflj_showcase_tab_links', 'xcxt_navtabs', 'waindigo_you_are_using_as_user_loginasuser', 'waindigo_moderator_bar_loginasuser', 'dark_postrating', 'dark_postrating_member', 'dark_postrating_member_totals', 'message_user_info_extra', 'user_criteria_content', 'thread_list_item_icon_key', 'dark_postrating_member_notable_tabs', 'dark_postrating_account_wrapper', 'dark_postrating_navigation_visitor_tab', 'dark_postrating_visitor_panel', 'dark_postrating_member_card', 'dark_postrating_member_info', 'dark_postrating_message_user_info', 'xcfw_copyright', 'xcxt_headinclude', 'xcxt_trading_preferences_link_list', 'xcxt_visitor_panel_addon', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.000203
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 24Using where
  9. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('no_results_found', 'xcxt_trade')
    Params: 2
    Run Time: 0.000043
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 2Using where
  10. SELECT *
    FROM xf_notification
    ORDER BY notification_id
    Run Time: 0.000082
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_notificationindex PRIMARY4 1 
  11. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('GritterNotifications')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.000054
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (151, XenForo Classes: 50)

  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/Model/Post.php
  99. library/UserEss/Model/Post.php
  100. library/Dark/PostRating/Model/Post.php
  101. library/XenCentral/Trade/Model/Post.php
  102. library/Bookmarks/Model/Post.php
  103. library/XenForo/Model/Thread.php
  104. library/Waindigo/LastPostAvatar/Listener/LoadClass.php
  105. library/Waindigo/LastPostAvatar/Extend/XenForo/Model/Thread.php
  106. library/Waindigo/CustomFields/Extend/XenForo/Model/Thread.php
  107. library/UserEss/Model/Thread.php
  108. library/Dark/PostRating/Model/Thread.php
  109. library/Bookmarks/Model/Thread.php
  110. library/XenForo/Model/Forum.php
  111. library/UserEss/Model/Forum.php
  112. library/XenForo/ControllerResponse/Message.php
  113. library/XenForo/ControllerResponse/Abstract.php
  114. library/XenForo/Helper/Cookie.php
  115. library/DigitalPointAdPositioning/Listener/ControllerPostDispatch.php
  116. library/Tapatalk/Listener/ControllerPostDispatch.php
  117. library/XenForo/ViewRenderer/HtmlPublic.php
  118. library/XenForo/ViewRenderer/Abstract.php
  119. library/XenForo/Template/Public.php
  120. library/XenForo/Template/Abstract.php
  121. library/XenCentral/Framework/Navigation/Admin.php
  122. library/UserEss/Listener/Hook.php
  123. library/NFLJ/Showcase/Listener/Template.php
  124. library/Waindigo/LoginAsUser/Listener/TemplateCreate.php
  125. library/Waindigo/Listener/TemplateCreate.php
  126. library/Waindigo/Listener/TemplateCreate/20130522.php
  127. library/Waindigo/CustomFields/Listener/TemplateCreate.php
  128. library/Bookmarks/Listener/Hook.php
  129. library/XenForo/Route/Prefix/Members.php
  130. library/NFLJ/Showcase/Model/Item.php
  131. library/XenCentral/Trade/Model/Activity.php
  132. library/XenCentral/Trade/Route/PrefixPublic/Main.php
  133. library/Bookmarks/Listener/NavigationTabs.php
  134. library/Waindigo/CustomFields/Listener/TemplatePostRender.php
  135. library/Waindigo/Listener/TemplatePostRender.php
  136. library/Waindigo/Listener/TemplatePostRender/20140711.php
  137. library/Waindigo/Listener/Template.php
  138. library/Waindigo/Listener/Template/20141020.php
  139. library/Tapatalk/Listener/TemplatePostRender.php
  140. library/XenForo/Helper/Criteria.php
  141. library/XenForo/Debug.php
  142. library/Tapatalk/EventListener/Hook.php
  143. mobiquo/smartbanner/head.inc.php
  144. library/Waindigo/LoginAsUser/Listener/TemplateHook.php
  145. library/Waindigo/Listener/TemplateHook.php
  146. library/Waindigo/Listener/TemplateHook/20141020.php
  147. library/Waindigo/CustomFields/Listener/TemplateHook.php
  148. library/GritterNotifications/Model/Notification.php
  149. library/XenCentral/Framework/Model/Cache.php
  150. library/XenForo/ViewRenderer/Json.php
  151. library/Vinavb/CustomNodeIcon/Icon.php