| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | function df_tools_cohesion_entity_operation_alter(array &$operations, EntityInterface $entity) { |
||
| 21 | // Removes the clone operation from Entity clone for all Site Studio entity types. |
||
| 22 | // Site Studio has a duplicate operation that should be used instead. |
||
| 23 | $regex = '/cohesion_*/'; |
||
| 24 | $entityTypeId = $entity->getEntityTypeId(); |
||
| 25 | if (preg_match($regex, $entityTypeId)) { |
||
| 26 | unset($operations['clone']); |
||
| 27 | } |
||
| 29 |