* @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\Bulk\Type\SubmitBulkAction; 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\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\Column\Type\Common\ToggleColumn; use PrestaShop\PrestaShop\Core\Grid\Filter\Filter; use PrestaShop\PrestaShop\Core\Grid\Filter\FilterCollection; use PrestaShopBundle\Form\Admin\Type\SearchAndResetType; use PrestaShopBundle\Form\Admin\Type\YesAndNoChoiceType; use Symfony\Component\Form\Extension\Core\Type\TextType; /** * Class WebserviceKeyDefinitionFactory is responsible for creating grid definition for Webservice grid. */ final class WebserviceKeyDefinitionFactory extends AbstractGridDefinitionFactory { use BulkDeleteActionTrait; use DeleteActionTrait; public const GRID_ID = 'webservice_key'; /** * {@inheritdoc} */ protected function getId() { return self::GRID_ID; } /** * {@inheritdoc} */ protected function getName() { return $this->trans('Webservice', [], 'Admin.Navigation.Menu'); } /** * {@inheritdoc} */ protected function getColumns() { return (new ColumnCollection()) ->add( (new BulkActionColumn('bulk_action')) ->setOptions([ 'bulk_field' => 'id_webservice_account', ]) ) ->add( (new DataColumn('key')) ->setName($this->trans('Key', [], 'Admin.Advparameters.Feature')) ->setOptions([ 'field' => 'key', ]) ) ->add( (new DataColumn('description')) ->setName($this->trans('Key description', [], 'Admin.Advparameters.Feature')) ->setOptions([ 'field' => 'description', 'sortable' => false, ]) ) ->add( (new ToggleColumn('active')) ->setName($this->trans('Enabled', [], 'Admin.Global')) ->setOptions([ 'field' => 'active', 'primary_field' => 'id_webservice_account', 'route' => 'admin_webservice_keys_toggle_status', 'route_param_name' => 'webserviceKeyId', ]) ) ->add( (new ActionColumn('actions')) ->setName($this->trans('Actions', [], 'Admin.Global')) ->setOptions([ 'actions' => (new RowActionCollection()) ->add( (new LinkRowAction('edit')) ->setIcon('edit') ->setName($this->trans('Edit', [], 'Admin.Actions')) ->setOptions([ 'route' => 'admin_webservice_keys_edit', 'route_param_name' => 'webserviceKeyId', 'route_param_field' => 'id_webservice_account', 'clickable_row' => true, ]) ) ->add( $this->buildDeleteAction( 'admin_webservice_keys_delete', 'webserviceKeyId', 'id_webservice_account' ) ), ]) ); } /** * {@inheritdoc} */ protected function getFilters() { return (new FilterCollection()) ->add( (new Filter('key', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search key', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('key') ) ->add( (new Filter('description', TextType::class)) ->setTypeOptions([ 'required' => false, 'attr' => [ 'placeholder' => $this->trans('Search description', [], 'Admin.Actions'), ], ]) ->setAssociatedColumn('description') ) ->add( (new Filter('active', YesAndNoChoiceType::class)) ->setAssociatedColumn('active') ) ->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_webservice_keys_index', ]) ->setAssociatedColumn('actions') ); } /** * {@inheritdoc} */ protected function getGridActions() { 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() { return (new BulkActionCollection()) ->add( (new SubmitBulkAction('webservice_enable_selection')) ->setName($this->trans('Enable selection', [], 'Admin.Actions')) ->setOptions([ 'submit_route' => 'admin_webservice_keys_bulk_enable', ]) ) ->add( (new SubmitBulkAction('webservice_disable_selection')) ->setName($this->trans('Disable selection', [], 'Admin.Actions')) ->setOptions([ 'submit_route' => 'admin_webservice_keys_bulk_disable', ]) ) ->add( $this->buildBulkDeleteAction('admin_webservice_keys_bulk_delete') ); } }