theme_rollback.php 625 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
  7. /** @var \Magento\Theme\Model\Theme $theme */
  8. $theme = $objectManager->create(\Magento\Theme\Model\Theme::class);
  9. $theme->load('Magento/zoom1', 'theme_path');
  10. $theme->delete();
  11. $theme = $objectManager->create(\Magento\Theme\Model\Theme::class);
  12. $theme->load('Magento/zoom2', 'theme_path');
  13. $theme->delete();
  14. $theme = $objectManager->create(\Magento\Theme\Model\Theme::class);
  15. $theme->load('Magento/zoom3', 'theme_path');
  16. $theme->delete();