Esempio n. 1
0
 public function getFormIdentifierAsString()
 {
     $multiBraces = $this->index !== null ? '[' . $this->index . ']' : null;
     if ($this->parentComponent === null || $this->parentComponent instanceof Form) {
         return $this->getName() . $multiBraces;
     }
     return $this->parentComponent->getFormIdentifierAsString() . '[' . $this->getName() . ']' . $multiBraces;
 }