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 Symfony\Component\V..
Decoded Output download
<?php
namespace Drupal\Core\Entity\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Checks if a value is a valid entity type.
*
* @Constraint(
* id = "Bundle",
* label = @Translation("Bundle", context = "Validation"),
* type = { "entity", "entity_reference" }
* )
*/
class BundleConstraint extends Constraint {
/**
* The default violation message.
*
* @var string
*/
public $message = 'The entity must be of bundle %bundle.';
/**
* The bundle option.
*
* @var string|array
*/
public $bundle;
/**
* Gets the bundle option as array.
*
* @return array
*/
public function getBundleOption() {
// Support passing the bundle as string, but force it to be an array.
if (!is_array($this->bundle)) {
$this->bundle = [$this->bundle];
}
return $this->bundle;
}
/**
* {@inheritdoc}
*/
public function getDefaultOption() {
return 'bundle';
}
/**
* {@inheritdoc}
*/
public function getRequiredOptions() {
return ['bundle'];
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Entity\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Checks if a value is a valid entity type.
*
* @Constraint(
* id = "Bundle",
* label = @Translation("Bundle", context = "Validation"),
* type = { "entity", "entity_reference" }
* )
*/
class BundleConstraint extends Constraint {
/**
* The default violation message.
*
* @var string
*/
public $message = 'The entity must be of bundle %bundle.';
/**
* The bundle option.
*
* @var string|array
*/
public $bundle;
/**
* Gets the bundle option as array.
*
* @return array
*/
public function getBundleOption() {
// Support passing the bundle as string, but force it to be an array.
if (!is_array($this->bundle)) {
$this->bundle = [$this->bundle];
}
return $this->bundle;
}
/**
* {@inheritdoc}
*/
public function getDefaultOption() {
return 'bundle';
}
/**
* {@inheritdoc}
*/
public function getRequiredOptions() {
return ['bundle'];
}
}
Function Calls
None |
Stats
MD5 | 67f7a6bdcc56285362516b3a3f369947 |
Eval Count | 0 |
Decode Time | 80 ms |