Sulu\Component\Content\Compat\PropertyInterface::getName PHP Method

getName() public method

returns name of template.
public getName ( ) : string
return string
    public function getName();

Usage Example

Example #1
0
 /**
  * {@inheritdoc}
  */
 public function remove(NodeInterface $node, PropertyInterface $property, $webspaceKey, $languageCode, $segmentKey)
 {
     // if exist remove property of node
     if ($node->hasProperty($property->getName())) {
         $node->getProperty($property->getName())->remove();
     }
 }
All Usage Examples Of Sulu\Component\Content\Compat\PropertyInterface::getName