Пример #1
0
 /**
  * {@inhertitDoc}
  */
 public function isMatchingProperty(BlockProperty $property)
 {
     if ($this->parent instanceof PropertyListConfig) {
         return $property->getHierarchicalName() === $this->parent->getHierarchicalName() . '.' . $property->getName() && $property->getEditableClass() === get_class($this->editable);
     }
     return $property->getHierarchicalName() === $this->getHierarchicalName() && $property->getEditableClass() === get_class($this->editable);
 }