Pimcore\Model\Element\AbstractElement::removeProperty PHP 메소드

removeProperty() 공개 메소드

public removeProperty ( $name )
$name
    public function removeProperty($name)
    {
        $properties = $this->getProperties();
        unset($properties[$name]);
        $this->setProperties($properties);
    }