xcentric/soft-deleteable-extension-bundle
最新稳定版本:v3.0.4
Composer 安装命令:
composer require xcentric/soft-deleteable-extension-bundle
包简介
Provides cascade functionality to Gedmo Doctrine Extensions soft-delete. Adjusted from E-vence/SoftDeleteableListenerExtensionBundle.
README 文档
README
Extensions to Gedmo's softDeleteable listener which has had this issue reported since 2012 : https://github.com/Atlantic18/DoctrineExtensions/issues/505.
Provides the onSoftDelete functionality to an association of a doctrine entity. This functionality behaves like the SQL onDelete function (when the owner side is deleted). It will prevent Doctrine errors when a reference is soft-deleted.
Cascade delete the entity
To (soft-)delete an entity when its parent record is soft-deleted :
@Xcentric\onSoftDelete(type="CASCADE")
Set reference to null (instead of deleting the entity)
@Xcentric\onSoftDelete(type="SET NULL")
Entity example
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Xcentric\SoftDeleteableExtensionBundle\Mapping\Annotation as Xcentric;
/*
* @ORM\Entity(repositoryClass="AppBundle\Entity\AdvertisementRepository")
* @Gedmo\SoftDeleteable(fieldName="deletedAt")
*/
class Advertisement
{
...
/**
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\Shop")
* @ORM\JoinColumn(name="shop_id", referencedColumnName="id")
* @Xcentric\onSoftDelete(type="CASCADE")
*/
private $shop;
...
}
Optional - Caching class map
Add property xcentric_class_map_path
# app/config/parameters.yml
xcentric_class_map_path: '%kernel.root_dir%/config/classMap.yaml'
Execute command xcentric:softdelete:map:generate
Install
Install with composer:
composer require xcentric/soft-deleteable-extension-bundle
Add the bundle to app/AppKernel.php:
# app/AppKernel.php
$bundles = array(
...
new Xcentric\SoftDeleteableExtensionBundle\XcentricSoftDeleteableExtensionBundle(),
);
统计信息
- 总下载量: 6.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-05-21