This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/Mapping/ElementMetadata.php

103 lines
2.3 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Component\Validator\Mapping;
2010-10-02 11:42:31 +01:00
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use Symfony\Component\Validator\Constraint;
abstract class ElementMetadata
{
public $constraints = array();
public $constraintsByGroup = array();
/**
2010-10-15 22:49:09 +01:00
* Returns the names of the properties that should be serialized.
*
* @return array
*/
public function __sleep()
{
return array(
'constraints',
'constraintsByGroup',
);
}
/**
2010-10-15 22:49:09 +01:00
* Clones this object.
*/
public function __clone()
{
$constraints = $this->constraints;
$this->constraints = array();
$this->constraintsByGroup = array();
foreach ($constraints as $constraint) {
$this->addConstraint(clone $constraint);
}
}
/**
2010-10-15 22:49:09 +01:00
* Adds a constraint to this element.
*
* @param Constraint $constraint
*/
public function addConstraint(Constraint $constraint)
{
$this->constraints[] = $constraint;
foreach ($constraint->groups as $group) {
if (!isset($this->constraintsByGroup[$group])) {
$this->constraintsByGroup[$group] = array();
}
$this->constraintsByGroup[$group][] = $constraint;
}
return $this;
}
/**
2010-10-15 22:49:09 +01:00
* Returns all constraints of this element.
*
* @return array An array of Constraint instances
*/
public function getConstraints()
{
return $this->constraints;
}
/**
2010-10-15 22:49:09 +01:00
* Returns whether this element has any constraints.
*
* @return boolean
*/
public function hasConstraints()
{
return count($this->constraints) > 0;
}
/**
* Returns the constraints of the given group and global ones (* group).
*
2010-10-15 22:49:09 +01:00
* @param string $group The group name
*
* @return array An array with all Constraint instances belonging to the group
*/
public function findConstraints($group)
{
return isset($this->constraintsByGroup[$group])
? $this->constraintsByGroup[$group]
: array();
}
}