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;
/**
* Validation constraint for the entity changed timestamp.
*/
#[Constraint(
id: 'EntityUntranslatableFields',
label: new TranslatableMarkup('Entity untranslatable fields', [], ['context' => 'Validation']),
type: ['entity']
)]
class EntityUntranslatableFieldsConstraint extends SymfonyConstraint {
public $defaultRevisionMessage = 'Non-translatable fields can only be changed when updating the current revision.';
public $defaultTranslationMessage = 'Non-translatable fields can only be changed when updating the original language.';
}
?>
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;
/**
* Validation constraint for the entity changed timestamp.
*/
#[Constraint(
id: 'EntityUntranslatableFields',
label: new TranslatableMarkup('Entity untranslatable fields', [], ['context' => 'Validation']),
type: ['entity']
)]
class EntityUntranslatableFieldsConstraint extends SymfonyConstraint {
public $defaultRevisionMessage = 'Non-translatable fields can only be changed when updating the current revision.';
public $defaultTranslationMessage = 'Non-translatable fields can only be changed when updating the original language.';
}
Function Calls
None |
Stats
MD5 | 9e0150f6da621c350758fbfda3546e25 |
Eval Count | 0 |
Decode Time | 86 ms |