XenForo
Administrative
- Thread starter
- Admin
- #1
My add-on uses this code from the XFRM
Code:
=> i will end at /resources/
But I want to end at /somewhere_else/
if i use:
Code:
...
Read more
ادامه مطلب...
Code:
Code:
/** @var \XFRM\ControllerPlugin\Overview $overviewPlugin */
$overviewPlugin = $this->plugin('XFRM:Overview');
return $overviewPlugin->actionFilters();
=> i will end at /resources/
But I want to end at /somewhere_else/
if i use:
Code:
Code:
/** @var \XFRM\ControllerPlugin\Overview $overviewPlugin */
$overviewPlugin = $this->plugin('XFRM:Overview');
$test = $overviewPlugin->actionFilters();
print_r($test);
Read more
ادامه مطلب...