Exemplo n.º 1
0
 /**
  * {@inheritDoc}
  */
 public function createProperty($name)
 {
     $property = new BlockProperty($name);
     $property->setEditableClass(get_class($this->editable));
     // @TODO: value conversion
     // @TODO: localized values
     $property->setValue($this->editable->getDefaultValue());
     return $property;
 }