Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
linked_media_rollback.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 $directoryName = 'linked_media';
11 $filesystem = $objectManager->get(\Magento\Framework\Filesystem::class);
12 $pubDir = $filesystem->getDirectoryWrite(Magento\Framework\App\Filesystem\DirectoryList::PUB);
13 $fullDirectoryPath = $pubDir->getAbsolutePath() . DIRECTORY_SEPARATOR . $directoryName;
14 $mediaDirectory = $filesystem->getDirectoryWrite(Magento\Framework\App\Filesystem\DirectoryList::MEDIA);
15 $wysiwygDir = $mediaDirectory->getAbsolutePath() . 'wysiwyg';
16 if (is_link($wysiwygDir)) {
18 }
20  $pubDir->delete($directoryName);
21 }