* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShopBundle\Controller\Admin\Configure\ShopParameters; use PrestaShop\PrestaShop\Core\Domain\Title\Command\BulkDeleteTitleCommand; use PrestaShop\PrestaShop\Core\Domain\Title\Command\DeleteTitleCommand; use PrestaShop\PrestaShop\Core\Domain\Title\Exception\TitleException; use PrestaShop\PrestaShop\Core\Domain\Title\Exception\TitleNotFoundException; use PrestaShop\PrestaShop\Core\Search\Filters\TitleFilters; use PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController; use PrestaShopBundle\Security\Annotation\AdminSecurity; use PrestaShopBundle\Security\Annotation\DemoRestricted; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Controller responsible of "Configure > Shop Parameters > Customer Settings > Titles" page. */ class TitleController extends FrameworkBundleAdminController { /** * Show customer titles page. * * @AdminSecurity("is_granted('read', request.get('_legacy_controller'))", message="Access denied.") * * @param Request $request * @param TitleFilters $filters * * @return Response */ public function indexAction(Request $request, TitleFilters $filters): Response { $titleGridFactory = $this->get('prestashop.core.grid.factory.title'); $titleGrid = $titleGridFactory->getGrid($filters); return $this->render('@PrestaShop/Admin/Configure/ShopParameters/CustomerSettings/Title/index.html.twig', [ 'titleGrid' => $this->presentGrid($titleGrid), 'layoutTitle' => $this->trans('Titles', 'Admin.Navigation.Menu'), 'help_link' => $this->generateSidebarLink($request->attributes->get('_legacy_controller')), ]); } /** * Displays and handles currency form. * * @AdminSecurity( * "is_granted('create', request.get('_legacy_controller'))", * redirectRoute="admin_title_index", * message="You need permission to create this." * ) * * @return Response */ public function createAction(): Response { return $this->redirect( $this->getContext()->link->getAdminLink( 'AdminGenders', true, [], [ 'addgender' => '', ] ) ); } /** * Displays title form. * * @AdminSecurity( * "is_granted('update', request.get('_legacy_controller'))", * redirectRoute="admin_title_index", * message="You need permission to edit this." * ) * * @param int $titleId * * @return Response */ public function editAction(int $titleId): Response { return $this->redirect( $this->getContext()->link->getAdminLink( 'AdminGenders', true, [], [ 'updategender' => '', 'id_gender' => $titleId, ] ) ); } /** * Deletes title. * * @AdminSecurity( * "is_granted('delete', request.get('_legacy_controller'))", * redirectRoute="admin_title_index", * message="You need permission to delete this." * ) * @DemoRestricted(redirectRoute="admin_title_index") * * @param int $titleId * * @return RedirectResponse */ public function deleteAction(int $titleId): RedirectResponse { try { $this->getCommandBus()->handle(new DeleteTitleCommand($titleId)); $this->addFlash( 'success', $this->trans('Successful deletion', 'Admin.Notifications.Success') ); } catch (TitleException $e) { $this->addFlash('error', $this->getErrorMessageForException($e, $this->getErrorMessages())); } return $this->redirectToRoute('admin_title_index'); } /** * Deletes titles in bulk action * * @AdminSecurity("is_granted('delete', request.get('_legacy_controller'))", redirectRoute="admin_title_index") * @DemoRestricted(redirectRoute="admin_title_index") * * @param Request $request * * @return RedirectResponse */ public function bulkDeleteAction(Request $request): RedirectResponse { $titleIds = $this->getBulkTitlesFromRequest($request); try { $this->getCommandBus()->handle(new BulkDeleteTitleCommand($titleIds)); $this->addFlash( 'success', $this->trans('Successful deletion', 'Admin.Notifications.Success') ); } catch (TitleException $e) { $this->addFlash('error', $this->getErrorMessageForException($e, $this->getErrorMessages())); } return $this->redirectToRoute('admin_title_index'); } /** * @param Request $request * * @return array */ private function getBulkTitlesFromRequest(Request $request): array { $titleIds = $request->request->get('title_title_bulk'); if (!is_array($titleIds)) { return []; } foreach ($titleIds as $i => $titleId) { $titleIds[$i] = (int) $titleId; } return $titleIds; } /** * @return array */ private function getErrorMessages(): array { return [ TitleNotFoundException::class => $this->trans( 'The object cannot be loaded (or found).', 'Admin.Notifications.Error' ), ]; } }