/**
  * @return string
  */
 public function allowCreateBaseCategory()
 {
     $categoryContext = $this->categoryManager->getCategoryContexts();
     try {
         $defunctContexts = $this->contextManager->getDefunctContext($categoryContext);
         if ($defunctContexts && is_array($defunctContexts)) {
             return true;
         } else {
             return false;
         }
     } catch (\Exception $e) {
         return false;
     }
 }