Browse Source

[Backend] Ticket : possibilité d'ajouter un ticket en mode out of section

packProduct
Guillaume 2 years ago
parent
commit
4878b188e7
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      Controller/Ticket/TicketAdminController.php

+ 1
- 6
Controller/Ticket/TicketAdminController.php View File

public function configureActions(Actions $actions): Actions public function configureActions(Actions $actions): Actions
{ {
$actions = parent::configureActions($actions); $actions = parent::configureActions($actions);

if(!$this->getSectionCurrent()) {
$actions->disable(ActionDefinition::NEW, ActionDefinition::EDIT, ActionDefinition::DUPLICATE,ActionDefinition::DUPLICATE_TO_OTHER_SECTION, ActionDefinition::DELETE);
}else{
$actions->disable( ActionDefinition::EDIT, ActionDefinition::DUPLICATE,ActionDefinition::DUPLICATE_TO_OTHER_SECTION, ActionDefinition::DELETE);
}
$actions->disable( ActionDefinition::EDIT, ActionDefinition::DUPLICATE,ActionDefinition::DUPLICATE_TO_OTHER_SECTION, ActionDefinition::DELETE);


return $actions; return $actions;
} }

Loading…
Cancel
Save