XenForo
Administrative
- Thread starter
- Admin
- #1
I've added a custom tab in the member_view template, so I'm trying to include my custom template into member_view, but there aren't any results.
I have a controller called
Code:
Read more
ادامه مطلب...
I have a controller called
TestMember
and a basic finder:Code:
Code:
public function actionIndex (ParameterBag $params)
{
$test = $this->finder('Test\ILL:Battles')
->where('user_id', $params->user_id);
$viewParams = [
'test' => $test
];
return $this->view('Test\ILL:TestMember'...
Read more
ادامه مطلب...