updated some more modules

This commit is contained in:
Bachir Soussi Chiadmi
2017-01-22 19:41:28 +01:00
parent 8416e3eea1
commit a0fadb0757
271 changed files with 11309 additions and 2135 deletions
@@ -0,0 +1,24 @@
<?php
/**
* @interface
*
* This interface should be implemented by field plugins which can create embedded
* entities on the fly.
*
* The prime example is field collections. CER might need to add a backreference on
* a field which is in a field collection, yet there might be no field collection items
* on which to add the reference. In that case, a new field collection item must be
* be created and referenced properly by the owner.
*/
interface CerEntityContainerInterface {
/**
* Creates an embedded entity.
*
* @return EntityDrupalWrapper
* The newly created embedded entity, in a metadata wrapper.
*/
public function createInnerEntity(EntityDrupalWrapper $owner);
}