PhpOffice\PhpPresentation\Writer\ODPresentation\ObjectsChart::render PHP Méthode

render() public méthode

public render ( ) : PhpOffice\Common\Adapter\Zip\ZipInterface
Résultat PhpOffice\Common\Adapter\Zip\ZipInterface
    public function render()
    {
        foreach ($this->getArrayChart() as $keyChart => $shapeChart) {
            $content = $this->writeContentPart($shapeChart);
            if (!empty($content)) {
                $this->getZip()->addFromString('Object ' . $keyChart . '/content.xml', $content);
            }
        }
        return $this->getZip();
    }