illibejiep/friendship-bundle

为 symfony 用户提供的友谊功能

安装: 41

依赖项: 0

建议者: 0

安全: 0

星标: 2

关注者: 1

分支: 1

开放性问题: 0

类型:symfony-bundle

v1.0.0 2015-08-13 06:28 UTC

This package is not auto-updated.

Last update: 2024-09-28 17:49:17 UTC


README

它为 symfony2 用户提供了简单的关联功能。

Latest Stable Version Total Downloads Latest Unstable Version License

安装

    composer require illibejiep/friendship-bundle dev-master

然后在 AppKernel.php 中添加

//...
    $bundles[] = new \FriendshipBundle\FriendshipBundle();

    return $bundles;
//...

完成。

使用方法

在 twig 模板中

//...
{% include 'FriendshipBundle:Widget:button.html.twig' with {fromUser: someUser, toUser: anotherUser} %}
//...

它将为 someUser 显示友谊按钮,以便管理与其他User的友谊关系。