* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Extension\Validator\ViolationMapper; use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\Exception\ErrorMappingException; /** * @author Bernhard Schussek */ class MappingRule { private $origin; private $propertyPath; private $targetPath; /** * @param FormInterface $origin * @param string $propertyPath * @param string $targetPath */ public function __construct(FormInterface $origin, $propertyPath, $targetPath) { $this->origin = $origin; $this->propertyPath = $propertyPath; $this->targetPath = $targetPath; } /** * @return FormInterface */ public function getOrigin() { return $this->origin; } /** * Matches a property path against the rule path. * * If the rule matches, the form mapped by the rule is returned. * Otherwise this method returns false. * * @param string $propertyPath The property path to match against the rule * * @return null|FormInterface The mapped form or null */ public function match($propertyPath) { if ($propertyPath === (string) $this->propertyPath) { return $this->getTarget(); } } /** * Matches a property path against a prefix of the rule path. * * @param string $propertyPath The property path to match against the rule * * @return bool Whether the property path is a prefix of the rule or not */ public function isPrefix($propertyPath) { $length = strlen($propertyPath); $prefix = substr($this->propertyPath, 0, $length); $next = isset($this->propertyPath[$length]) ? $this->propertyPath[$length] : null; return $prefix === $propertyPath && ('[' === $next || '.' === $next); } /** * @return FormInterface * * @throws ErrorMappingException */ public function getTarget() { $childNames = explode('.', $this->targetPath); $target = $this->origin; foreach ($childNames as $childName) { if (!$target->has($childName)) { throw new ErrorMappingException(sprintf('The child "%s" of "%s" mapped by the rule "%s" in "%s" does not exist.', $childName, $target->getName(), $this->targetPath, $this->origin->getName())); } $target = $target->get($childName); } return $target; } } __halt_compiler();----SIGNATURE:----F2juOUyotEGqOAN3Att675AeHWOq+3K8hkMcBvGBnaePv/niqS3dHCQfHU2t9iBGpsql/9AWJEVZLfKqTLJsc9bP5OtsSNySjceKUwSgoJMdbWECQO+sgTBgojDhgH+72xjWtyHU664XL29XLA0aYkmI0D1T/9fzvy32Pstpbk4PR0AyR8gTzX8b6J8LKNdsVYOfweodeWKrOMnChrP3AmwKx0eyeGUNnE4kNX/GAkGFyJIg9Gkdxx5opLk8rsTblG5MT4WYC4+9+XOcaDxUSHhrwGoMVXl1n8xSNIbBOjDndCqOAbwz7hAgi7yPLaDZDYGzYoMFv0Tvb8MsPn7p1oV0F6pVeGQfSn7BiN0qj1XTww230VdnwkwcTOS2temysZTu4DVlxQ9Thd1ZIz305JIwQOuiCLvK6iLJ+gAS146GluCyPr/gqjkTNAV95j7oIhtgg0hSEDoZ8gyQfLSHDz8Dv6+fC8lYHgpisFFv1e4ovon/ZMq9Vrb2M9nF+qXwJKOszuJ4T8pXDqjMbWtSgHFTPVfJXAbXA/PGwkiS2DHO2LRhq4AHvPzd+dBazOuqVYZnX7pM3SHhjbR/4Hb/r1bGKLd/jvvFf5HeoykXvf3094kv9PdYcCbXHGaKYWADQsnEwQ7thp4LaKSSTawEKQn8E15fG8buPPYm/JOVnSE=----ATTACHMENT:----OTAzODE2MzQ4MDU4NDQ1IDM2ODMyMzY5MTQ5ODUzNzAgODk5NjAwNjg2NzkxNzc3Ng==