diff --git a/Utils/Parser/Presentation/PresentationWriter.php b/Utils/Parser/Presentation/PresentationWriter.php
index 7feccb979..96c25e2e6 100755
--- a/Utils/Parser/Presentation/PresentationWriter.php
+++ b/Utils/Parser/Presentation/PresentationWriter.php
@@ -121,20 +121,20 @@ class PresentationWriter
*/
protected function displayPhpPresentation(PhpPresentation $oPHPPpt) : void
{
- $this->append('
PhpPresentation');
+ $this->append('folder_open PhpPresentation');
$this->append('');
- $this->append('- Info "PhpPresentation"
');
+ $this->append('- info Info "PhpPresentation"
');
foreach ($oPHPPpt->getAllSlides() as $oSlide) {
- $this->append('- Slide');
+ $this->append('
- indeterminate_check_box Slide');
$this->append('
');
- $this->append('- Info "Slide"
');
+ $this->append('- info Info "Slide"
');
foreach ($oSlide->getShapeCollection() as $oShape) {
if ($oShape instanceof Group) {
- $this->append('- Shape "Group"');
+ $this->append('
- indeterminate_check_box Shape "Group"');
$this->append('
');
- // $this->append('- Info "Group"
');
+ // $this->append('- info Info "Group"
');
foreach ($oShape->getShapeCollection() as $oShapeChild) {
$this->displayShape($oShapeChild);
}