Browse Source

Update and rename NodeReferencedByField.php to NodeReferencedByNode.php

pull/808/head
Seth Shaw 4 years ago committed by GitHub
parent
commit
4b1103e05f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      src/Plugin/Condition/NodeReferencedByNode.php

12
src/Plugin/Condition/NodeReferencedByField.php → src/Plugin/Condition/NodeReferencedByNode.php

@ -11,17 +11,17 @@ use Drupal\field\Entity\FieldStorageConfig;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
/** /**
* Condition to detect if is a node is referenced by a configured field. * Condition to detect if is a node is referenced by another node using the configured field.
* *
* @Condition( * @Condition(
* id = "node_referenced_by_field", * id = "node_referenced_by_node",
* label = @Translation("Node referenced by field"), * label = @Translation("Node is referenced by other nodes"),
* context = { * context = {
* "node" = @ContextDefinition("entity:node", required = TRUE , label = @Translation("node")) * "node" = @ContextDefinition("entity:node", required = TRUE , label = @Translation("node"))
* } * }
* ) * )
*/ */
class NodeReferencedByField extends ConditionPluginBase implements ContainerFactoryPluginInterface { class NodeReferencedByNode extends ConditionPluginBase implements ContainerFactoryPluginInterface {
/** /**
* Node storage. * Node storage.
@ -140,10 +140,10 @@ class NodeReferencedByField extends ConditionPluginBase implements ContainerFact
*/ */
public function summary() { public function summary() {
if (!empty($this->configuration['negate'])) { if (!empty($this->configuration['negate'])) {
return $this->t('The node is not referenced in the field @field.', ['@field' => $this->configuration['reference_field']]); return $this->t('The node is not referenced in another node\'s field `@field`.', ['@field' => $this->configuration['reference_field']]);
} }
else { else {
return $this->t('The node is referenced in the field @field.', ['@field' => $this->configuration['reference_field']]); return $this->t('The node is referenced in another node\'s field `@field`.', ['@field' => $this->configuration['reference_field']]);
} }
} }
Loading…
Cancel
Save