|
|
@@ -3,6 +3,7 @@ |
|
|
|
namespace Lc\ShopBundle\Controller\Backend; |
|
|
|
|
|
|
|
use Doctrine\ORM\EntityManagerInterface; |
|
|
|
use EasyCorp\Bundle\EasyAdminBundle\Event\EasyAdminEvents; |
|
|
|
use FOS\UserBundle\Model\UserManagerInterface; |
|
|
|
use Lc\ShopBundle\Form\Backend\Ticket\TicketMessageType; |
|
|
|
use Lc\ShopBundle\Form\Backend\Ticket\TicketStatusType; |
|
|
@@ -22,6 +23,33 @@ class TicketController extends AdminController |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public function showAction() |
|
|
|
{ |
|
|
|
$this->dispatch(EasyAdminEvents::PRE_SHOW); |
|
|
|
|
|
|
|
$id = $this->request->query->get('id'); |
|
|
|
$easyadmin = $this->request->attributes->get('easyadmin'); |
|
|
|
$entity = $easyadmin['item']; |
|
|
|
|
|
|
|
$fields = $this->entity['show']['fields']; |
|
|
|
$deleteForm = $this->createDeleteForm($this->entity['name'], $id); |
|
|
|
|
|
|
|
$this->dispatch(EasyAdminEvents::POST_SHOW, [ |
|
|
|
'deleteForm' => $deleteForm, |
|
|
|
'fields' => $fields, |
|
|
|
'entity' => $entity, |
|
|
|
]); |
|
|
|
|
|
|
|
$parameters = [ |
|
|
|
'entity' => $entity, |
|
|
|
'fields' => $fields, |
|
|
|
'delete_form' => $deleteForm->createView(), |
|
|
|
]; |
|
|
|
|
|
|
|
return $this->executeDynamicMethod('render<EntityName>Template', ['show', $this->entity['templates']['show'], $parameters]); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* The method that is executed when the user performs a 'show' action on an entity. |
|
|
|
* |