Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
service_category_create_rollback.php
Go to the documentation of this file.
1 <?php
7 
10 $registry->unregister('isSecureArea');
11 $registry->register('isSecureArea', true);
12 
14 $category = Bootstrap::getObjectManager()->get(\Magento\Catalog\Model\Category::class);
15 $category = $category->loadByAttribute('url_key', 'test-category-name');
16 
17 if ($category && $category->getId()) {
18  $category->delete();
19 }