CMTV
Well-known member
Hello!
In
Next I extend
The problem is when I click on my "Best answer" button I don't see
In
post_macros
template I am adding an action-link (near like link):
PHP:
<a href="{{ link('posts/best', $post, {'thread_id': $thread.thread_id}) }}" class="actionBar-action actionBar-action--mq.is-selected">Best answer</a>
Next I extend
XF\Pub\Controller\Post.php
class and adding actionBest
method to it:
PHP:
public function actionBest(ParameterBag $params) {
echo print_r($params, true);
}
The problem is when I click on my "Best answer" button I don't see
thread_id
in parameters... The output is:
Code:
XF\Mvc\ParameterBag Object ( [params:protected] => Array ( [post_id] => 14 ) )