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();
    }