Sulu\Component\Content\Metadata\PropertyMetadata::isLocalized PHP 메소드

isLocalized() 공개 메소드

public isLocalized ( )
    public function isLocalized()
    {
        return $this->localized;
    }

Usage Example

예제 #1
0
 public function fromProperty(PropertyMetadata $property, $locale = null)
 {
     if (true === $property->isLocalized()) {
         return $this->localizedContentName($property->getName(), $locale);
     }
     return $this->contentname($property->getName());
 }
All Usage Examples Of Sulu\Component\Content\Metadata\PropertyMetadata::isLocalized