* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Grid\Definition\Factory; use PrestaShop\PrestaShop\Core\Grid\Action\Bulk\BulkActionCollection; use PrestaShop\PrestaShop\Core\Grid\Action\GridActionCollection; use PrestaShop\PrestaShop\Core\Grid\Action\Row\RowActionCollection; use PrestaShop\PrestaShop\Core\Grid\Action\Row\Type\LinkRowAction; use PrestaShop\PrestaShop\Core\Grid\Action\Type\LinkGridAction; use PrestaShop\PrestaShop\Core\Grid\Action\Type\SimpleGridAction; use PrestaShop\PrestaShop\Core\Grid\Column\ColumnCollection; 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 PrestaShopBundle\Form\Admin\Type\CountryChoiceType; use PrestaShopBundle\Form\Admin\Type\SearchAndResetType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\HttpFoundation\Request; /** * Class ManufacturerAddressGridDefinitionFactory is responsible for creating Manufacturers address grid definition. */ final class ManufacturerAddressGridDefinitionFactory extends AbstractGridDefinitionFactory { use BulkDeleteActionTrait; use DeleteActionTrait; public const GRID_ID = 'manufacturer_address'; /** * {@inheritdoc} */ protected function getId() { return self::GRID_ID; } /** * {@inheritdoc} */ protected function getName() { return $this->trans('Addresses', [], 'Admin.Catalog.Feature'); } /** * {@inheritdoc} */ protected function getColumns() { return (new ColumnCollection()) ->add((new BulkActionColumn('bulk')) ->setOptions([ 'bulk_field' => 'id_address', ]) ) ->add((new DataColumn('id_address')) ->setName($this->trans('ID', [], 'Admin.Global')) ->setOptions([ 'field' => 'id_address', ]) ) ->add((new DataColumn('name')) ->setName($this->trans('Brand', [], 'Admin.Global')) ->setOptions([ 'field' => 'name', ]) ) ->add((new DataColumn('firstname')) ->setName($this->trans('First name', [], 'Admin.Global')) ->setOptions([ 'field' => 'firstname', ]) ) ->add((new DataColumn('lastname')) ->setName($this->trans('Last name', [], 'Admin.Global')) ->setOptions([ 'field' => 'lastname', ]) ) ->add((new DataColumn('postcode')) ->setName($this->trans('Zip/Postal code', [], 'Admin.Global')) ->setOptions([ 'field' => 'postcode', ]) ) ->add((new DataColumn('city')) ->setName($this->trans('City', [], 'Admin.Global')) ->setOptions([ 'field' => 'city', ]) ) ->add((new DataColumn('country')) ->setName($this->trans('Country', [], 'Admin.Global')) ->setOptions([ 'field' => 'country', ]) ) ->add((new ActionColumn('actions')) ->setName($this->trans('Actions', [], 'Admin.Global')) ->setOptions([ 'actions' => (new RowActionCollection()) ->add((new LinkRowAction('edit')) ->setName($this->trans('Edit', [], 'Admin.Actions')) ->setIcon('edit') ->setOptions([ 'route' => 'admin_manufacturer_addresses_edit', 'route_param_name' => 'addressId', 'route_param_field' => 'id_address', 'clickable_row' => true, ]) ) ->add( $this->buildDeleteAction( 'admin_manufacturer_addresses_delete', 'addressId', 'id_address', Request::METHOD_DELETE ) ), ]) ) ; } /** * {@inheritdoc} */ protected function getFilters() { return (new FilterCollection()) ->add((new Filter('id_address', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search ID', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('id_address') ) ->add((new Filter('name', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search name', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('name') ) ->add((new Filter('firstname', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search first name', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('firstname') ) ->add((new Filter('lastname', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search last name', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('lastname') ) ->add((new Filter('postcode', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search post code', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('postcode') ) ->add((new Filter('city', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search city', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('city') ) ->add((new Filter('country', CountryChoiceType::class)) ->setTypeOptions([ 'required' => false, 'choice_translation_domain' => false, ]) ->setAssociatedColumn('country') ) ->add((new Filter('actions', SearchAndResetType::class)) ->setAssociatedColumn('actions') ->setTypeOptions([ 'reset_route' => 'admin_common_reset_search_by_filter_id', 'reset_route_params' => [ 'filterId' => self::GRID_ID, ], 'redirect_route' => 'admin_manufacturers_index', ]) ) ; } /** * {@inheritdoc} */ protected function getBulkActions() { return (new BulkActionCollection()) ->add( $this->buildBulkDeleteAction('admin_manufacturer_addresses_bulk_delete') ) ; } /** * {@inheritdoc} */ protected function getGridActions() { return (new GridActionCollection()) ->add((new LinkGridAction('import')) ->setName($this->trans('Import', [], 'Admin.Actions')) ->setIcon('cloud_upload') ->setOptions([ 'route' => 'admin_import', 'route_params' => [ 'import_type' => 'manufacturers', ], ]) ) ->add((new LinkGridAction('export')) ->setName($this->trans('Export', [], 'Admin.Actions')) ->setIcon('cloud_download') ->setOptions([ 'route' => 'admin_manufacturer_addresses_export', ]) ) ->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') ) ; } }