Newscoop\Image\RenditionService::setRenditionsLabels PHP Метод

setRenditionsLabels() публичный Метод

Set renditions labels
public setRenditionsLabels ( array $labels ) : void
$labels array
Результат void
    public function setRenditionsLabels(array $labels)
    {
        $renditions = $this->getRenditions();
        foreach ($labels as $renditionName => $label) {
            if (array_key_exists($renditionName, $renditions)) {
                $renditions[$renditionName]->setLabel($label);
            }
        }
        $this->orm->flush();
        $this->renditions = null;
    }