Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Drupal\Core\Entity\Plugin\Validation\Constraint; use Drupal\Core\StringT..
Decoded Output download
<?php
namespace Drupal\Core\Entity\Plugin\Validation\Constraint;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Validation\Attribute\Constraint;
use Symfony\Component\Validator\Constraint as SymfonyConstraint;
/**
* Entity Reference valid reference constraint.
*
* Verifies that referenced entities are valid.
*/
#[Constraint(
id: 'ValidReference',
label: new TranslatableMarkup('Entity Reference valid reference', [], ['context' => 'Validation'])
)]
class ValidReferenceConstraint extends SymfonyConstraint {
/**
* The default violation message.
*
* @var string
*/
public $message = 'This entity (%type: %id) cannot be referenced.';
/**
* Violation message when the entity does not exist.
*
* @var string
*/
public $nonExistingMessage = 'The referenced entity (%type: %id) does not exist.';
/**
* Violation message when a new entity ("autocreate") is invalid.
*
* @var string
*/
public $invalidAutocreateMessage = 'This entity (%type: %label) cannot be referenced.';
/**
* Violation message when the target_id is empty.
*
* @var string
*/
public $nullMessage = 'This value should not be null.';
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Entity\Plugin\Validation\Constraint;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Validation\Attribute\Constraint;
use Symfony\Component\Validator\Constraint as SymfonyConstraint;
/**
* Entity Reference valid reference constraint.
*
* Verifies that referenced entities are valid.
*/
#[Constraint(
id: 'ValidReference',
label: new TranslatableMarkup('Entity Reference valid reference', [], ['context' => 'Validation'])
)]
class ValidReferenceConstraint extends SymfonyConstraint {
/**
* The default violation message.
*
* @var string
*/
public $message = 'This entity (%type: %id) cannot be referenced.';
/**
* Violation message when the entity does not exist.
*
* @var string
*/
public $nonExistingMessage = 'The referenced entity (%type: %id) does not exist.';
/**
* Violation message when a new entity ("autocreate") is invalid.
*
* @var string
*/
public $invalidAutocreateMessage = 'This entity (%type: %label) cannot be referenced.';
/**
* Violation message when the target_id is empty.
*
* @var string
*/
public $nullMessage = 'This value should not be null.';
}
Function Calls
None |
Stats
MD5 | ae2cc098320d3748de018a93584f942d |
Eval Count | 0 |
Decode Time | 85 ms |