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

getCacheTag() 공개 메소드

get the cache tag for the element
public getCacheTag ( ) : string
리턴 string
    public function getCacheTag()
    {
        $elementType = Service::getElementType($this);
        return $elementType . "_" . $this->getId();
    }