Skip to content

Commit dae3f3d

Browse files
authored
Merge pull request #786 from dees040/bug/copy
General : Fixed copying bug when presentation had multiple slides
2 parents 85c7821 + 50b908c commit dae3f3d

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

docs/changes/1.1.0.md

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
- PowerPoint2007 Writer : Fixed broken animation for first shape - [@shannan1989](https://github.com/shannan1989) in [#783](https://github.com/PHPOffice/PHPPresentation/pull/783)
3535
- Samples : Allow to run without composer - [@pal-software](https://github.com/pal-software) in [#784](https://github.com/PHPOffice/PHPPresentation/pull/784)
3636
- PowerPoint2007 Writer: Extract relations from nested ShapeContainerInterface objects - [@DennisBirkholz](https://github.com/DennisBirkholz) in [#785](https://github.com/PHPOffice/PHPPresentation/pull/785)
37+
- General : Fixed copying bug when presentation had multiple slides [@dees040](https://github.com/dees040) in [#786](https://github.com/PHPOffice/PHPPresentation/pull/786)
3738

3839
## Miscellaneous
3940

src/PhpPresentation/PhpPresentation.php

+17-2
Original file line numberDiff line numberDiff line change
@@ -312,11 +312,26 @@ public function copy(): self
312312
$copied = clone $this;
313313

314314
$slideCount = count($this->slideCollection);
315+
316+
// Because the rebindParent() method on AbstractSlide removes the slide
317+
// from the parent (current $this which we're cloning) presentation, we
318+
// save the collection. This way, after the copying has finished, we can
319+
// return the slides to the original presentation.
320+
$oldSlideCollection = $this->slideCollection;
321+
$newSlideCollection = [];
322+
315323
for ($i = 0; $i < $slideCount; ++$i) {
316-
$this->slideCollection[$i] = $this->slideCollection[$i]->copy();
317-
$this->slideCollection[$i]->rebindParent($this);
324+
$newSlideCollection[$i] = $oldSlideCollection[$i]->copy();
325+
$newSlideCollection[$i]->rebindParent($copied);
318326
}
319327

328+
// Give the copied presentation a copied slide collection which the
329+
// copied slides have been rebind to the copied presentation.
330+
$copied->slideCollection = $newSlideCollection;
331+
332+
// Return the original slides to the original presentation.
333+
$this->slideCollection = $oldSlideCollection;
334+
320335
return $copied;
321336
}
322337

tests/PhpPresentation/Tests/PhpPresentationTest.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,12 @@ public function testAddExternalSlide(): void
8686
public function testCopy(): void
8787
{
8888
$object = new PhpPresentation();
89-
self::assertInstanceOf('PhpOffice\\PhpPresentation\\PhpPresentation', $object->copy());
89+
$object->createSlide();
90+
91+
$copy = $object->copy();
92+
93+
self::assertInstanceOf('PhpOffice\\PhpPresentation\\PhpPresentation', $copy);
94+
self::assertEquals(2, $copy->getSlideCount());
9095
}
9196

9297
/**

0 commit comments

Comments
 (0)