12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /*
- * This file is part of the Sonata package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- */
- namespace Sonata\AdminBundle\Datagrid;
- use Sonata\AdminBundle\Admin\FieldDescriptionInterface;
- class ListCollection
- {
- protected $elements = array();
- /**
- * @param \Sonata\AdminBundle\Admin\FieldDescriptionInterface $fieldDescription
- * @return void
- */
- public function add(FieldDescriptionInterface $fieldDescription)
- {
- $this->elements[$fieldDescription->getName()] = $fieldDescription;
- }
- /**
- * @return array
- */
- public function getElements()
- {
- return $this->elements;
- }
- /**
- * @param string $name
- * @return bool
- */
- public function has($name)
- {
- return array_key_exists($name, $this->elements);
- }
- /**
- * @throws \InvalidArgumentException
- * @param string $name
- * @return array
- */
- public function get($name)
- {
- if ($this->has($name)) {
- return $this->elements[$name];
- }
- throw new \InvalidArgumentException(sprintf('Element "%s" does not exist.', $name));
- }
- /**
- * @param string $name
- * @return void
- */
- public function remove($name)
- {
- if ($this->has($name)) {
- unset($this->elements[$name]);
- }
- }
- }
|