* @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 PrestaShop\PrestaShop\Core\Grid\Definition\Factory; use PrestaShop\PrestaShop\Core\Grid\Action\Bulk\BulkActionCollection; use PrestaShop\PrestaShop\Core\Grid\Action\Bulk\BulkActionCollectionInterface; use PrestaShop\PrestaShop\Core\Grid\Action\GridActionCollection; use PrestaShop\PrestaShop\Core\Grid\Action\GridActionCollectionInterface; use PrestaShop\PrestaShop\Core\Grid\Action\Row\RowActionCollection; use PrestaShop\PrestaShop\Core\Grid\Action\Row\RowActionCollectionInterface; use PrestaShop\PrestaShop\Core\Grid\Action\Row\Type\LinkRowAction; use PrestaShop\PrestaShop\Core\Grid\Action\Type\SimpleGridAction; use PrestaShop\PrestaShop\Core\Grid\Column\ColumnCollection; use PrestaShop\PrestaShop\Core\Grid\Column\ColumnCollectionInterface; use PrestaShop\PrestaShop\Core\Grid\Column\Type\Common\ActionColumn; use PrestaShop\PrestaShop\Core\Grid\Column\Type\Common\BulkActionColumn; use PrestaShop\PrestaShop\Core\Grid\Column\Type\Common\DataColumn; use PrestaShop\PrestaShop\Core\Grid\Filter\Filter; use PrestaShop\PrestaShop\Core\Grid\Filter\FilterCollection; use PrestaShop\PrestaShop\Core\Grid\Filter\FilterCollectionInterface; use PrestaShopBundle\Form\Admin\Type\SearchAndResetType; use Symfony\Component\Form\Extension\Core\Type\TextType; /** * Class SearchEngineGridDefinitionFactory creates definition for search engines grid. */ final class SearchEngineGridDefinitionFactory extends AbstractFilterableGridDefinitionFactory { use BulkDeleteActionTrait; use DeleteActionTrait; /** * @var string */ public const GRID_ID = 'search_engine'; /** * {@inheritdoc} */ protected function getId(): string { return self::GRID_ID; } /** * {@inheritdoc} */ protected function getName(): string { return $this->trans('Search Engines', [], 'Admin.Navigation.Menu'); } /** * {@inheritdoc} */ protected function getColumns(): ColumnCollectionInterface { return (new ColumnCollection()) ->add( (new BulkActionColumn('bulk')) ->setOptions([ 'bulk_field' => 'id_search_engine', ]) ) ->add( (new DataColumn('id_search_engine')) ->setName($this->trans('ID', [], 'Admin.Global')) ->setOptions([ 'field' => 'id_search_engine', ]) ) ->add( (new DataColumn('server')) ->setName($this->trans('Server', [], 'Admin.Shopparameters.Feature')) ->setOptions([ 'field' => 'server', ]) ) ->add( (new DataColumn('query_key')) ->setName($this->trans('GET variable', [], 'Admin.Shopparameters.Feature')) ->setOptions([ 'field' => 'getvar', ]) ) ->add( (new ActionColumn('actions')) ->setName($this->trans('Actions', [], 'Admin.Global')) ->setOptions([ 'actions' => $this->getRowActions(), ]) ); } /** * {@inheritdoc} */ protected function getFilters(): FilterCollectionInterface { return (new FilterCollection()) ->add( (new Filter('id_search_engine', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search ID', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('id_search_engine') ) ->add( (new Filter('server', TextType::class)) ->setTypeOptions([ 'required' => false, ]) ->setAssociatedColumn('server') ) ->add( (new Filter('query_key', TextType::class)) ->setTypeOptions([ 'required' => false, ]) ->setAssociatedColumn('query_key') ) ->add( (new Filter('actions', SearchAndResetType::class)) ->setTypeOptions([ 'reset_route' => 'admin_common_reset_search_by_filter_id', 'reset_route_params' => [ 'filterId' => self::GRID_ID, ], 'redirect_route' => 'admin_search_engines_index', ]) ->setAssociatedColumn('actions') ); } /** * {@inheritdoc} */ protected function getGridActions(): GridActionCollectionInterface { return (new GridActionCollection()) ->add( (new SimpleGridAction('common_refresh_list')) ->setName($this->trans('Refresh list', [], 'Admin.Advparameters.Feature')) ->setIcon('refresh') ) ->add( (new SimpleGridAction('common_show_query')) ->setName($this->trans('Show SQL query', [], 'Admin.Actions')) ->setIcon('code') ) ->add( (new SimpleGridAction('common_export_sql_manager')) ->setName($this->trans('Export to SQL Manager', [], 'Admin.Actions')) ->setIcon('storage') ); } /** * {@inheritdoc} */ protected function getBulkActions(): BulkActionCollectionInterface { return (new BulkActionCollection()) ->add( $this->buildBulkDeleteAction('admin_search_engines_bulk_delete') ); } /** * Provides search engines grid row actions. * * @return RowActionCollectionInterface */ private function getRowActions(): RowActionCollectionInterface { return (new RowActionCollection()) ->add( (new LinkRowAction('edit')) ->setName($this->trans('Edit', [], 'Admin.Actions')) ->setIcon('edit') ->setOptions([ 'route' => 'admin_search_engines_edit', 'route_param_name' => 'searchEngineId', 'route_param_field' => 'id_search_engine', 'clickable_row' => true, ]) ) ->add( $this->buildDeleteAction( 'admin_search_engines_delete', 'searchEngineId', 'id_search_engine' ) ); } }