_options_values_in_use($entity_type, $field_name, $values)
Checks if a list of values are being used in actual field values.
File
- core/modules/options/options.module, line 123
- Defines selection, check box and radio button widgets for text and numeric fields.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | function _options_values_in_use( $entity_type , $field_name , $values ) { if ( $values ) { $factory = \Drupal::service( 'entity.query' ); $result = $factory ->get( $entity_type ) ->condition( $field_name . '.value' , $values , 'IN' ) -> count () ->accessCheck(FALSE) ->range(0, 1) ->execute(); if ( $result ) { return TRUE; } } return FALSE; } |
Please login to continue.