Prestashop 1.7.x.x now have a new admin controller page on Symfony architecture where now listing is displayed with PrestaShop grid component.
So if we need to add any new column in the list using the module we need to follow not new hooks provided, there are two hooks mainly,
‘actionCustomerGridDefinitionModifier’ to add a new column
‘actionCustomerGridQueryBuilderModifier’ to provide data to the column
In my example, I am adding a normal text type display column on the customer controller,
For this, we need to use these namespaces
use PrestaShop\PrestaShop\Core\Grid\Column\Type\DataColumn;
use PrestaShop\PrestaShop\Core\Grid\Filter\Filter;
use Symfony\Component\Form\Extension\Core\Type\TextType;
And in the hook function, this is the example code,
public function hookActionCustomerGridDefinitionModifier(array $params) { /** @var GridDefinitionInterface $definition */ $definition = $params['definition']; $definition ->getColumns() ->addAfter( 'optin', (new DataColumn('mobile')) ->setName($this->l('Mobile number')) ->setOptions([ 'field' => 'mobile', ]) ) ; // For search filter $definition->getFilters()->add( (new Filter('mobile', TextType::class)) ->setAssociatedColumn('mobile') ); }
the above code looks simple and understandable 🙂
/** * Hook allows to modify Customers query builder and add custom sql statements. * * @param array $params */ public function hookActionCustomerGridQueryBuilderModifier(array $params) { /** @var QueryBuilder $searchQueryBuilder */ $searchQueryBuilder = $params['search_query_builder']; /** @var CustomerFilters $searchCriteria */ $searchCriteria = $params['search_criteria']; $searchQueryBuilder->addSelect( 'IF(wcm.`mobile` IS NULL,0,wcm.`mobile`) AS `mobile`' ); $searchQueryBuilder->leftJoin( 'c', '`' . pSQL(_DB_PREFIX_) . 'wk_customer_mobile`', 'wcm', 'wcm.`id_customer` = c.`id_customer`' ); if ('mobile' === $searchCriteria->getOrderBy()) { $searchQueryBuilder->orderBy('wcm.`mobile`', $searchCriteria->getOrderWay()); } foreach ($searchCriteria->getFilters() as $filterName => $filterValue) { if ('mobile' === $filterName) { $searchQueryBuilder->andWhere('wcm.`mobile` = :mobile'); $searchQueryBuilder->setParameter('mobile', $filterValue); if (!$filterValue) { $searchQueryBuilder->orWhere('wcm.`mobile` IS NULL'); } } } }
This code is providing the actionCustomerGridDefinitionModifier hook a custom data of customer entity.
Now you can see your column here like this,

PrestaShop also provided multiple column types, you can refer to this and use accordingly.
See this blog if you want to create your custom column type.
6 comments
https://store.webkul.com/Prestashop-Customer-Mobile-Email-Verification.html
you can visit this module demo and documentation page.
Thanks,
Attempted to load class “HtmlTypeColumn” from namespace “DisplayMessagesMyAccount\Grid\Column”.
Did you forget a “use” statement for “PrestaShop\PrestaShop\Core\Grid\Column\Type\Common\HtmlTypeColumn”?
I have implementing this code in already created module.
I have tried for composer dump-autoload command but server people saying you need to have ” VPS with root and ssh access to configure the script” right now i have shared hosting.
Can you please help me out how can i solve this.
Thanks
https://webkul.com/blog/adding-a-custom-grid-column-type-in-prestashop-admin-symfony-controller-with-module/
Thanks,