1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- function hook_cer_fields() {
- return array(
-
-
- 'node:article:field_related_pages' => array(
-
-
-
-
-
-
-
- 'class' => 'CerEntityReferenceField',
- ),
-
-
-
- 'node:page:field_my_field_collection' => array(
- 'class' => 'CerFieldCollectionField',
- ),
- 'field_collection_item:field_my_field_collection:field_related_articles' => array(
- 'class' => 'CerEntityReferenceField',
-
-
-
-
-
-
- 'parents' => array(
- 'node:page:field_my_field_collection',
- ),
-
-
-
-
- 'require parent' => TRUE,
- ),
- );
- }
- function hook_cer_fields_alter(array &$fields) {
-
- }
|