FOSCommentBundle自定义评论排序

时间:2015-09-22 10:37:14

标签: php symfony foscommentbundle

我需要根据评论得分实现自定义评论排序,我已经完成14-customizing_tree_sorting.md services:中的my app/config.yml如下

# app/config/config.yml
services:
     demoBundle.comment.sorter.score:
        class: DemoBundle\Bundle\Sorting\CommentOrderSorting
        tags:
            - { name: fos_comment.sorter, alias: score }

这里我的自定义类SortingInterfac中没有调用CommentOrderSorting的重写方法,我需要实现我的逻辑

先谢谢。

1 个答案:

答案 0 :(得分:0)

我认为您还应该使用自定义排序器创建配置:

# app/config/config.yml
fos_comment:
    service:
        sorting:
            default: score