CStrategies
Guest
Member
I get most things in XenForo but routes drive me mad.
I have added a custom action method to my extension of the XFRM resourceitem public controller.
Here is the format of the extension:
Code:
Code:
I know the extension works, because I have other methods I...
Read more
Continue reading...
I have added a custom action method to my extension of the XFRM resourceitem public controller.
Here is the format of the extension:
Code:
Code:
Code:
<?php
namespace My\Addon\XFRM\Pub\Controller;
use XF\Mvc\ParameterBag;
use XF\Pub\Controller\AbstractController;
class ResourceItem extends XFCP_ResourceItem
{
public function actionMyAction(ParameterBag $params) {
}
}
Read more
Continue reading...