PDA

View Full Version : Custom Video Filter in the Activity stream widget


devoidfeast
07-11-2017, 09:33 PM
Ciao,
i wonder where does the call goes when i filter content by video in the activity stream widget. i can trace the http post request , and it post to "https://xyz.com//activity/get" and the request parameters are as follow.

filters[nodeid] "0"
filters[view] "activity"
filters[per-page] "10"
filters[pagenum] "1"
filters[maxpages] "100"
filters[userid] "0"
filters[showChannelInfo] "1"
filters[filter_time] "time_lastmonth"
filters[filter_show] "vBForum_Video"
filters[filter_new_topics] "1"
isAjaxTemplateRender "true"
isAjaxTemplateRenderWithData "true"
securitytoken "well"


where does this call maps in the vbulletin source code? i want to modify the video search filter since i have embedded video bbcodes which is ignore by this very smart filter. any help will be highly appreciated.
Grazie.

noypiscripter
07-12-2017, 05:36 AM
It calls the actionGet() method from the frontend controller /includes/vb5/frontend/controller/activity.php

devoidfeast
07-12-2017, 11:35 AM
It calls the actionGet() method from the frontend controller /includes/vb5/frontend/controller/activity.php

like always thank you vergara...:)