コード例 #1
0
ファイル: MenuChoiceList.php プロジェクト: geoffreytran/zym
 /**
  * Returns the entities corresponding to the given values.
  *
  * @param array $values
  *
  * @return array
  *
  * @see Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceListInterface
  */
 public function getIndicesForValues(array $values)
 {
     if (!$this->loaded) {
         // Optimize performance for single-field identifiers.
         // Attention: This optimization does not check values for existence
         if ($this->idAsIndex && $this->idAsValue) {
             return $this->fixIndices($values);
         }
         $this->load();
     }
     return parent::getIndicesForValues($values);
 }